html{
  scroll-behavior: smooth;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f4f4f4;
  color:#222;
}


/* ===========================
   HEADER / NAVBAR
=========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    z-index:1000;
}

.navbar{
    max-width:1300px;
    width:100%;
    margin:auto;
    padding:15px 5%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Logo */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    width:70px;
    height:auto;
}

.logo h1{
    font-size:32px;
    font-weight:700;
    margin:0;
}

.logo .dam{
    color:#0B2E6B;
}

.logo .care{
    color:#D4A017;
}

/* Navigation */

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-size:16px;
    font-weight:600;
    position:relative;
    transition:.3s;
}

.nav-links a:hover{
    color:#0B2E6B;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#D4A017;
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/* Button */

.quote-btn{
    display:inline-block;
    background:#D4A017;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.quote-btn:hover{
    background:#0B2E6B;
}

/* Menu Icon */

.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

    .navbar{
        padding:15px 4%;
    }

    .nav-links{
        gap:20px;
    }

    .logo img{
        width:60px;
    }

    .logo h1{
        font-size:28px;
    }

    .quote-btn{
        padding:10px 20px;
        font-size:15px;
    }

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .navbar{
        padding:12px 20px;
    }

    .logo img{
        width:55px;
    }

    .logo h1{
        font-size:26px;
    }

    .menu-toggle{
        display:block;
        color:#0B2E6B;
    }

    .quote-btn{
        display:none;
    }

    .nav-links{
        position:fixed;
        top:80px;
        right:-100%;
        width:260px;
        height:calc(100vh - 80px);
        background:#fff;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:flex-start;
        gap:30px;
        padding-top:40px;
        transition:.35s ease;
        box-shadow:-5px 0 20px rgba(0,0,0,.15);
    }

    .nav-links.active{
        right:0;
    }

    .nav-links a{
        font-size:18px;
    }

}

/* ===========================
   HERO SECTION
=========================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:130px 6% 80px;
    background:linear-gradient(rgb(3, 17, 51),rgba(3,17,51)),
               url("images/waterproofing-worker.jpg") center/cover no-repeat;
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.hero::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    top:-250px;
    right:-180px;
    z-index:0;
}

.hero::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    bottom:-220px;
    left:-180px;
    z-index:0;
}

/* Hero Content */

.hero-content{
    flex:1;
    position:relative;
    z-index:2;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    background:#D4A017;
    color:#fff;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
}

.hero h1{
    font-size:60px;
    line-height:1.2;
    color:#fff;
    margin-bottom:25px;
}

.hero p{
    max-width:600px;
    color:#f1f1f1;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

/* Buttons */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    display:inline-block;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s ease;
}

.primary-btn{
    border:2px solid #D4A017;
    color:#fff;
}

.secondary-btn{
    border:2px solid #D4A017;
    color:#f4f3f2;
}

/* Hover */

.primary-btn:hover{
    background:#b9890d;
    transform:translateY(-4px);
}

.secondary-btn:hover{
    background:#D4A017;
    color:#fff;
    transform:translateY(-4px);
}

/* Hero Image */

.hero-image{
    flex:1;
    text-align:center;
    position:relative;
    z-index:2;
}

.hero-image img{
    width:100%;
    max-width:520px;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
    animation:float 5s ease-in-out infinite;
}

/* Stats */

.hero-stats{
    display:flex;
    justify-content:center;
    gap:40px;
    padding:60px 6%;
    background:#fff;
}

.stat{
    text-align:center;
}

.stat h2{
    color:#0B2E6B;
    font-size:42px;
    margin-bottom:8px;
}

.stat p{
    color:#666;
    font-size:16px;
}

/* Animations */

.hero-content{
    animation:fadeLeft 1s ease;
}

