
        *{
            margin:0;
            padding:0;
            box-sizing:border-box;
        }

        body{
            font-family: 'Poppins', sans-serif;
        }

        /* TOP HEADER */

        .top-header{
            background:#0b5d2a;
            padding:10px 0;
            overflow:hidden;
            border-bottom:2px solid #ffc107;
        }

        .contact-wrap{
            display:flex;
            align-items:center;
            gap:25px;
            flex-wrap:wrap;
        }

        .contact-item{
            display:flex;
            align-items:center;
            gap:10px;
            color:#ffffff;
            text-decoration:none;
            font-size:19px;
            font-weight:500;
            transition:0.3s;
        }

        .contact-item:hover{
            color:#ffd54f;
        }

        .contact-item i{
            font-size:22px;
            color:#ffd54f;
        }

        /* MARQUEE */

        .marquee-box{
            background: #d4af37;
            padding:10px 25px;
            border-radius:40px 0 0 40px;
            border-left:3px solid #ffffff;
        }

        .marquee-box marquee{
            color:#1b1b1b;
            font-size:18px;
            font-weight:600;
            letter-spacing:0.3px;
        }

        /* RESPONSIVE */

        @media(max-width:991px){

            .top-header .row{
                row-gap:12px;
            }

            .contact-wrap{
                justify-content:center;
            }

            .marquee-box{
                border-radius:30px;
            }
        }

        @media(max-width:576px){

            .contact-wrap{
                gap:15px;
                justify-content:center;
            }

            .contact-item{
                font-size:15px;
            }

            .contact-item i{
                font-size:18px;
            }

            .marquee-box{
                padding:8px 15px;
            }

            .marquee-box marquee{
                font-size:14px;
            }
        }
/* MAIN SECTION */

    .top-banner{
      background:#efefef;
      padding:12px 20px;
      border-bottom:3px solid #0b5d2a;
    }

    .banner-wrapper{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
    }

    /* LEFT BOX */

    .left-box{
      display:flex;
      align-items:center;
      gap:18px;
      flex:1;
      min-width:280px;
    }

    .left-logo img{
      width:130px;
    }

    .left-content h2{
      font-size:40px;
      font-weight:900;
      color:#0b5d2a;
      line-height:1;
      margin-top:8px;
    }

    .tag-line{
      display:flex;
      align-items:center;
      gap:10px;
      background:#111;
      padding:4px 15px;
      width:fit-content;
    }

    .tag-line span{
      color:#d4af37;
      font-size:18px;
      font-weight:700;
      letter-spacing:1px;
    }

    .tag-line i{
      color:#d4af37;
      font-size:16px;
    }

    /* CENTER BOX */

    .center-box{
      text-align:center;
      flex:1;
      min-width:280px;
    }

    .center-box h3{
      font-size:20px;
      font-weight:700;
      color:#111;
      margin-bottom:10px;
    }

    .customers{
      background:#0b5d2a;
      color:#fff;
      display:inline-block;
      padding:8px 25px;
      border-radius:40px;
      font-size:22px;
      font-weight:700;
      margin-bottom:8px;
    }

    .center-box h4{
      font-size:23px;
      font-weight:700;
      color:#111;
      margin-bottom:5px;
    }

    .services{
      background:#0b5d2a;
      color:#fff;
      padding:8px 12px;
      font-size:15px;
      font-weight:600;
      display:inline-block;
    }

    /* RIGHT BOX */

    .right-box{
      flex:1;
      min-width:280px;
      text-align:center;
    }

    .right-box h3{
      font-size:20px;
      font-weight:700;
      color:#111;
      margin-bottom:8px;
    }

    .solution-box{
      background:#d4af37;
      display:inline-block;
      padding:5px 15px;
      font-size:20px;
      font-weight:700;
      margin-bottom:10px;
    }

    .phone{
      font-size:48px;
      font-weight:900;
      color:#0b5d2a;
      line-height:1;
      margin-bottom:10px;
    }

    .question-box{
      background:#d4af37;
      display:inline-block;
      padding:6px 14px;
      font-size:15px;
      font-weight:700;
    }

    /* RESPONSIVE */

    @media(max-width:1200px){

      .left-content h2{
        font-size:50px;
      }

      .phone{
        font-size:45px;
      }
    }

    @media(max-width:991px){

      .banner-wrapper{
        flex-direction:column;
        text-align:center;
      }

      .left-box{
        justify-content:center;
      }

      .tag-line{
        margin:auto;
      }

      .left-content h2{
        font-size:42px;
      }

      .phone{
        font-size:38px;
      }
    }

    @media(max-width:576px){

      .top-banner{
        padding:15px 10px;
      }

      .left-logo img{
        width:80px;
      }

      .left-content h2{
        font-size:27px;
      }

      .tag-line span{
        font-size:13px;
      }

      .center-box h3,
      .center-box h4,
      .right-box h3{
        font-size:14px;
      }

      .customers,
      .services,
      .solution-box,
      .question-box{
        font-size:10px;
      }

      .phone{
        font-size:28px;
      }
    }
