@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-family: "Poppins", sans-serif;
    font-size: 62.5%;
    scroll-padding-top: 80px; 
    scroll-behavior: smooth; /* Optional: adds a nice sliding effect */
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
}
.logo img{
    /* width: 140px; */
    height: 80px;
    width: auto;
}
.navbar{
    display: flex;
    gap: 4rem;
}
.navbar a{
    text-decoration: none;
    font-size: 1.6rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}
/* Hover underline effect */
.navbar a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #f06529;
    transition: 0.3s;
}

.navbar a:hover{
    color: #f06529;
}

.navbar a:hover::after{
    width: 100%;
}

/* Ensure the active link stands out */
.navbar a.navLinks.active {
    color: #f06529 !important; /* Your brand orange */
    font-weight: 700;
}

/* Optional: Add a small underline to the active link */
.navbar a.navLinks.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #f06529;
    margin-top: 5px;
}

/* CTA BUTTON */
.cta-btn a{
    background: linear-gradient(135deg, #f06529, #c85030);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block; /* Essential for padding/transform to work correctly */
    white-space: nowrap;
}

.cta-btn a:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 101, 41, 0.3);
}
/* HAMBURGER */
.menu-toggle{
    display: none;
    font-size: 2.5rem;
    cursor: pointer;
}

section{
    padding: 2rem 8%;
    width: 100%;
}
/* ==== Home Section === */
.home-section{
    min-height: 100vh;
    padding-top: 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('background-img.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
}
.home-container {
    padding: 1rem;
}
.home-container h1{
    font-size: 4rem;
    color: #fff;
    /* max-width: 900px; */
    /* line-height: 1.4; */
    font-weight: 900;
}
.home-container h1 span{
    /* background: linear-gradient(90deg, #FF8C00, #FFD700, #FF4500); */
    color: #f06529;
}
.home-container p{
    font-size: 1.6rem;
    color: #ddd;
    max-width: 800px;
    line-height: 1.6;
    margin: 1rem 0;
}
.cta-btns{
    display: flex;
    gap: 1.4rem;
}
.cta-btns a{
    /* background: linear-gradient(135deg, #f06529, #c85030); */
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: 30px;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block; /* Essential for padding/transform to work correctly */
    white-space: nowrap;
    margin-top: 1rem;
}
.cta-btns .cta-call{
    background: linear-gradient(135deg, #f06529, #c85030);
    box-shadow: 0 4px 15px rgba(240, 101, 41, 0.3);
}
.cta-btns .cta-call:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 101, 41, 0.5);
}
.cta-btns .cta-start{
    background: linear-gradient(135deg, #0073c6, #005fa3);
    box-shadow: 0 4px 15px rgba(0, 115, 198, 0.3);
}
.cta-btns .cta-start:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 115, 198, 0.5);
}

/* === Business Solutions Section === */
.business-solutions {
    padding: 8rem 8%;
    background-color: #f4f8fb; /* Matching your pricing background */
}

.solution-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.problem-box, .solution-box {
    flex: 1;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Problem Box Styling */
.problem-box {
    background: #fff;
    border-left: 6px solid #ff4d4d; /* Red for problems */
}

.problem-box h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #333;
}

.problem-box ul {
    list-style: none;
}

.problem-box ul li {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.problem-box ul li i {
    color: #ff4d4d;
}

.agitate {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

/* Solution Box Styling */
.solution-box {
    background: #212121; /* Dark theme to contrast */
    color: #fff;
}

.solution-box h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.solution-box h3 span {
    color: #f06529;
}
.solution-box p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #ddd;
}
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 2.5rem 0;
}

.sol-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
}

.sol-item i {
    color: #f06529;
    font-size: 2rem;
}

.sol-item span {
    font-size: 1.3rem;
}

.summary {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f06529;
    text-align: center;
}

h2{
    font-size: 2.8rem;
    text-align: center;
    color: #212121;
    font-weight: 700;
}
h2 span{
    color: #f06529;
}