.hero-image{
    animation:fadeRight 1s ease;
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

    .hero{
        flex-direction:column-reverse;
        text-align:center;
        padding:120px 5% 70px;
        gap:40px;
    }

    .hero h1{
        font-size:46px;
    }

    .hero p{
        max-width:100%;
        margin:0 auto 30px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-image img{
        max-width:450px;
    }

    .hero-stats{
        gap:25px;
    }

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .hero{
        padding:110px 20px 60px;
    }

    .hero-tag{
        font-size:14px;
        padding:8px 18px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .primary-btn,
    .secondary-btn{
        width:220px;
        text-align:center;
    }

    .hero-image img{
        max-width:320px;
    }

    .hero-stats{
        flex-direction:column;
        gap:25px;
        padding:40px 20px;
    }

    .stat h2{
        font-size:32px;
    }

}

/* ===========================
   WHY CHOOSE US
=========================== */

.why-choose{
    padding:90px 6%;
    background:#071A45;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#D4A017;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.section-title h1{
    color:#fff;
    font-size:42px;
    margin-bottom:18px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#d8d8d8;
    font-size:17px;
    line-height:1.8;
}

/* Cards */

.choose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.choose-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.choose-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.choose-card i{
    width:75px;
    height:75px;
    line-height:75px;
    border-radius:50%;
    background:#0B2E6B;
    color:#fff;
    font-size:30px;
    margin-bottom:22px;
    transition:.35s;
}

.choose-card:hover i{
    background:#D4A017;
    transform:rotate(360deg);
}

.choose-card h3{
    color:#0B2E6B;
    font-size:22px;
    margin-bottom:15px;
}

.choose-card p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

    .why-choose{
        padding:70px 5%;
    }

    .section-title h1{
        font-size:34px;
    }

    .choose-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .why-choose{
        padding:60px 20px;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h1{
        font-size:28px;
    }

    .section-title p{
        font-size:15px;
    }

    .choose-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .choose-card{
        padding:30px 20px;
    }

    .choose-card i{
        width:65px;
        height:65px;
        line-height:65px;
        font-size:26px;
    }

    .choose-card h3{
        font-size:20px;
    }

    .choose-card p{
        font-size:15px;
    }

}

/* ===========================
   TRUST BAR
=========================== */

.trust-bar{
    max-width:1200px;
    margin:-40px auto 60px;
    padding:25px 30px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    position:relative;
    z-index:5;
}

.trust-bar div{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:12px;
    text-align:center;
    border-right:1px solid #e8e8e8;
}

.trust-bar div:last-child{
    border-right:none;
}

.trust-bar .icon{
    width:40px;
    height:40px;
    background:#D4A017;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}

.trust-bar span:last-child{
    color:#071A45;
    font-size:16px;
    font-weight:600;
    line-height:1.5;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

    .trust-bar{
        grid-template-columns:repeat(2,1fr);
        margin:30px 20px;
        padding:20px;
        gap:15px;
    }

    .trust-bar div{
        justify-content:flex-start;
        text-align:left;
        border-right:none;
        border-bottom:1px solid #e8e8e8;
    }

    .trust-bar div:nth-last-child(-n+2){
        border-bottom:none;
    }

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .trust-bar{
        grid-template-columns:1fr;
        margin:25px 15px;
        padding:18px;
        gap:12px;
    }

    .trust-bar div{
        justify-content:flex-start;
        text-align:left;
        padding:14px 8px;
        border-bottom:1px solid #e8e8e8;
    }

    .trust-bar div:last-child{
        border-bottom:none;
    }

    .trust-bar .icon{
        width:36px;
        height:36px;
        font-size:16px;
    }

    .trust-bar span:last-child{
        font-size:15px;
    }

}
/* ===========================
   COMMON SECTIONS
=========================== */

.services,
.products{
    padding:90px 6%;
}


/* ===========================
   SECTION TITLE
=========================== */

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#0B1F4D;
    line-height:1.3;
    margin-bottom:15px;
}

.section-title h2 span{
    color:#D4A017;
}

.section-title p{
    color:#666;
    font-size:18px;
    line-height:1.7;
}


/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

    .services,
    .products{
        padding:70px 5%;
    }


    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:16px;
    }

}


/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .services,
    .products{
        padding:60px 20px;
    }


    .section-title{
        margin-bottom:35px;
    }


    .section-title h2{
        font-size:28px;
    }


    .section-title p{
        font-size:15px;
        line-height:1.6;
    }

}
/* ===========================
   SERVICE BOX
=========================== */

.service-box{
    background:#fff;
    border-radius:28px;
    padding:30px;
    display:grid;
    grid-template-columns:1fr 1.2fr 1fr;
    gap:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}


/* Left Image */

.service-left img{
    width:100%;
    height:100%;
    min-height:400px;
    object-fit:cover;
    border-radius:22px;
}


/* Center Content */

.service-center{
    background:#2B6CB0;
    color:#fff;
    padding:35px;
    border-radius:24px;
    position:relative;
}

.badge{
    position:absolute;
    top:-18px;
    right:25px;
    background:#D4A017;
    color:#fff;
    padding:12px 20px;
    border-radius:50px;
    font-weight:700;
}

