/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f7fbff;
color:#222;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

section{
padding:90px 0;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

/* ===========================
HEADER
=========================== */

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
z-index:999;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.4s;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo img{
width:65px;
}

.logo h2{
font-size:30px;
font-weight:700;
color:#003b8e;
}

.logo span{
color:#18a34a;
}

nav ul{
display:flex;
gap:35px;
list-style:none;
}

nav ul li a{
font-size:16px;
font-weight:600;
color:#222;
transition:.3s;
position:relative;
}

nav ul li a::after{
content:'';
position:absolute;
left:0;
bottom:-8px;
height:3px;
width:0%;
background:#18a34a;
transition:.3s;
}

nav ul li a:hover{
color:#18a34a;
}

nav ul li a:hover::after{
width:100%;
}

.call-btn{
background:#18a34a;
color:#fff;
padding:14px 26px;
border-radius:35px;
font-weight:600;
transition:.4s;
}

.call-btn:hover{
background:#003b8e;
transform:translateY(-3px);
}

/* ===========================
HERO
=========================== */

.hero{
padding-top:160px;
background:linear-gradient(135deg,#edf8ff,#ffffff);
}

.hero-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

.hero-content{
flex:1;
}

.hero-content h4{
color:#18a34a;
font-size:20px;
margin-bottom:15px;
}

.hero-content h1{
font-size:64px;
line-height:75px;
font-weight:700;
color:#003b8e;
margin-bottom:25px;
}

.hero-content p{
font-size:18px;
line-height:34px;
margin-bottom:35px;
color:#555;
}

.hero-buttons{
display:flex;
gap:20px;
}

.btn{
background:#18a34a;
padding:16px 35px;
color:#fff;
border-radius:40px;
font-weight:600;
transition:.4s;
}

.btn:hover{
background:#003b8e;
transform:translateY(-4px);
}

.btn2{
background:#003b8e;
padding:16px 35px;
color:#fff;
border-radius:40px;
font-weight:600;
transition:.4s;
}

.btn2:hover{
background:#18a34a;
}

.hero-image img{
width:560px;
border-radius:25px;
box-shadow:0 25px 60px rgba(0,0,0,.15);
animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}
/* ===========================
SECTION TITLE
=========================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
    }
    
    .section-title h2{
    font-size:42px;
    color:#003b8e;
    margin-bottom:15px;
    font-weight:700;
    }
    
    .section-title p{
    color:#666;
    font-size:18px;
    }
    
    /* ===========================
    FEATURES
    =========================== */
    
    .feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    }
    
    .feature-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    cursor:pointer;
    }
    
    .feature-box:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
    }
    
    .feature-box i{
    font-size:55px;
    color:#18a34a;
    margin-bottom:20px;
    }
    
    .feature-box h3{
    font-size:24px;
    color:#003b8e;
    margin-bottom:15px;
    }
    
    .feature-box p{
    color:#666;
    line-height:28px;
    }
    
    /* ===========================
    ABOUT
    =========================== */
    
    .about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    }
    
    .about-image{
    flex:1;
    }
    
    .about-image img{
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    }
    
    .about-content{
    flex:1;
    }
    
    .about-content h2{
    font-size:42px;
    color:#003b8e;
    margin-bottom:20px;
    }
    
    .about-content p{
    line-height:32px;
    color:#555;
    margin-bottom:30px;
    }
    
    .about-content ul{
    list-style:none;
    }
    
    .about-content ul li{
    margin-bottom:15px;
    font-size:18px;
    font-weight:500;
    }
    
    .about-content i{
    color:#18a34a;
    margin-right:10px;
    }
    
    /* ===========================
    SERVICES
    =========================== */
    
    .service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    }
    
    .service-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    cursor:pointer;
    }
    
    .service-card:hover{
    background:#18a34a;
    color:#fff;
    transform:translateY(-10px);
    }
    
    .service-card:hover h3,
    .service-card:hover p,
    .service-card:hover i{
    color:#fff;
    }
    
    .service-card i{
    font-size:55px;
    color:#18a34a;
    margin-bottom:20px;
    transition:.4s;
    }
    
    .service-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#003b8e;
    }
    
    .service-card p{
    line-height:28px;
    color:#666;
    }
    
    /* ===========================
    PRODUCTS
    =========================== */
    
    .product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    }
    
    .product-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    }
    
    .product-box:hover{
    transform:scale(1.05);
    background:#003b8e;
    }
    
    .product-box:hover h3,
    .product-box:hover i{
    color:#fff;
    }
    
    .product-box i{
    font-size:50px;
    color:#18a34a;
    margin-bottom:20px;
    }
    
    .product-box h3{
    color:#003b8e;
    font-size:22px;
    }
    
    /* ===========================
    WHY CHOOSE US
    =========================== */
    
    .why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    }
    
    .why-card{
    background:#fff;
    padding:35px;
    border-left:6px solid #18a34a;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    }
    
    .why-card:hover{
    transform:translateY(-10px);
    }
    
    .why-card h3{
    color:#003b8e;
    margin-bottom:15px;
    }
    
    .why-card p{
    color:#666;
    line-height:28px;
    }
    /* ===========================
COUNTER
=========================== */

.counter{
    background:linear-gradient(135deg,#003b8e,#18a34a);
    padding:80px 0;
    color:#fff;
    }
    
    .counter-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    text-align:center;
    }
    
    .counter-grid h2{
    font-size:55px;
    font-weight:700;
    margin-bottom:10px;
    }
    
    .counter-grid p{
    font-size:18px;
    }
    
    /* ===========================
    GALLERY
    =========================== */
    
    .gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    }
    
    .gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    }
    
    .gallery-grid img:hover{
    transform:scale(1.08);
    }
    
    /* ===========================
    TESTIMONIALS
    =========================== */
    
    .testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    }
    
    .testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.4s;
    }
    
    .testimonial-card:hover{
    transform:translateY(-10px);
    }
    
    .testimonial-card p{
    line-height:30px;
    color:#555;
    margin-bottom:20px;
    }
    
    .testimonial-card h4{
    color:#18a34a;
    }
    
    /* ===========================
    CONTACT
    =========================== */
    .page-banner{
        background: linear-gradient(135deg,#0d47a1,#1e88e5);
        color:#fff;
        text-align:center;
        padding:80px 20px;
    }
    
    .page-banner h1{
        font-size:42px;
        margin-bottom:10px;
    }
    
    .contact-page{
        padding:80px 0;
        background:#f8fbff;
    }
    
    .contact-details{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
        gap:25px;
        margin-top:40px;
    }
    
    .contact-card{
        background:#fff;
        padding:30px;
        border-radius:15px;
        text-align:center;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }
    
    .contact-card i{
        font-size:35px;
        color:#16a34a;
        margin-bottom:15px;
    }
    
    .contact-card h3{
        margin-bottom:10px;
    }
    
    .contact-card a{
        color:#0d47a1;
        text-decoration:none;
    }
    
    .map-section iframe{
        width:100%;
        height:450px;
        border:0;
    }
    .contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:40px;
    }
    
    .contact-info h3{
    font-size:32px;
    color:#003b8e;
    margin-bottom:20px;
    }
    
    .contact-info p{
    margin-bottom:18px;
    font-size:18px;
    }
    
    .contact-info i{
    color:#18a34a;
    margin-right:10px;
    }
    
    .contact-form input,
    .contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    font-size:16px;
    }
    
    .contact-form textarea{
    resize:none;
    }
    
    .contact-form button{
    background:#18a34a;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:35px;
    cursor:pointer;
    font-size:17px;
    transition:.3s;
    }
    
    .contact-form button:hover{
    background:#003b8e;
    }
    .page-banner{
        background:linear-gradient(135deg,#0b5ed7,#16a34a);
        color:#fff;
        text-align:center;
        padding:140px 20px 80px;
        margin-top:90px;
    }
    
    .page-banner h1{
        font-size:48px;
        font-weight:700;
        margin-bottom:15px;
    }
    
    .page-banner p{
        font-size:18px;
        opacity:.95;
    }
    .privacy-page{
        background:#f4f8fc;
        padding:80px 20px;
    }
    
    .privacy-page .container{
        max-width:1000px;
        margin:auto;
        background:#fff;
        padding:50px;
        border-radius:18px;
        box-shadow:0 15px 40px rgba(0,0,0,.08);
    }
    
    .privacy-page h2{
        font-size:38px;
        color:#0d47a1;
        margin-bottom:25px;
        text-align:center;
    }
    
    .privacy-page h3{
        color:#16a34a;
        margin-top:35px;
        margin-bottom:15px;
        font-size:26px;
    }
    
    .privacy-page p,
    .privacy-page li{
        color:#555;
        line-height:1.9;
        font-size:17px;
    }
    
    .privacy-page ul{
        margin-left:25px;
        margin-bottom:25px;
    }
    
    .privacy-page a{
        color:#0d47a1;
        text-decoration:none;
        font-weight:600;
    }
    
    .privacy-page a:hover{
        color:#16a34a;
    }
    @media(max-width:768px){

        .page-banner{
            padding:120px 20px 60px;
        }
        
        .page-banner h1{
            font-size:34px;
        }
        
        .privacy-page .container{
            padding:30px;
        }
        
        .privacy-page h2{
            font-size:30px;
        }
        
        }
    /* ===========================
    MAP
    =========================== */
    
    .map iframe{
    width:100%;
    border:none;
    }
    
    /* ===========================
    FOOTER
    =========================== */
    
    footer{
    background:#012b5d;
    color:#fff;
    padding:70px 0 20px;
    }
    
    .footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    }
    
    footer h3{
    margin-bottom:18px;
    }
    
    footer p{
    line-height:28px;
    }
    
    footer ul{
    list-style:none;
    padding:0;
    }
    
    footer ul li{
    margin-bottom:12px;
    }
    
    footer a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
    }
    
    footer a:hover{
    color:#8cf5b4;
    padding-left:5px;
    }
    
    footer hr{
    margin:30px 0;
    border:1px solid rgba(255,255,255,.2);
    }
    
    .copyright{
    text-align:center;
    font-size:15px;
    }
     
    /* ===========================
    WHATSAPP
    =========================== */

    /* .footer-links,
.footer-legal{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-links a,
.footer-legal a{
    display:block;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover,
.footer-legal a:hover{
    color:#32CD32;
    padding-left:5px;
}
.footer-about h3,
.footer-links h3,
.footer-legal h3,
.footer-contact h3{
    margin-bottom:20px;
}
.footer-contact p{
    margin:12px 0;
    line-height:28px;
}
.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:60px;
} */