/* === Offer Section === */
.offer-section{
    padding: 8rem 8%;
    background-color: #fff1eb; /* Matching your pricing background */
}
.offer-container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-color: #fff;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    flex-wrap: wrap;
}
.offer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap
}
/* === Improved Offer List Styles === */
.offer-container ul li {
    font-size: 1.5rem; /* Slightly smaller for better balance */
    padding: 2.5rem;   /* Increased padding for a more spacious feel */
    border-radius: 15px;
    display: flex;
    align-items: flex-start; /* Aligns icon and title to the top of long text */
    gap: 1rem;
    margin-bottom: 2.5rem; /* Increased spacing between each list box */
    background-color: #fff;
    border: 1px solid #eee; /* Added subtle border for definition */
    box-shadow: 0 10px 25px rgba(0,0,0,0.03); /* Softer, more modern shadow */
    transition: all 0.3s ease;
    line-height: 1.6; /* Better line height for long descriptions */
}

.offer-container ul li:hover {
    transform: translateY(-5px); /* Lift up instead of right for better UX */
    border-color: #f06529; /* Highlight border on hover */
    box-shadow: 0 15px 30px rgba(240, 101, 41, 0.1);
}

.offer-container ul li span {
    color: #f06529;
    font-weight: 700;
    min-width: 140px; /* Ensures all descriptions start at the same point */
    display: inline-block;
    flex-shrink: 0; /* Prevents the label from squishing on mobile */
}

/* Remove margin from the last item */
.offer-container ul li:last-child {
    margin-bottom: 0;
}

/* Customizing the Checkmark Icon specifically */
.offer-container ul li::before {
    margin-top: 2px; /* Adjusts icon position to sit perfectly with first line of text */
}


.highlight {
    background: #1d1b1b;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 20px;
}

.highlight h3 {
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

/* === Why Choose Us Section === */
.business-why-choose {
    padding: 8rem 8%;
    background-color: #f9f9f9;
    text-align: center;
}

.section-subtitle {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 5rem;
}

.business-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.b-choose-card {
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.b-choose-card:hover {
    transform: translateY(-10px);
    border-color: #f06529; /* Branded Orange */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.b-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(240, 101, 41, 0.1);
    color: #f06529;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2.5rem;
    transition: 0.3s;
}

.b-choose-card:hover .b-icon-box {
    background: #f06529;
    color: #fff;
}

.b-choose-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #212121;
}

.b-choose-card p {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.6;
}

/* === Results Section === */
.results-section{
    padding: 8rem 8%;
    background-color: #f4f8fb; /* Matching your pricing background */
}
.results-container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: #fff;
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}.expectation-box {
    display: grid;
    /* Creates 3 equal columns on desktop */
    grid-template-columns: repeat(3, 1fr); 
    gap: 2.5rem;
    margin-top: 2rem;
    width: 100%;
}

.card {
    background-color: #f4f8fb;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease;
    border-left: 3px solid #005fa3;
    /* Ensures all cards stay the same height in a row */
    height: 100%; 
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 115, 198, 0.1);
}

.card h3 {
    font-size: 2.2rem; /* Made slightly larger for emphasis */
    color: #f06529; /* Branded orange for the result numbers */
    margin-bottom: 1.5rem;
}

.card p {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.6;
} 

/* === Final Business CTA Styling === */
.final-business-cta {
    padding: 10rem 8%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('business-bg.jpg') no-repeat center center/cover;
    text-align: center;
    color: #fff;
}