.service-center h3{
    font-size:30px;
    margin-bottom:20px;
}

.service-center ul{
    padding-left:20px;
    line-height:2;
    margin-bottom:30px;
}

.service-center .button{
    display:inline-block;
    background:#D4A017;
    color:#fff;
    padding:13px 25px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.service-center .button:hover{
    background:#fff;
    color:#2B6CB0;
}


/* Right Image Grid */

.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.grid img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:18px;
}



/* ===========================
   PRODUCTS SECTION
=========================== */

.products{
    background:#fff;
    color:#071A45;
}


.productSwiper{
    width:100%;
    padding:30px 10px 60px;
}


.product-card{
    height:100%;
    background:#071A45;
    color:#fff;
    padding:30px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
    transition:.3s;
}


.product-card:hover{
    transform:translateY(-8px);
}


.product-card img{
    width:180px;
    height:180px;
    object-fit:contain;
    margin:0 auto;
}


.product-card h3{
    margin-top:20px;
    color:#D4A017;
    font-size:22px;
}


.product-card p{
    max-width:450px;
    width:100%;
    margin:20px auto;
    color:#f5f5f5;
    font-size:15px;
    line-height:1.7;
}


.product-card .btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    border-radius:8px;
    background:#D4A017;
    color:#071A45;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}


.product-card .btn:hover{
    background:#fff;
}



/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

    .service-box{
        grid-template-columns:1fr;
    }


    .service-left img{
        height:350px;
    }


    .grid img{
        height:220px;
    }

}



/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .service-box{
        padding:20px;
        border-radius:20px;
    }


    .service-center{
        padding:25px;
    }


    .service-center h3{
        font-size:24px;
    }


    .badge{
        top:-15px;
        right:15px;
        padding:10px 15px;
        font-size:14px;
    }


    .grid{
        grid-template-columns:1fr;
    }


    .grid img{
        height:200px;
    }


    .productSwiper{
        padding:20px 0 50px;
    }


    .product-card{
        padding:25px 18px;
    }


    .product-card img{
        width:150px;
        height:150px;
    }


    .product-card h3{
        font-size:20px;
    }


    .product-card p{
        font-size:14px;
    }

}
/* ===========================
   TESTIMONIALS SECTION
=========================== */

.testimonials{
    background:#f8f9fc;
    padding:90px 8%;
}

.testimonials .section-title h2{
    color:#071a45;
}

.testimonials .section-title span{
    color:#c58a2b;
}


/* Testimonials Grid */

.testimonial-container{
    max-width:1200px;
    margin:40px auto 0;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}


/* Card */

.testimonial-card{
    background:#ffffff;

    padding:35px 30px;

    border-radius:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    transition:.35s ease;

    position:relative;
    overflow:hidden;
}


.testimonial-card::before{

    content:"";

    position:absolute;

    width:80px;
    height:80px;

    background:#c58a2b;

    opacity:.12;

    border-radius:50%;

    top:-30px;
    right:-30px;

}


.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.15);

}


/* Stars */

.stars{

    color:#f4b400;

    font-size:24px;

    letter-spacing:3px;

    margin-bottom:20px;

}


/* Review Text */

.testimonial-card p{

    color:#555;

    font-size:16px;

    line-height:1.8;

    margin-bottom:25px;

}


/* Customer Name */

.testimonial-card h4{

    color:#0B2F78;

    font-size:20px;

    margin-bottom:6px;

}


/* Location */

.testimonial-card span{

    color:#888;

    font-size:15px;

}


/* ===========================
   TABLET RESPONSIVE
=========================== */

@media(max-width:992px){

    .testimonials{

        padding:70px 5%;

    }


    .testimonial-container{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }

}



/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media(max-width:600px){

    .testimonials{

        padding:60px 20px;

    }


    .testimonial-container{

        grid-template-columns:1fr;

        gap:20px;

    }


    .testimonial-card{

        padding:28px 22px;

    }


    .stars{

        font-size:20px;

    }


    .testimonial-card p{

        font-size:15px;

    }


    .testimonial-card h4{

        font-size:18px;

    }

}
/* ===========================
   CONTACT SECTION
=========================== */

.contact-section{

    padding:90px 8%;

    background:#ffffff;

}



/* ===========================
   FAQ SECTION
=========================== */

.faq{

    padding:90px 8%;

    background:#f8f9fc;

}


.faq-container{

    max-width:900px;

    margin:40px auto 0;

}



