/* =========================================================    SARWATI DAIRY COMPLETE INDEX CSS    ========================================================= */

/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    line-height:1.6;
    color:#222;
    overflow-x:hidden;
    padding-top:70px; /* HEADER FIX */
}

img{
    max-width:100%;
    display:block;
}

h1,h2,h3{
    color:#1a2a44;
}

a{
    text-decoration:none;
}

section{
    padding:100px 20px;
}

/* =========================================================
   HEADER
========================================================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 40px;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(10px);
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    z-index:1000;
}

.logo img{
    height:40px;
}

/* NAV */
.nav{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav a{
    margin:0 15px;
    text-decoration:none;
    color:#222;
    font-size:14px;
    font-weight:500;
    position:relative;
    transition:0.3s;
}

.nav a:hover{
    color:#ff6600;
}

.nav a::after{
    content:"";
    position:absolute;
    width:0;
    height:2px;
    background:#ff6600;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

.nav a:hover::after{
    width:100%;
}

/* MENU ICON */
    .menu-toggle{
        display:block !important;
        font-size:34px;
        color:#fff;
        cursor:pointer;
        z-index:99999;
    }
    

/* ========================= SLIDER ========================= */

.slider{
    position:relative;
    width:100%;
    overflow:hidden;
    padding:0 !important;
}

.slide{
    display:none;
    width:100%;
}

.slide.active{
    display:block;
}

.slide img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
}

/* MOBILE FIX */
@media(max-width:768px){
    .slider{
        margin-top:65px;
    }

    .slide img{
        width:100%;
        height:auto !important;
        object-fit:contain !important;
        display:block;
    }
}

/* ARROWS */
.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    font-size:35px;
    font-weight:bold;
    cursor:pointer;
    z-index:10;
    background:rgba(0,0,0,0.4);
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.prev{
    left:15px;
}

.next{
    right:15px;
}

/* ========================= WELCOME ========================= */

.welcome{
    background:#fff;
    padding:90px 20px;
}

.welcome-container{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.welcome-text h1{
    font-size:60px;
    line-height:1.2;
    color:#102542;
    margin-bottom:25px;
    font-weight:700;
}

.welcome-text p{
    font-size:20px;
    line-height:2;
    color:#555;
}

.welcome-about{
    max-width:80%;
    margin:auto;
    opacity:0;
    transform:translateY(40px);
    transition:1s;
    text-align:justify;
}

.welcome.show .welcome-about{
    opacity:1;
    transform:translateY(0);
}

/* ========================= PRODUCTS ========================= */
.products{
    background:#f4f5f7;
}

.products h2{
    text-align:center;
    font-size:42px;
    color:#102542;
    margin-bottom:60px;
}

.product-grid-3{
    max-width:1200px;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */
.product-card{
    padding:15px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s;
    text-align:center;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.product-card h3{
    font-size:22px;
    color:#102542;
    padding:18px 15px 10px;
}

/* BUTTON */
.product-btn{
    display:inline-block;
    background:#ff6600;
    color:#fff;
    padding:12px 22px;
    border-radius:6px;
    margin-bottom:22px;
    transition:0.3s;
}

.product-btn:hover{
    background:#0d642d;
}

/* ========================= WHY SECTION ========================= */
.why-section{
    background:#fff;
}

.why-title{
    text-align:center;
    font-size:42px;
    color:#102542;
}

.why-sub{
    text-align:center;
    color:#666;
    max-width:1100px;
    margin:15px auto 55px;
}

.why-grid{
    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:20px;
}

/* CARD */
.why-card{
    background:#fff;
    border-radius:12px;
    padding:25px 15px;
    text-align:center;
    box-shadow:0 5px 18px rgba(0,0,0,0.06);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.why-card img{
    width:55px;
    margin:auto auto 15px;
}

.why-card h3{
    font-size:15px;
    color:#102542;
    line-height:1.5;
}

/* ========================= FOOTER ========================= */
.footer{
    background:#07194f;
    color:#fff;
    padding:70px 20px 30px;
}

.footer-top{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

/* LOGO */
.footer-logo img{
    width:230px;
}

/* MENU */
.footer-menu{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.footer-menu a{
    color:#fff;
    transition:0.3s;
}

.footer-menu a:hover{
    color:#ffcc00;
}

/* SOCIAL */
.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:0.3s;
}

.footer-social a:hover{
    background:#ff6600;
    transform:translateY(-4px);
}

/* LINE */
.footer-line{
    max-width:1200px;
    margin:30px auto;
    height:1px;
    background:rgba(255,255,255,0.15);
}

/* COPYRIGHT */
.footer-bottom{
    text-align:center;
    font-size:15px;
    color:#ccc;
}

.footer-bottom a{
    color:#00b7ff;
}

.footer-bottom a:hover{
    color:#fff;
}

/* ========================= SCROLL TOP ========================= */
#scrollTop{
    position:fixed;
    right:20px;
    bottom:20px;
    width:45px;
    height:45px;
    background:#ff6600;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:99999;
}

/* ========================= TABLET ========================= */
@media(max-width:1100px){
    .product-grid-3{
        grid-template-columns:repeat(3,1fr);
    }
    .why-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* ========================= MOBILE ========================= */
@media(max-width:768px){
    section{
        padding:60px 15px;
    }

    /* HEADER */
    body {
        padding-top:0 !important;
    }

    .header{
        background:#0f5c2e !important;
        padding:0 20px;
        height:65px;
    }

    .logo img{
        height:42px;
    }

/* ================= MOBILE MENU ================= */

@media(max-width:768px){

    /* MENU ICON */
    .menu-toggle{
        display:block !important;
        font-size:34px;
        color:#fff;
        cursor:pointer;
        z-index:99999;
    }

    /* NAV */
    .nav{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        flex-direction:column;
        padding:15px;
        z-index:9999;
        box-shadow:0 10px 30px rgba(0,0,0,0.15);
        align-items:flex-start;
    }

    /* SHOW MENU */
    .nav.active{
        display:flex;
    }

    /* LINKS */
    .nav a{
        margin:0 15px;
        text-decoration:none;
        color:#222;
        font-size:14px;
        font-weight:500;
        position:relative;
        transition:0.3s;
    }
    
    .nav a:hover{
        background:#ff6600;
        color:#fff !important;
    }
}

/* ========================= SLIDER ========================= */
    .slider{
        margin-top:65px;
    }

    .slide img{
        width:100%;
        height:auto;
        object-fit:contain;
    }

    .prev,
    .next{
        width:38px;
        height:38px;
        font-size:18px;
    }

    .prev{
        left:10px;
    }

    .next{
        right:10px;
    }

    /* WELCOME */

    .welcome{
        padding:60px 20px;
    }

    .welcome-text h1{
        font-size:36px;
    }

    .welcome-text p{
        font-size:16px;
        line-height:1.9;
    }

    /* PRODUCTS */

    .products h2{
        font-size:32px;
    }

    .product-grid-3{
        grid-template-columns:1fr;
        gap:22px;
    }

    .product-card img{
        height:220px;
    }

    .product-card h3{
        font-size:20px;
    }

    /* WHY */

    .why-title{
        font-size:32px;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* FOOTER */

    .footer-top{
        flex-direction:column;
        text-align:center;
    }

    .footer-menu{
        justify-content:center;
    }

    .footer-social{
        justify-content:center;
    }

}

/* ========================= SMALL MOBILE ========================= */
@media(max-width:480px){

    .welcome-text h1{
        font-size:30px;
    }

    .why-grid{
        grid-template-columns:2,1fr;
    }

    .products h2,
    .why-title{
        font-size:28px;
    }

}

/* ========================= TOP BANNER ========================= */
.page-banner{
    height:250px;
    background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('/images/header.jpg');
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

/* BANNER CONTENT */
.banner-overlay h1{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.banner-overlay p{
    color:#f1f1f1;
    margin-top:10px;
    font-size:18px;
}

/* ================= BREADCRUMB STRIP ================= */
.breadcrumb-bar{
    background:#f8f8f8;
    padding:14px 0;
    border-bottom:1px solid #e5e5e5;
}

.breadcrumb-bar .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    font-size:15px;
}

.breadcrumb-bar a{
    color:#ff6600;
    text-decoration:none;
    font-weight:600;
}

.breadcrumb-bar span{
    color:#555;
}

/* ================= MOBILE ================= */

@media(max-width:768px){
    .page-banner{
        height:190px;
        margin-top:65px;
    }

    .banner-overlay h1{
        font-size:28px;
    }

    .banner-overlay p{
        font-size:15px;
        padding:0 15px;
    }

    .breadcrumb-bar{
        padding:12px 0;
    }

    .breadcrumb-bar .container{
        font-size:14px;
    }
}


/* ================= CONTACT HERO ================= */

.contact-hero{
    text-align:center;
    padding:90px 20px;
    background:#f7faf8;
}

.contact-hero .container{
    max-width:900px;
    margin:auto;
}

.contact-hero h1{
    font-size:48px;
    color:#102542;
    margin-bottom:18px;
    font-weight:700;
    line-height:1.2;
}

.contact-hero p{
    color:#666;
    font-size:18px;
    line-height:1.9;
}

/* ================= BUTTONS ================= */

.contact-btns{
    margin-top:35px;

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* COMMON */

.call-btn,
.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:15px 34px;

    border-radius:8px;

    color:#fff;
    text-decoration:none;

    font-weight:600;
    font-size:16px;

    transition:0.3s;
}

/* CALL */

.call-btn{
    background:#ff6600;
}

.call-btn:hover{
    background:#e25500;
    transform:translateY(-4px);
}

/* WHATSAPP */

.whatsapp-btn{
    background:#25d366;
}

.whatsapp-btn:hover{
    background:#18bd57;
    transform:translateY(-4px);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .contact-hero{
        padding:65px 15px;
    }

    .contact-hero h1{
        font-size:34px;
    }

    .contact-hero p{
        font-size:16px;
        line-height:1.8;
    }

    .contact-btns{
        gap:15px;
    }

    .call-btn,
    .whatsapp-btn{
        width:100%;
        padding:15px 20px;
    }
}

/* ================= CONTACT DETAILS ================= */

.contact-details{
    padding:90px 20px;
    background:#ffffff;
}

.contact-details h2{
    text-align:center;
    font-size:42px;
    color:#102542;
    margin-bottom:60px;
    position:relative;
}

.contact-details h2::after{
    content:"";
    width:90px;
    height:4px;
    background:#ff6600;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-15px;
    border-radius:10px;
}

/* GRID */

.contact-grid{
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* CARD */

.contact-box{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,0.07);
    transition:0.4s;
    border-bottom:4px solid transparent;
    position:relative;
    overflow:hidden;
}

.contact-box:hover{
    transform:translateY(-10px);
    border-color:#ff6600;
}

/* TOP BORDER */

.contact-box::before{
    content:"";
    width:100%;
    height:5px;
    background:linear-gradient(to right,#ff6600,#0f5c2e);
    position:absolute;
    top:0;
    left:0;
}

/* ICON */

.contact-box i{
    width:70px;
    height:70px;
    background:#eef8f1;
    color:#0f5c2e;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
    transition:0.4s;
}

.contact-box:hover i{
    background:#ff6600;
    color:#fff;
    transform:rotate(8deg) scale(1.08);
}

/* TEXT */

.contact-box p{
    color:#444;
    line-height:1.9;
    font-size:16px;
    margin:0;
}

.contact-box b{
    display:block;
    color:#102542;
    font-size:22px;
    margin-bottom:10px;
}

/* ================= REGISTRATION SECTION ================= */

.registration-section{
    padding:90px 20px;
    background:#eef5f2;
}

/* TITLE */

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title span{
    color:#ff6600;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    color:#102542;
    margin-top:12px;
}

/* GRID */

.registration-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.registration-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 30px rgba(0,0,0,0.06);
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

.registration-card:hover{
    transform:translateY(-8px);
}

/* TOP EFFECT */

.registration-card::before{
    content:"";
    width:100%;
    height:5px;
    background:linear-gradient(to right,#ff6600,#0f5c2e);
    position:absolute;
    top:0;
    left:0;
}

/* ICON */

.reg-icon{
    width:75px;
    height:75px;
    margin:0 auto 18px;
    background:#eef8f1;
    color:#0f5c2e;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

/* TEXT */

.registration-card h3{
    color:#102542;
    margin-bottom:12px;
    font-size:24px;
}

.registration-card p{
    color:#555;
    font-size:17px;
    line-height:1.8;
    word-break:break-word;
}

/* ================= MAP ================= */

.contact-map{
    padding:0 !important;
    margin:0 !important;
}

.contact-map iframe{
    width:100%;
    height:450px;
    border:0;
    display:block;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

    .contact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .registration-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .contact-details{
        padding:70px 15px;
    }

    .contact-details h2,
    .section-title h2{
        font-size:30px;
    }

    .contact-grid,
    .registration-grid{
        grid-template-columns:1fr;
    }

    .contact-box{
        text-align:center;
    }

    .contact-box i{
        margin:0 auto 20px;
    }

    .contact-map iframe{
        height:320px;
    }

}


/* ================= PRODUCTS PAGE ================= */

.products-page{
    padding:90px 20px;
    background:#f8f9fb;
}

/* TITLE */

.products-page .section-title{
    text-align:center;
    margin-bottom:60px;
}

.products-page .section-title span{
    color:#ff6600;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
}

.products-page .section-title h2{
    font-size:42px;
    color:#102542;
    margin-top:12px;
}

/* GRID */

.products-page .products-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.products-page .product-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.products-page .product-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.products-page .product-img{
    height:250px;
    overflow:hidden;
}

.products-page .product-img img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:0.4s;
}

.products-page .product-card:hover .product-img img{
    transform:scale(1.05);
}

/* CONTENT */

.products-page .product-content{
    padding:24px;
}

.products-page .product-content h3{
    margin-bottom:12px;
    color:#102542;
    font-size:24px;
}

.products-page .product-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:18px;
    font-size:16px;
}

/* BUTTON */

.products-page .product-btn{
    display:inline-block;
    padding:12px 22px;
    background:#ff6600;
    color:#fff;
    border-radius:6px;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

.products-page .product-btn:hover{
    background:#0f5c2e;
}

/* ================= CTA ================= */

.product-cta{
    padding:40px 20px;
    text-align:center;

    background:#737373;
    color:#fff;
}

.product-cta h2{
    font-size:38px;
    margin-bottom:15px;
}

.product-cta p{
    margin-bottom:30px;
    font-size:18px;
    color:#f2f2f2;
}

/* BUTTONS */

.cta-btns{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.cta-btns a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:6px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

/* CALL */

.product-cta .call-btn{
    background:#ff6600;
}

.product-cta .call-btn:hover{
    background:#e25500;
}

/* WHATSAPP */

.product-cta .whatsapp-btn{
    background:#25D366;
}

.product-cta .whatsapp-btn:hover{
    background:#18bd57;
}

/* ================= TABLET ================= */

@media(max-width:992px){

    .products-page .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .products-page{
        padding:70px 15px;
    }

    .products-page .products-grid{
        grid-template-columns:1fr;
    }

    .products-page .section-title h2{
        font-size:32px;
    }

    .products-page .product-content h3{
        font-size:22px;
    }

    .product-cta{
        padding:60px 15px;
    }

    .product-cta h2{
        font-size:30px;
    }

    .product-cta p{
        font-size:16px;
    }

    .cta-btns a{
        width:100%;
    }

}

/* ================= ABOUT SECTION ================= */

/* ======= MD SECTION ======= */

.md-section{
    padding:80px 20px;
    background:#ffffff;
}

.container{
    max-width:1100px;
    margin:auto;
}

/* GRID */
.md-grid{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:50px;
    align-items:center;
}

/* IMAGE */
.md-image{
    text-align:center;
}

.md-image img{
    width:100%;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* NAME BOX */
.md-name{
    margin-top:15px;
}

.md-name h3{
    margin:0;
    color:#1b2a3a;
}

.md-name span{
    font-size:14px;
    color:#777;
}

/* CONTENT */
.md-content .tag{
    color:#ff6600;
    font-size:14px;
    font-weight:600;
}

.md-content h2{
    font-size:32px;
    margin:10px 0;
    color:#1b2a3a;
}

.md-content p{
    color:#555;
    line-height:1.6;
    margin-bottom:12px;
    text-align:justify;
}

/* QUOTE */
.md-quote{
    margin-top:20px;
    padding:15px;
    background:#f5f6f8;
    border-left:4px solid #ff6600;
    font-style:italic;
    color:#333;
}

/* MOBILE */
@media(max-width:768px){

    .md-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .md-content h2{
        font-size:24px;
    }
}

.about-section{
    padding:80px 20px;
    background:#f8f9fb;
}

.container{
    max-width:1100px;
    margin:auto;
}

/* GRID */
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* IMAGE */
.about-image img{
    width:100%;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* CONTENT */
.about-content .tag{
    color:#ff6600;
    font-size:14px;
    font-weight:600;
}

.about-content h2{
    font-size:32px;
    margin:10px 0;
    color:#1b2a3a;
}

.about-content .lead{
    color:#555;
    margin-bottom:20px;
    line-height:1.6;
    text-align:justify;
}

/* POINTS */
.about-points{
    display:flex;
    gap:20px;
    margin-bottom:25px;
}

.point{
    background:#fff;
    padding:15px;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.point h4{
    color:#0f5c2e;
    margin-bottom:5px;
}

/* BUTTONS */
.about-btns .btn{
    display:inline-block;
    padding:10px 18px;
    margin-right:10px;
    border-radius:5px;
    text-decoration:none;
    color:#fff;
}

.btn.primary{
    background:#ff6600;
}

.btn.secondary{
    background:#0f5c2e;
}

.btn:hover{
    opacity:0.9;
}

/* MOBILE */
@media(max-width:768px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-points{
        flex-direction:column;
    }

    .about-content h2{
        font-size:24px;
    }
}









/* =========================================================
   INFRASTRUCTURE PAGE CSS
========================================================= */

/* ================= COMMON ================= */

.infra-intro,
.infra-section,
.infra-why{
    padding:90px 20px;
}

.infra-container{
    max-width:1200px;
    margin:auto;
}

.infra-light-bg{
    background:#f8faf9;
}

/* ================= TITLE ================= */

.infra-title{
    text-align:center;
    margin-bottom:55px;
}

.infra-title span{
    color:#ff6600;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
}

.infra-title h2{
    font-size:42px;
    color:#102542;
    margin-top:12px;
}

/* ================= INTRO ================= */

.infra-desc{
    max-width:950px;
    margin:auto;
    text-align:center;
    color:#555;
    line-height:2;
    font-size:18px;
}

/* ================= GRID ================= */

.infra-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
    align-items:center;
}

/* ================= IMAGE ================= */

.infra-img img{
    width:100%;
    border-radius:18px;

    box-shadow:0 10px 40px rgba(0,0,0,0.12);

    transition:0.4s;
}

.infra-img img:hover{
    transform:scale(1.02);
}

/* ================= CONTENT ================= */

.infra-tag{
    display:inline-block;

    background:#eef8f1;
    color:#0f5c2e;

    padding:10px 18px;
    border-radius:30px;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}

.infra-content h2{
    font-size:38px;
    color:#102542;
    margin-bottom:20px;
    line-height:1.3;
}

.infra-content p{
    color:#555;
    line-height:2;
    font-size:17px;
    margin-bottom:35px;
}

/* ================= LIST ================= */

.infra-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.infra-item{
    background:#fff;

    padding:16px 18px;

    border-radius:10px;

    box-shadow:0 5px 18px rgba(0,0,0,0.05);

    color:#102542;
    font-weight:500;

    transition:0.3s;
}

.infra-item:hover{
    transform:translateY(-5px);
    background:#ff6600;
    color:#fff;
}

/* ================= REVERSE ================= */

.infra-reverse-grid .infra-content{
    order:1;
}

.infra-reverse-grid .infra-img{
    order:2;
}

/* ================= WHY SECTION ================= */

.infra-why{
    background:#eef5f2;
}

.infra-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.infra-why-box{
    background:#fff;

    padding:35px 25px;

    text-align:center;

    border-radius:18px;

    box-shadow:0 8px 30px rgba(0,0,0,0.06);

    transition:0.3s;
}

.infra-why-box:hover{
    transform:translateY(-8px);
}

.infra-why-box i{
    width:80px;
    height:80px;

    margin:auto auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eef8f1;
    color:#0f5c2e;

    font-size:32px;
}

.infra-why-box h3{
    color:#102542;
    font-size:20px;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .infra-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .infra-reverse-grid .infra-content,
    .infra-reverse-grid .infra-img{
        order:unset;
    }

    .infra-why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .infra-intro,
    .infra-section,
    .infra-why{
        padding:70px 15px;
    }

    .infra-title h2{
        font-size:30px;
    }

    .infra-content h2{
        font-size:30px;
    }

    .infra-desc{
        font-size:16px;
        line-height:1.9;
    }

    .infra-content p{
        font-size:16px;
    }

    .infra-list{
        grid-template-columns:1fr;
    }

    .infra-why-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .infra-why-box{
        padding:25px 15px;
    }

    .infra-why-box i{
        width:60px;
        height:60px;
        font-size:24px;
    }

    .infra-why-box h3{
        font-size:16px;
        line-height:1.5;
    }

}

@media(max-width:480px){

    .infra-title h2{
        font-size:28px;
    }

    .infra-content h2{
        font-size:28px;
    }

    .infra-why-grid{
        grid-template-columns:1fr;
    }

}


/* =========================
   404 PAGE
========================= */

.error-page{
    width:100%;
    padding:80px 20px;
    background:#fff;
    text-align:center;
}

.error-container{
    max-width:700px;
    margin:auto;
}

.error-icon{
    width:120px;
    height:120px;
    margin:0 auto 20px;
    background:#fff3e0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    color:#f57c00;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.error-container h1{
    font-size:120px;
    color:#f57c00;
    font-weight:700;
    margin:0;
    line-height:1;
}

.error-container h2{
    font-size:34px;
    color:#222;
    margin:15px 0;
    font-weight:600;
}

.error-container p{
    font-size:17px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.error-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.error-buttons a{
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:500;
    transition:0.3s ease;
}


/* MOBILE */
@media(max-width:768px){

    .error-container h1{
        font-size:80px;
    }

    .error-container h2{
        font-size:26px;
    }

    .error-container p{
        font-size:15px;
    }

    .error-buttons{
        flex-direction:column;
        align-items:center;
    }

    .error-buttons a{
        width:100%;
        max-width:280px;
    }

}




/* FAQ SECTION */

.faq-section{
    padding:70px 20px;
    background:#f9f9f9;
}

.faq-section h2{
    text-align:center;
    font-size:36px;
    margin-bottom:40px;
    color:#222;
}

.faq-box{
    background:#fff;
    padding:25px;
    margin-bottom:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.faq-box h3{
    font-size:20px;
    margin-bottom:10px;
    color:#f57c00;
}

.faq-box p{
    color:#555;
    line-height:1.7;
}