.final-business-cta h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.final-business-cta p {
    font-size: 1.8rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-main-cta {
    background: #f06529; /* Branded Orange */
    color: #fff;
    padding: 1.8rem 3.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(240, 101, 41, 0.3);
}

.btn-main-cta:hover {
    background: #d45622;
    transform: translateY(-3px);
}

.btn-sub-cta {
    background: #25D366; /* WhatsApp Green */
    color: #fff;
    padding: 1.8rem 3.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-sub-cta:hover {
    background: #1DA851;
    transform: translateY(-3px);
}

.trust-note {
    margin-top: 3rem;
    font-size: 1.3rem;
    color: #888;
}

/* ==== Contact Section Styling ==== */
.contact-section {
    background-color: #1a1a1a; /* Dark charcoal background */
    padding: 80px 10%;
    color: #ffffff;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adds consistent breathing room between items */
}
/* Left Panel Styling */
.contact-info-panel {
    flex: 1;
    margin-top: 2rem;
}

.contact-info-panel h2 {
    font-size: 3rem;
    color: #f06529; /* Techkraftiers Orange */
    margin-bottom: 20px;
}

.contact-info-panel p {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 1.4rem;
}

/* .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
} */
.info-item {
    display: flex;
    align-items: flex-start; /* 🔥 change from center to flex-start */
    gap: 15px;
    margin-bottom: 20px;
}
.icon-box {
    /* width: 55px;
    height: 55px; */
    min-width: 55px;   /* prevents shrinking */
    height: 55px;
    flex-shrink: 0;    /* 🔥 important for mobile */
    background-color: rgba(240, 101, 41, 0.1); /* Subtle orange glow */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box i {
    color: #f06529;
    font-size: 2rem;
}
.text-box{
    max-width: 300px;
}
.text-box h4 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.text-box span {
    color: #ccc;
    font-size: 1.4rem;
}

/* Right Panel Form Styling */
.contact-form-panel {
    flex: 1;
    background-color: #242424; /* Slightly lighter dark for the card */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.contact-form-panel form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form-panel h3 {
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
}
.contact-form-panel h3 span {
    color: #f06529;
}
.contact-info-panel .btn-sub-cta {
    display: inline-block;
    margin-top: 10px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}
.contact-info-panel .btn-sub-cta:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}
.contact-form-panel input, 
.contact-form-panel textarea {
    background-color: #333;
    border: 1px solid #444;
    padding: 1.2rem;
    font-size: 1.4rem;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.contact-form-panel input:focus, 
.contact-form-panel textarea:focus,
.contact-form-panel select:focus {
    border-color: #f06529;
}
.contact-form-panel select{
    width: 100%;
    padding: 1.2rem; /* Adjust to match your input padding */
    background-color: #333; /* Matches your dark input background */
    color: #999; /* Matches the placeholder color in your inputs */
    border: 1px solid #444; /* Standardizes the border */
    border-radius: 8px; /* Matches your input corners */
    font-size: 1.4rem; /* Ensures consistent text size */
    font-family: inherit; /* Inherits the site's primary font */
    outline: none;
    /* Removes default browser styling (important for the arrow) */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.contact-form-panel select option {
    background-color: #333;
    color: #fff;
    padding: 1rem;
}
.contact-form-panel button {
    background-color: #f06529;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form-panel button:hover {
    background-color: #d44b1d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 101, 41, 0.6);
}

.btn-whatsapp-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background: #25D366; /* Official WhatsApp Green */
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-small:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-small i {
    font-size: 1.8rem; /* Makes the icon stand out */
}
/* === Footer ==== */
.footer-content{
    background-color: #212121;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 8%;
} 
.footer-content p{
    font-size: 1.2rem;
    max-width: 300px;
}
.social-links{
    display: flex;
    gap: 15px;
}
.social-links a {
    color: #fafafa;;
    font-size: 2rem;
    text-decoration: none;
    font-weight: 500;
}
.social-links a:hover {
    color: rgb(52, 95, 171);
}

.scroll-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: #f06529; /* Matches your new earning section */
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background-color: #fae3d9; /* Matches your site header color */
    color: #333;
    transform: translateY(-5px);
}

.scroll-btn.show {
    opacity: 1;
    visibility: visible;
}
/* Animation Base State */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Animation Active State */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Specific delay for grid items to appear one by one */
.earning-grid .earn-card:nth-child(1) { transition-delay: 0.1s; }
.earning-grid .earn-card:nth-child(2) { transition-delay: 0.3s; }
.earning-grid .earn-card:nth-child(3) { transition-delay: 0.5s; }

/* Pulse effect for the Marketing Highlight */
@keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240, 101, 41, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(240, 101, 41, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240, 101, 41, 0); }
}

.highlight {
    animation: pulse-glow 2s infinite;
}

/* === Media Queries ===*/
@media (max-width: 1090px){
    html{
        font-size: 62.5%; /* slightly smaller for tablets */
    }
    header {
        padding: 1.5rem 4%; /* Reduce side padding to give more room */
    }
    .navbar {
        gap: 2rem; /* Reduce gap between links earlier */
    }
    .navbar a {
        font-size: 1.7rem; /* Slightly smaller text */
    }
}

@media (max-width: 768px){
    html{
        font-size: 55%; /* slightly smaller for mobile */
    }

    body{
        padding: 0;
    }
    .menu-toggle{
        display: block;
    }
    header{
        padding: 1.2rem 2rem;
    }

    .logo img{
        height: 70px;
    }
    .navbar{
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 2rem 0;
        transition: 0.3s;
    }

    .navbar.active{
        left: 0;
    }

    .navLinks{
        font-size: 2rem;
        padding: 1.4rem 1rem;
        width: 100%;
        text-align: left;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: 0.3s;
        border-radius: 8px;
    }

    .navLinks:hover{
        background: rgba(240, 101, 41, 0.08);
        color: #f06529;
        padding-left: 1.5rem;
    }
    .cta-btn{
        display: none; /* hide button in mobile (optional) */
    }
    /* Home section */
    .home-section{
        padding-top: 100px;
        gap: 1.5rem;
        align-items: center;
    }
    .home-container h1{
        font-size: 2.5rem;
        text-align: center;
    }
    .home-container p{
        font-size: 1.4rem;
        max-width: 400px;
    }
    .cta-btns{
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
    .cta-btns a{
        width: 100%;
        max-width: 300px;
        font-size: 1.4rem;
        padding: 1.2rem;
    }
    /* Business Solutions Section */
    .business-solutions {
        padding: 4rem 2rem;
    }
    .solution-container {
        flex-direction: column;
    }
    /* Why Choose Us Section */
    .business-why-choose {
        padding: 5rem 5%;
    }
    /* Expertation / result*/
    .expectation-box {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets */
    }
    /* action call */
    .final-business-cta h2 { font-size: 2.8rem; }
    .cta-actions { flex-direction: column; align-items: center; }
    .btn-main-cta, .btn-sub-cta { width: 100%; max-width: 350px; }
    
    /* Contact form*/
    .contact-container {
        display: flex; /* Flex is more reliable for simple vertical stacks */
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .contact-info-panel, .contact-form-panel {
        width: 100%;
        text-align: left; /* Ensures contact text stays left-aligned */
    }
    .info-item {
        align-items: flex-start;
    }

    .text-box {
        max-width: 100%;
    }
    .btn-primary{
        font-size: 1.4rem;
    }
    /* Footer section */
    .footer-content{
        flex-direction: column;
        align-items: center;
        gap: 1.4rem;
        padding: 2rem 10%;
        font-size: 1.2rem;
    } 

    .social-links{
        display: flex;
        gap: 15px;
    }
    .social-links a {
        color: #fafafa;;
        font-size: 2rem;
        text-decoration: none;
        font-weight: 500;
    }
}

@media (max-width: 600px) {
    .offer-container ul li {
        flex-direction: column; /* Stacks label on top of text on tiny screens */
        gap: 0.5rem;
        padding: 2rem;
    }
    .offer-container ul li span {
        min-width: 100%;
    }
    .expectation-box {
        grid-template-columns: 1fr; /* 1 card per row on mobile */
    }
}

@media (max-width: 480px) {
    html{
        font-size: 55%;
    }
    .contact-section {
        padding: 60px 5%; /* Reduces large side padding for small screens */
    }
}