.faq-item{

    margin-bottom:18px;

    border-radius:12px;

    overflow:hidden;

    background:#fff;

    border:1px solid #e2e2e2;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}



/* Question Button */

.faq-question{

    width:100%;

    padding:20px 25px;

    background:#0B2F78;

    color:#fff;

    border:none;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-align:left;

    transition:.3s;

}


.faq-question:hover{

    background:#c58a2b;

}



.faq-question span{

    font-size:26px;

    color:#fff;

}



/* Answer */

.faq-answer{

    display:none;

    padding:20px 25px;

    background:#fff;

    color:#555;

    line-height:1.8;

    font-size:16px;

}



/* ===========================
   CONTACT FORM
=========================== */


.contact-form{

    max-width:950px;

    margin:40px auto 0;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}



.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    outline:none;

    transition:.3s;

    font-family:inherit;

}



.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:#0B2F78;

    box-shadow:0 0 8px rgba(11,47,120,.15);

}



.contact-form textarea{

    grid-column:1 / 3;

    resize:vertical;

    min-height:140px;

}



.contact-form button{

    grid-column:1 / 3;

    padding:16px;

    background:#071a45;

    color:#fff;

    border:none;

    border-radius:12px;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}



.contact-form button:hover{

    background:#c58a2b;

    transform:translateY(-3px);

}



/* ===========================
   TABLET RESPONSIVE
=========================== */

@media(max-width:992px){


    .contact-section,
    .faq{

        padding:70px 5%;

    }


}



/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media(max-width:768px){


    .faq-question{

        padding:18px;

        font-size:16px;

    }


    .faq-answer{

        padding:18px;

        font-size:15px;

    }


    .contact-form{

        grid-template-columns:1fr;

        gap:15px;

    }


    .contact-form textarea,
    .contact-form button{

        grid-column:1;

    }


    .contact-section{

        padding:60px 20px;

    }


}
/* =========================
   Map Section
========================= */

.map-section{
  padding:80px 8%;
  background:#f8f8f8;
}

.map-section .section-title{
  margin-bottom:40px;
}

.map-container{
  width:100%;
  max-width:1200px;
  height:450px;
  margin:auto;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.map-container iframe{
  width:100%;
  height:100%;
  border:0;
}


/* Tablet Responsive */
@media(max-width:992px){

  .map-section{
    padding:60px 30px;
  }

  .map-container{
    height:400px;
    border-radius:20px;
  }

}


/* Mobile Responsive */
@media(max-width:576px){

  .map-section{
    padding:50px 20px;
  }

  .map-container{
    height:300px;
    border-radius:16px;
  }

}
/* =========================
   CTA Section
========================= */

.cta{
  background:linear-gradient(135deg,#c58a2b,#d4a017);
  color:#fff;
  text-align:center;
  padding:80px 8%;
}

.cta h2{
  font-size:42px;
  font-weight:700;
  margin-bottom:15px;
  color:rgb(21, 21, 101);
}

.cta p{
  font-size:19px;
  margin-bottom:30px;
  color:#fff;
}

.cta-btn{
  display:inline-block;
  background:#071a45;
  color:#fff;
  padding:15px 32px;
  border-radius:50px;
  font-weight:700;
  text-decoration:none;
  font-size:18px;
  margin:8px;
  transition:.35s ease;
}

.cta-btn:hover{
  background:#fff;
  color:#071a45;
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,.2);
}


/* =========================
   Clients Logo Section
========================= */

.clients{
  padding:80px 0;
  background:#fff;
  text-align:center;
  overflow:hidden;
}

.clients h2{
  font-size:42px;
  color:#0b1b47;
  margin-bottom:45px;
  font-weight:700;
}


.logo-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}


.logo-track{
  display:flex;
  align-items:center;
  width:max-content;
  animation:scroll 30s linear infinite;
}


.logo-track img{
  height:70px;
  width:auto;
  max-width:160px;
  object-fit:contain;
  margin:0 45px;
  filter:grayscale(20%);
  transition:.3s ease;
}


.logo-track img:hover{
  transform:scale(1.15);
  filter:grayscale(0);
}


/* Infinite Logo Animation */

@keyframes scroll{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}


/* Tablet */

@media(max-width:992px){

  .cta{
    padding:70px 30px;
  }

  .cta h2{
    font-size:34px;
  }

  .clients{
    padding:60px 0;
  }

  .clients h2{
    font-size:34px;
  }

  .logo-track img{
    height:60px;
    margin:0 30px;
  }

}


/* Mobile */