.top-marquee{
        background:#0b5d2a;
        padding:12px 0;
        overflow:hidden;
        border-top:2px solid #d4af37;
        border-bottom:2px solid #d4af37;
    }

    .top-marquee marquee{
        color:#ffffff;
        font-size:20px;
        font-weight:600;
        letter-spacing:0.5px;
        font-family:Arial, sans-serif;
    }

    /* MOBILE RESPONSIVE */

    @media(max-width:768px){

        .top-marquee{
            padding:10px 0;
        }

        .top-marquee marquee{
            font-size:16px;
        }
    }

    @media(max-width:576px){

        .top-marquee marquee{
            font-size:14px;
        }
    }
	
  /* SLIDER SECTION */

    .custom-slider{
      width:100%;
      overflow:hidden;
      position:relative;
    }

    .slides{
      display:flex;
      width:200%;
      animation:sliderMove 10s infinite;
    }

    .slide{
      width:50%;
      flex-shrink:0;
    }

    .slide img{
      width:100%;
      display:block;
    }

    /* CUTTING SLIDE EFFECT */

    @keyframes sliderMove{

      0%{
        transform:translateX(0%);
      }

      40%{
        transform:translateX(0%);
      }

      50%{
        transform:translateX(-50%);
      }

      90%{
        transform:translateX(-50%);
      }

      100%{
        transform:translateX(0%);
      }
    }

    /* MOBILE */

    @media(max-width:768px){

      .slide img{
        height:180px;
        object-fit:cover;
      }
    }

    @media(max-width:576px){

      .slide img{
        height:120px;
        object-fit:cover;
      }
    }
 /* CTA SECTION */

    .cta-section{
        background:linear-gradient(90deg, #0b5d2a, #0f7a3c);
        padding:45px 0;
        position:relative;
        overflow:hidden;
    }

    .cta-section::before{
        content:'';
        position:absolute;
        width:250px;
        height:250px;
        background:rgba(255,255,255,0.05);
        border-radius:50%;
        top:-80px;
        left:-80px;
    }

    .cta-content h2{
        color:#ffffff;
        font-size:42px;
        font-weight:700;
        margin-bottom:15px;
    }

    .cta-content p{
        color:#f1f1f1;
        font-size:18px;
        line-height:1.7;
        margin:0;
    }

    /* BUTTONS */

    .cta-buttons{
        display:flex;
        gap:15px;
        justify-content:flex-end;
        flex-wrap:wrap;
    }

    .call-btn,
    .whatsapp-btn{
        padding:14px 28px;
        border-radius:50px;
        text-decoration:none;
        font-size:18px;
        font-weight:600;
        transition:0.3s;
        display:inline-flex;
        align-items:center;
        gap:10px;
    }

    .call-btn{
        background:#d4af37;
        color:#111;
    }

    .call-btn:hover{
        background:#d4af37;
        color:#0b5d2a;
    }

    .whatsapp-btn{
        background:#ffffff;
        color:#0b5d2a;
    }

    .whatsapp-btn:hover{
        background:#d4af37;
        color:#111;
    }

    /* RESPONSIVE */

    @media(max-width:991px){

        .cta-content{
            text-align:center;
            margin-bottom:25px;
        }

        .cta-buttons{
            justify-content:center;
        }

        .cta-content h2{
            font-size:34px;
        }
    }

    @media(max-width:576px){

        .cta-section{
            padding:35px 15px;
        }

        .cta-content h2{
            font-size:26px;
        }

        .cta-content p{
            font-size:15px;
        }

        .call-btn,
        .whatsapp-btn{
            width:100%;
            justify-content:center;
            font-size:16px;
            padding:12px 20px;
        }
    }
/* SECTION */

    .services-section{
      padding:50px 0;
      background:#f8f8f8;
    }

    .section-title{
      text-align:center;
      margin-bottom:55px;
    }

    .section-title h2{
      font-size:48px;
      color:#0b5d2a;
      font-weight:800;
      margin-bottom:15px;
    }

    .section-title p{
      font-size:18px;
      color:#444;
      max-width:700px;
      margin:auto;
      line-height:1.8;
    }

    /* SERVICE CARD */

    .service-card{
      background:#fff;
      border-radius:25px;
      overflow:hidden;
      position:relative;
      transition:0.4s;
      height:100%;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
      border:2px solid transparent;
    }

    .service-card:hover{
      transform:translateY(-10px);
      border-color:#d4af37;
    }

    /* IMAGE */

    .service-img{
      position:relative;
      overflow:hidden;
    }

    .service-img img{
      width:100%;
      height:250px;
      object-fit:cover;
      transition:0.5s;
    }

    .service-card:hover .service-img img{
      transform:scale(1.1);
    }

    /* CONTENT */

    .service-content{
      padding:30px 25px;
      text-align:center;
      position:relative;
    }

    .service-icon{
      width:75px;
      height:75px;
      background:#0b5d2a;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      margin:-65px auto 20px;
      border:5px solid #fff;
      position:relative;
      z-index:10;
    }

    .service-icon i{
      color:#d4af37;
      font-size:32px;
    }

    .service-content h3{
      font-size:26px;
      font-weight:700;
      color:#0b5d2a;
      margin-bottom:15px;
    }

    .service-content p{
      color:#000;
      font-size:16px;
      line-height:1.8;
      margin-bottom:25px;
    }

    /* BUTTON */

    .service-btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:#0b5d2a;
      color:#fff;
      padding:12px 28px;
      border-radius:50px;
      text-decoration:none;
      font-size:16px;
      font-weight:600;
      transition:0.3s;
    }

    .service-btn:hover{
      background:#d4af37;
      color:#111;
    }

    /* RESPONSIVE */

    @media(max-width:991px){

      .section-title h2{
        font-size:38px;
      }

      .service-content h3{
        font-size:22px;
      }
    }

    @media(max-width:576px){

      .services-section{
        padding:60px 0;
      }

      .section-title h2{
        font-size:28px;
      }

      .section-title p{
        font-size:15px;
      }

      .service-img img{
        height:220px;
      }

      .service-content{
        padding:25px 18px;
      }

      .service-content h3{
        font-size:20px;
      }

      .service-content p{
        font-size:14px;
      }

      .service-btn{
        width:100%;
        justify-content:center;
      }
    }	
 /* ABOUT SECTION */

    .about-section{
        padding:50px 0;
        background:linear-gradient(135deg, #0b5d2a, #06361a);
        position:relative;
        overflow:hidden;
    }

    .about-section::before{
        content:'';
        position:absolute;
        width:350px;
        height:350px;
        background:rgba(255,255,255,0.04);
        border-radius:50%;
        top:-100px;
        right:-100px;
    }

    /* IMAGE */

    .about-image{
        position:relative;
    }

    .about-image img{
        width:100%;
        border-radius:25px;
        box-shadow:0 15px 40px rgba(0,0,0,0.4);
    }

    .experience-box{
        position:absolute;
        bottom:-20px;
        left:20px;
        background:#d4af37;
        padding:18px 25px;
        border-radius:18px;
        text-align:center;
        box-shadow:0 10px 30px rgba(0,0,0,0.3);
    }

    .experience-box h3{
        font-size:36px;
        color:#111;
        margin:0;
        font-weight:800;
    }

    .experience-box span{
        color:#111;
        font-size:15px;
        font-weight:600;
    }

    /* CONTENT */

    .about-content{
        padding-left:30px;
    }

    .about-tag{
        background:#d4af37;
        color:#111;
        padding:8px 20px;
        border-radius:40px;
        font-size:15px;
        font-weight:700;
        display:inline-block;
        margin-bottom:20px;
    }

    .about-content h2{
        color:#d4af37;
        font-size:35px;
        line-height:1.3;
        font-weight:800;
        margin-bottom:20px;
    }

    .about-content p{
        color:#e7e7e7;
        font-size:17px;
        line-height:1.9;
        margin-bottom:20px;
    }
.about-content p strong{
        color:#d4af37;
        
    }
    /* FEATURES */

    .about-features{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:18px;
        margin-top:30px;
        margin-bottom:35px;
    }

    .feature-box{
        display:flex;
        align-items:center;
        gap:12px;
        background:rgba(255,255,255,0.08);
        padding:15px 18px;
        border-radius:15px;
        backdrop-filter:blur(6px);
    }

    .feature-box i{
        width:38px;
        height:38px;
        background:#d4af37;
        color:#111;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:15px;
    }

    .feature-box span{
        color:#fff;
        font-size:15px;
        font-weight:600;
    }

    /* BUTTONS */

    .about-buttons{
        display:flex;
        gap:15px;
        flex-wrap:wrap;
    }

    .about-call-btn,
    .about-whatsapp-btn{
        padding:14px 28px;
        border-radius:50px;
        text-decoration:none;
        font-size:16px;
        font-weight:700;
        transition:0.3s;
        display:inline-flex;
        align-items:center;
        gap:10px;
    }

    .about-call-btn{
        background:#d4af37;
        color:#111;
    }

    .about-call-btn:hover{
        background:#fff;
        color:#0b5d2a;
    }

    .about-whatsapp-btn{
        background:#fff;
        color:#0b5d2a;
    }

    .about-whatsapp-btn:hover{
        background:#d4af37;
        color:#111;
    }

    /* RESPONSIVE */

    @media(max-width:991px){

        .about-content{
            padding-left:0;
            margin-top:40px;
        }

        .about-content h2{
            font-size:36px;
        }
    }

    @media(max-width:767px){

        .about-section{
            padding:70px 0;
        }

        .about-content h2{
            font-size:28px;
        }

        .about-content p{
            font-size:15px;
        }

        .about-features{
            grid-template-columns:1fr;
        }

        .feature-box{
            padding:14px;
        }

        .about-call-btn,
        .about-whatsapp-btn{
            width:100%;
            justify-content:center;
        }

        .experience-box{
            padding:15px 20px;
        }

        .experience-box h3{
            font-size:28px;
        }
    }
/* SECTION */

    .why-choose-section{
        padding:50px 0;
        background:linear-gradient(135deg, #f8f8f8, #ffffff);
        position:relative;
        overflow:hidden;
    }

    .why-choose-section::before{
        content:'';
        position:absolute;
        width:300px;
        height:300px;
        background:rgba(11,93,42,0.05);
        border-radius:50%;
        top:-120px;
        right:-100px;
    }

    /* TITLE */

    .section-title{
        text-align:center;
        margin-bottom:60px;
    }

    .section-title span{
        background:#0b5d2a;
        color:#fff;
        padding:8px 22px;
        border-radius:40px;
        font-size:15px;
        font-weight:700;
        display:inline-block;
        margin-bottom:18px;
    }

    .section-title h2{
        font-size:48px;
        font-weight:800;
        color:#0b5d2a;
        margin-bottom:18px;
    }

    .section-title p{
        max-width:750px;
        margin:auto;
        color:#000;
        font-size:17px;
        line-height:1.9;
    }

    /* BOX */

    .choose-box{
        background:#fff;
        border-radius:25px;
        padding:40px 30px;
        text-align:center;
        transition:0.4s;
        position:relative;
        overflow:hidden;
        height:100%;
        box-shadow:0 10px 30px rgba(0,0,0,0.08);
        border-bottom:4px solid transparent;
    }

    .choose-box:hover{
        transform:translateY(-10px);
        border-color:#d4af37;
    }

    .choose-box::before{
        content:'';
        position:absolute;
        width:120px;
        height:120px;
        background:rgba(11,93,42,0.05);
        border-radius:50%;
        top:-40px;
        right:-40px;
    }

    /* ICON */

    .choose-icon{
        width:90px;
        height:90px;
        background:linear-gradient(135deg, #0b5d2a, #0f7a3c);
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        margin:0 auto 25px;
        position:relative;
        z-index:1;
    }

    .choose-icon i{
        color:#d4af37;
        font-size:38px;
    }

    /* CONTENT */

    .choose-box h3{
        font-size:26px;
        color:#0f7a3c;
        font-weight:700;
        margin-bottom:15px;
    }

    .choose-box p{
        color:#000;
        font-size:16px;
        line-height:1.8;
        margin:0;
    }

    /* RESPONSIVE */

    @media(max-width:991px){

        .section-title h2{
            font-size:38px;
        }

        .choose-box{
            padding:35px 25px;
        }
    }

    @media(max-width:767px){

        .why-choose-section{
            padding:70px 0;
        }

        .section-title{
            margin-bottom:45px;
        }

        .section-title h2{
            font-size:28px;
        }

        .section-title p{
            font-size:15px;
        }

        .choose-box h3{
            font-size:22px;
        }

        .choose-box p{
            font-size:14px;
        }

        .choose-icon{
            width:75px;
            height:75px;
        }

        .choose-icon i{
            font-size:30px;
        }
    }	
/* SECTION */

    .gallery-section{
      padding:50px 0;
      background:#fff;
      position:relative;
      overflow:hidden;
    }

    .gallery-section::before{
      content:'';
      position:absolute;
      width:350px;
      height:350px;
      background:rgba(11,93,42,0.05);
      border-radius:50%;
      top:-100px;
      left:-100px;
    }

    /* TITLE */

    .gallery-title{
      text-align:center;
      margin-bottom:60px;
      position:relative;
      z-index:2;
    }

    .gallery-title span{
      background:#d4af37;
      color:#111;
      padding:8px 22px;
      border-radius:40px;
      font-size:15px;
      font-weight:700;
      display:inline-block;
      margin-bottom:18px;
    }

    .gallery-title h2{
      color:#0b5d2a;
      font-size:50px;
      font-weight:800;
      margin-bottom:15px;
    }

    .gallery-title p{
      color:#000;
      max-width:700px;
      margin:auto;
      line-height:1.9;
      font-size:17px;
    }

    /* IMAGE CARD */

    .gallery-card{
      position:relative;
      overflow:hidden;
      border-radius:25px;
      height:320px;
      box-shadow:0 15px 40px rgba(0,0,0,0.3);
      transition:0.4s;
    }

    .gallery-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:0.6s;
    }

    .gallery-card:hover img{
      transform:scale(1.15) rotate(2deg);
    }

    /* OVERLAY */

    .gallery-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
      display:flex;
      align-items:flex-end;
      padding:25px;
      transition:0.4s;
    }

    .gallery-content{
      transform:translateY(40px);
      opacity:0;
      transition:0.4s;
    }

    .gallery-card:hover .gallery-content{
      transform:translateY(0);
      opacity:1;
    }

    .gallery-content h3{
      color:#fff;
      font-size:28px;
      font-weight:700;
      margin-bottom:10px;
    }

    .gallery-content p{
      color:#ddd;
      font-size:15px;
      line-height:1.7;
      margin-bottom:18px;
    }

    /* BUTTON */

    .gallery-btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:#d4af37;
      color:#111;
      padding:12px 22px;
      border-radius:40px;
      text-decoration:none;
      font-size:15px;
      font-weight:700;
      transition:0.3s;
    }

    .gallery-btn:hover{
      background:#fff;
      color:#0b5d2a;
    }

    /* RESPONSIVE */

    @media(max-width:991px){

      .gallery-title h2{
        font-size:40px;
      }

      .gallery-card{
        height:280px;
      }
    }

    @media(max-width:767px){

      .gallery-section{
        padding:70px 0;
      }

      .gallery-title{
        margin-bottom:40px;
      }

      .gallery-title h2{
        font-size:30px;
      }

      .gallery-title p{
        font-size:15px;
      }

      .gallery-card{
        height:240px;
      }

      .gallery-content h3{
        font-size:22px;
      }

      .gallery-content p{
        font-size:14px;
      }

      .gallery-btn{
        padding:10px 18px;
        font-size:14px;
      }
    }