.footer-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
}

.footer-about,
.footer-links,
.footer-legal,
.footer-contact{
    display:flex;
    flex-direction:column;
}
.footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-legal{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.footer-links a,
.footer-legal a{
    display:block;
    margin:8px 0;
    color:#fff;
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:10px;
    margin:10px 0;
}

.footer-contact p i{
    min-width:20px;
    color:#fff;
    font-size:18px;
}
@media(max-width:991px){
.footer-container{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){
.footer-container{
grid-template-columns:1fr;
text-align:center;
}
}
@media(max-width:992px){
.footer-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){
.footer-grid{
grid-template-columns:1fr;
text-align:center;
}
}
    
    .whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
    }
    
    .whatsapp-float:hover{
    transform:scale(1.1);
    }
    
    /* ===========================
    SCROLL TO TOP
    =========================== */
    
    #topBtn{
    position:fixed;
    bottom:100px;
    right:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#003b8e;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    display:none;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    }
    
    /* ===========================
    RESPONSIVE
    =========================== */
    
   @media(max-width:991px){

.hero-container{
    flex-direction:column;
    text-align:center;
}

.about-container{
    flex-direction:column;
    align-items:center;
    gap:40px;
}

.about-image{
    width:100%;
}

.about-image img{
    width:100%;
    max-width:500px;
    margin:auto;
}

.about-content{
    width:100%;
    text-align:left;
}

.about-content h2{
    text-align:center;
}

.about-content p{
    text-align:justify;
}

.about-content ul{
    padding-left:0;
}

.about-content ul li{
    text-align:left;
}
}