@media(max-width:576px){

  .cta{
    padding:55px 20px;
  }

  .cta h2{
    font-size:28px;
  }

  .cta p{
    font-size:16px;
  }

  .cta-btn{
    display:block;
    width:90%;
    margin:12px auto;
    font-size:16px;
  }


  .clients h2{
    font-size:28px;
    margin-bottom:30px;
  }

  .logo-track img{
    height:50px;
    margin:0 20px;
  }

}

/* =========================
   Footer Section
========================= */

footer{
  background:#04112e;
  color:#fff;
  text-align:center;
  padding:50px 8%;
}


/* Logo */

.footer-logo{
  font-size:40px;
  font-weight:700;
  margin-bottom:12px;
}

.footer-logo .dam{
  color:#ffffff;
}

.footer-logo .care{
  color:#d4a017;
}


/* Tagline */

.footer-tagline{
  font-size:20px;
  color:#f4f4f4;
  margin-bottom:25px;
  font-weight:500;
}


/* Address */

.footer-address{
  line-height:1.9;
  margin-bottom:30px;
  color:#d6d6d6;
  font-size:16px;
}

.footer-address p{
  margin:6px 0;
}


/* Copyright */

.copyright{
  border-top:1px solid rgba(255,255,255,0.15);
  padding-top:18px;
  font-size:14px;
  color:#bdbdbd;
}


/* Hover Effect */

.footer-address p:hover{
  color:#d4a017;
  transition:.3s;
}


/* Tablet Responsive */

@media(max-width:992px){

  footer{
    padding:45px 30px;
  }

  .footer-logo{
    font-size:36px;
  }

  .footer-tagline{
    font-size:18px;
  }

}


/* Mobile Responsive */

@media(max-width:576px){

  footer{
    padding:40px 20px;
  }

  .footer-logo{
    font-size:32px;
  }

  .footer-tagline{
    font-size:16px;
  }

  .footer-address{
    font-size:14px;
    line-height:1.7;
  }

  .copyright{
    font-size:13px;
  }

}
/* Responsive */
@media (max-width: 992px){

  .hero{
    flex-direction:column;
  }

  .hero-text{
    padding:40px 24px;
  }

  .hero h1{
    font-size:40px;
  }

  .hero-image{
    width:100%;
    border-radius:0;
    height:320px;
  }

  .service-box{
    grid-template-columns:1fr;
  }

  .product-cards{
    grid-template-columns:1fr;
  }

  .header{
    padding:16px 20px;
    flex-direction:column;
    gap:14px;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  }
}


/* Hero animation */
.hero-text{
  animation: slideLeft 1s ease;
}

.hero-image{
  animation: slideRight 1s ease;
}