/* GALLERY CONTENT ALWAYS VISIBLE */

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.25));
    display:flex;
    align-items:flex-end;
    padding:25px;
    transition:0.4s;
}

/* CONTENT DEFAULT VISIBLE */

.gallery-content{
    transform:translateY(0);
    opacity:1;
    transition:0.4s;
}

/* HOVER EFFECT */

.gallery-card:hover .gallery-content{
    transform:translateY(-8px);
}

.gallery-content h3{
    color:#d4af37;
    font-size:28px;
    font-weight:700;
    margin-bottom:10px;
}

.gallery-content p{
    color:#fff;
    font-size:15px;
    line-height:1.7;
    margin-bottom:18px;
}

/* BUTTON */

.gallery-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#d4af37;
    color:#111;
    padding:12px 22px;
    border-radius:40px;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    transition:0.3s;
}

.gallery-btn:hover{
    background:#fff;
    color:#0b5d2a;
}	
 /* SECTION */

    .feedback-section{
      padding:50px 0;
      background:#fff;
      position:relative;
      overflow:hidden;
    }

    .feedback-section::before{
      content:'';
      position:absolute;
      width:350px;
      height:350px;
      background:rgba(255,255,255,0.04);
      border-radius:50%;
      top:-120px;
      left:-120px;
    }

    /* TITLE */

    .feedback-title{
      text-align:center;
      margin-bottom:60px;
      position:relative;
      z-index:2;
    }

    .feedback-title span{
      background:#d4af37;
      color:#111;
      padding:8px 22px;
      border-radius:40px;
      font-size:15px;
      font-weight:700;
      display:inline-block;
      margin-bottom:18px;
    }

    .feedback-title h2{
      color:#0b5d2a;
      font-size:48px;
      font-weight:800;
      margin-bottom:15px;
    }

    .feedback-title p{
      color:#000;
      max-width:720px;
      margin:auto;
      line-height:1.9;
      font-size:17px;
    }

    /* CARD */

    .feedback-card{
      background:#0b5d2a;
      backdrop-filter:blur(10px);
      border-radius:25px;
      padding:35px 30px;
      position:relative;
      overflow:hidden;
      transition:0.4s;
      height:100%;
      border:1px solid rgba(255,255,255,0.1);
    }

    .feedback-card:hover{
      transform:translateY(-10px);
       
	 
    }

    /* QUOTE */

    .quote-icon{
      width:65px;
      height:65px;
      background:#d4af37;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:25px;
    }

    .quote-icon i{
      color:#111;
      font-size:28px;
    }

    /* TEXT */

    .feedback-card p{
      color:#f1f1f1;
      font-size:16px;
      line-height:1.9;
      margin-bottom:30px;
    }
 
    /* CLIENT INFO */

    .client-info{
      display:flex;
      align-items:center;
      gap:15px;
    }

    .client-info img{
      width:70px;
      height:70px;
      border-radius:50%;
      object-fit:cover;
      border:3px solid #d4af37;
    }

    .client-details h3{
      color:#fff;
      font-size:22px;
      margin-bottom:5px;
      font-weight:700;
    }

    .client-details span{
      color:#d4af37;
      font-size:15px;
      font-weight:600;
    }

    /* STARS */

    .stars{
      margin-top:10px;
    }

    .stars i{
      color:#ffd700;
      margin-right:3px;
      font-size:15px;
    }

    /* RESPONSIVE */

    @media(max-width:991px){

      .feedback-title h2{
        font-size:38px;
      }
    }

    @media(max-width:767px){

      .feedback-section{
        padding:70px 0;
      }

      .feedback-title{
        margin-bottom:40px;
      }

      .feedback-title h2{
        font-size:30px;
      }

      .feedback-title p{
        font-size:15px;
      }

      .feedback-card{
        padding:28px 22px;
      }

      .feedback-card p{
        font-size:14px;
      }

      .client-details h3{
        font-size:18px;
      }

      .client-details span{
        font-size:13px;
      }

      .client-info img{
        width:60px;
        height:60px;
      }
    }
 /* SECTION */

    .islamic-services{
        padding:90px 0;
        background:linear-gradient(135deg, #0b5d2a, #06361a);
        position:relative;
        overflow:hidden;
    }

    .islamic-services::before{
        content:'';
        position:absolute;
        width:350px;
        height:350px;
        background:rgba(255,255,255,0.04);
        border-radius:50%;
        top:-120px;
        right:-120px;
    }

    /* TITLE */

    .service-title{
        text-align:center;
        margin-bottom:60px;
        position:relative;
        z-index:2;
    }

    .service-title span{
        background:#d4af37;
        color:#111;
        padding:8px 22px;
        border-radius:40px;
        font-size:15px;
        font-weight:700;
        display:inline-block;
        margin-bottom:18px;
    }

    .service-title h2{
        color:#d4af37;
        font-size:48px;
        font-weight:800;
        margin-bottom:15px;
    }

    .service-title p{
        color:#fff;
        max-width:700px;
        margin:auto;
        line-height:1.9;
        font-size:17px;
    }

    /* BOX */

    .service-list-box{
        background:rgba(255,255,255,0.08);
        backdrop-filter:blur(10px);
        border-radius:25px;
        padding:35px 30px;
        height:100%;
        transition:0.4s;
        border:1px solid rgba(255,255,255,0.08);
    }

    .service-list-box:hover{
        transform:translateY(-10px);
        border-color:#d4af37;
    }

    .service-list-box h3{
        color:#d4af37;
        font-size:26px;
        font-weight:700;
        margin-bottom:25px;
        display:flex;
        align-items:center;
        gap:12px;
    }

    .service-list-box h3 i{
        color:#d4af37;
        font-size:28px;
    }

    /* LIST */

    .service-list-box ul{
        list-style:none;
        padding:0;
        margin:0;
    }

    .service-list-box ul li{
        margin-bottom:15px;
    }

    .service-list-box ul li a{
        color:#f1f1f1;
        text-decoration:none;
        font-size:16px;
        font-weight:500;
        display:flex;
        align-items:center;
        gap:12px;
        padding:14px 18px;
        background:rgba(255,255,255,0.05);
        border-radius:12px;
        transition:0.3s;
    }

    .service-list-box ul li a::before{
        content:'☪';
        color:#d4af37;
        font-size:18px;
    }

    .service-list-box ul li a:hover{
        background:#d4af37;
        color:#111;
        transform:translateX(8px);
    }

    /* RESPONSIVE */

    @media(max-width:991px){

        .service-title h2{
            font-size:38px;
        }
    }

    @media(max-width:767px){

        .islamic-services{
            padding:70px 0;
        }

        .service-title{
            margin-bottom:40px;
        }

        .service-title h2{
            font-size:30px;
        }

        .service-title p{
            font-size:15px;
        }

        .service-list-box{
            padding:28px 22px;
        }

        .service-list-box h3{
            font-size:22px;
        }

        .service-list-box ul li a{
            font-size:14px;
            padding:12px 15px;
        }
    }
/* FOOTER */

    .footer-section{
        background:linear-gradient(135deg, #052915, #0b5d2a);
        padding:80px 0 25px;
        position:relative;
        overflow:hidden;
    }

    .footer-section::before{
        content:'';
        position:absolute;
        width:350px;
        height:350px;
        background:rgba(255,255,255,0.03);
        border-radius:50%;
        top:-120px;
        right:-120px;
    }

    /* BOX */

    .footer-box{
        position:relative;
        z-index:2;
    }

    .footer-logo{
        color:#d4af37;
        font-size:36px;
        font-weight:800;
        margin-bottom:20px;
    }

    .footer-text{
        color:#ddd;
        font-size:16px;
        line-height:1.9;
        margin-bottom:25px;
    }

    /* HEADING */

    .footer-box h3{
        color:#fff;
        font-size:26px;
        font-weight:700;
        margin-bottom:25px;
        position:relative;
        padding-bottom:12px;
    }

    .footer-box h3::after{
        content:'';
        position:absolute;
        width:60px;
        height:3px;
        background:#d4af37;
        left:0;
        bottom:0;
    }

    /* LINKS */

    .footer-box ul{
        list-style:none;
        padding:0;
        margin:0;
    }

    .footer-box ul li{
        margin-bottom:15px;
    }

    .footer-box ul li a{
        color:#ddd;
        text-decoration:none;
        font-size:16px;
        transition:0.3s;
        display:inline-block;
    }

    .footer-box ul li a:hover{
        color:#d4af37;
        transform:translateX(6px);
    }

    /* SOCIAL */

    .footer-social{
        display:flex;
        gap:12px;
    }

    .footer-social a{
        width:45px;
        height:45px;
        background:rgba(255,255,255,0.08);
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        color:#fff;
        font-size:18px;
        transition:0.3s;
        text-decoration:none;
    }

    .footer-social a:hover{
        background:#d4af37;
        color:#111;
        transform:translateY(-5px);
    }

    /* CONTACT */

    .footer-contact{
        display:flex;
        flex-direction:column;
        gap:18px;
    }

    .footer-contact a{
        color:#ddd;
        text-decoration:none;
        font-size:16px;
        display:flex;
        align-items:center;
        gap:14px;
        transition:0.3s;
    }

    .footer-contact a i{
        color:#fff;
        font-size:18px;
        
    }
   
    .footer-contact a:hover{
        color:#fff;
        transform:translateX(6px);
    }

    /* BOTTOM */

    .footer-bottom{
        border-top:1px solid rgba(255,255,255,0.1);
        margin-top:60px;
        padding-top:25px;
        text-align:center;
        position:relative;
        z-index:2;
    }

    .footer-bottom p{
        color:#ccc;
        font-size:15px;
        margin:0;
    }

    /* RESPONSIVE */

    @media(max-width:991px){

        .footer-logo{
            font-size:30px;
        }

        .footer-box h3{
            font-size:22px;
        }
    }

    @media(max-width:767px){

        .footer-section{
            padding:65px 0 20px;
        }

        .footer-logo{
            font-size:26px;
        }

        .footer-text{
            font-size:14px;
        }

        .footer-box h3{
            font-size:20px;
        }

        .footer-box ul li a,
        .footer-contact a{
            font-size:14px;
        }

        .footer-social a{
            width:40px;
            height:40px;
            font-size:16px;
        }

        .footer-bottom{
            margin-top:40px;
        }

        .footer-bottom p{
            font-size:13px;
        }
    }
	.floating-btn {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
}

.call-btn1 {
    left: 20px;
}

.whatsapp-btn1 {
    right: 20px;
}

.floating-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    height: 60px;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: pulse 1.5s infinite;
    font-family: Arial, sans-serif;
}

.call-btn1 a {
    background: #e60000;
    width: 60px;
    padding: 0;
    border-radius: 50%;
    font-size: 28px;
}

.whatsapp-btn1 a {
    background: #25D366;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0,0,0,0);
    }
    100% {
        transform: scale(1);
    }
}