@keyframes slideLeft{
  from{
    opacity:0;
    transform:translateX(-60px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes slideRight{
  from{
    opacity:0;
    transform:translateX(60px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

/* =========================
   Floating WhatsApp Button
========================= */

.whatsapp{
  position:fixed;
  bottom:25px;
  right:25px;

  width:65px;
  height:65px;

  background:#25D366;
  color:#fff;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:32px;
  text-decoration:none;

  box-shadow:0 8px 25px rgba(0,0,0,0.3);

  z-index:9999;

  transition:.35s ease;

  animation:pulse 2s infinite;
}


.whatsapp:hover{
  transform:scale(1.15);
  background:#20ba5a;
}


/* Floating Animation */

@keyframes pulse{

  0%{
    box-shadow:0 0 0 0 rgba(37,211,102,.6);
  }

  70%{
    box-shadow:0 0 0 18px rgba(37,211,102,0);
  }

  100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }

}


/* Tablet */

@media(max-width:992px){

  .whatsapp{
    width:60px;
    height:60px;
    right:20px;
    bottom:20px;
    font-size:28px;
  }

}


/* Mobile */

@media(max-width:576px){

  .whatsapp{
    width:55px;
    height:55px;
    right:18px;
    bottom:18px;
    font-size:26px;
  }

}

/* =========================
   About Section
========================= */

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  padding:100px 8%;
  background:#fff;
}


/* Image */

.about-image{
  width:100%;
}

.about-image img{
  width:100%;
  height:100%;
  max-height:550px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:0 15px 35px rgba(0,0,0,.12);
  transition:.4s ease;
}


.about-image img:hover{
  transform:scale(1.03);
}


/* Tag */

.about-tag{
  display:inline-block;
  background:#c58a2b;
  color:#fff;

  padding:10px 22px;
  border-radius:50px;

  font-weight:700;
  letter-spacing:.5px;

  margin-bottom:20px;
}


/* Content */

.about-content h2{
  font-size:44px;
  line-height:1.2;

  color:#071a45;

  margin-bottom:25px;
}


.about-content p{
  color:#555;

  font-size:17px;
  line-height:1.8;

  margin-bottom:18px;
}


/* Features */

.about-features{
  margin:35px 0;
}


.feature{
  display:flex;
  align-items:flex-start;

  gap:18px;

  margin-bottom:22px;
}


.feature span{

  width:38px;
  height:38px;

  background:#071a45;
  color:#fff;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:bold;

  flex-shrink:0;

  transition:.3s;
}


.feature:hover span{
  background:#c58a2b;
}


.feature h4{
  color:#071a45;

  font-size:19px;

  margin-bottom:5px;
}


.feature p{
  margin:0;

  font-size:15px;
  color:#666;
}


/* Button */

.about-btn{

  display:inline-block;

  background:#071a45;
  color:#fff;

  padding:15px 32px;

  border-radius:50px;

  text-decoration:none;

  font-weight:700;

  transition:.35s ease;
}


.about-btn:hover{

  background:#c58a2b;

  transform:translateY(-4px);

  box-shadow:0 10px 25px rgba(0,0,0,.15);
}



/* =========================
   Tablet Responsive
========================= */

@media(max-width:992px){

  .about{

    grid-template-columns:1fr;

    gap:40px;

    padding:80px 40px;

  }


  .about-image img{

    max-height:450px;

  }


  .about-content h2{

    font-size:36px;

  }

}



/* =========================
   Mobile Responsive
========================= */

@media(max-width:576px){

  .about{

    padding:60px 20px;

  }


  .about-image img{

    border-radius:20px;

  }


  .about-tag{

    font-size:14px;

    padding:8px 18px;

  }


  .about-content h2{

    font-size:30px;

  }


  .about-content p{

    font-size:16px;

  }


  .feature{

    gap:12px;

  }


  .feature span{

    width:32px;
    height:32px;

  }


  .about-btn{

    width:100%;

    text-align:center;

  }

}

/* =========================
   Videos Section
========================= */

.videos{
  padding:90px 8%;
  background:#f8f8f8;
}


/* Video Grid */

.video-grid{

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:30px;

}


/* Video Card */

.video-card{

  background:#fff;

  border-radius:24px;

  overflow:hidden;

  box-shadow:0 10px 30px rgba(0,0,0,.08);

  transition:.35s ease;

}


.video-card:hover{

  transform:translateY(-10px);

  box-shadow:0 18px 40px rgba(0,0,0,.15);

}



/* Video */

.video-card video,
.video-card iframe{

  width:100%;

  height:260px;

  object-fit:cover;

  display:block;

}



/* Title */

.video-card h3{

  padding:20px;

  color:#071a45;

  font-size:21px;

  font-weight:700;

  text-align:center;

}



/* Play Hover Effect */

.video-card video{

  cursor:pointer;

}



/* =========================
   Tablet Responsive
========================= */

@media(max-width:992px){

  .videos{

    padding:70px 40px;

  }


  .video-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

  }


  .video-card video,
  .video-card iframe{

    height:240px;

  }

}



/* =========================
   Mobile Responsive
========================= */

@media(max-width:576px){

  .videos{

    padding:60px 20px;

  }


  .video-grid{

    grid-template-columns:1fr;

  }


  .video-card{

    border-radius:18px;

  }


  .video-card video,
  .video-card iframe{

    height:220px;

  }


  .video-card h3{

    font-size:18px;

    padding:16px;

  }

}

/* ===== Products Section Animation ===== */

/* Section title animation */
.products .section-title{
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

/* Product cards animation */
.product-cards .card{
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.product-cards .card.show{
  opacity: 1;
  transform: translateY(0);
}

/* Delay for each card */
.product-cards .card:nth-child(1){
  animation-delay: 0.2s;
}

.product-cards .card:nth-child(2){
  animation-delay: 0.5s;
}

.product-cards .card:nth-child(3){
  animation-delay: 0.8s;
}

/* Hover effect */
.product-cards .card:hover{
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 35px rgba(0,0,0,0.18);
}

/* Glow effect on headings */
.product-cards .card h3{
  transition: color 0.3s ease;
}

.product-cards .card:hover h3{
  color: #c58a2b;
}

/* Keyframes */
@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(40px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardUp{
  from{
    opacity: 0;
    transform: translateY(50px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

