* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary-color: #52a660;
    --secondary-color: #b8312f;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 0.75rem 1rem;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Logo */
.navbar-brand img {
    height: 50px;
}

/* Buttons */
.btn-nav {
    border-radius: 50px;
    font-weight: 700;
    padding: 0.5rem 1.4rem;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    margin-left: 8px;
    white-space: nowrap;
}

.btn-call {
    background-color: var(--secondary-color);
}
.btn-call:hover {
    background-color: #9c2723;
}


.btn-get {
    background-color: #448f4e;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 35px;
    height: 35px;
    background-size: 100% 100%;
    filter: brightness(0) invert(1);
     transform: translateY(-35px); /* move up */
}




/* Mobile adjustments */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px;
    }

    .btn-nav {
        padding: 0.4rem 0.9rem;
        font-size: 14px;
        margin-left: 4px;
    }




}


/* ===== PURE WHITE CAROUSEL ARROWS ===== */
/* ===== PURE WHITE CAROUSEL ARROWS ===== */
.carousel-control-prev-icons,
.carousel-control-next-icons{
    background-image: none !important;
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.carousel-control-prev-icons::before{
    content: "❮";
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
        margin-top: 10px;
   
}

.carousel-control-next-icons::before{
    content: "❯";
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
        margin-top: 10px;
    
}

.carousel-control-prev,
.carousel-control-next{
    background: transparent !important;
    opacity: 1;
    filter: brightness(0) invert(1);
}


/* Desktop spacing */
body {
    padding-top: 73px;
}

/* CAROUSEL */

.carousel-item {
           /* SAME VISUAL SIZE */
  min-height: 500px;
  position: relative;
  overflow: hidden;

  /* GPU FIX */
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* GPU FIX */
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* =========================
   OVERLAY
========================= */

.carousel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;

  background: linear-gradient(
    to bottom,
    rgba(56, 56, 56, 0.95),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0)
  );

  will-change: opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.carousel-indicators {
  bottom: 20px; /* adjust vertical position */
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;        /* 🔴 makes it a dot */
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 6px;
  border: none;
  opacity: 1;
}

/* Active dot */
.carousel-indicators .active {
  background-color: #52a660; /* your highlight color */
  width: 12px;
  height: 12px;
}

/* =========================
   CAPTION
========================= */

.carousel-caption {
  position: absolute;
  bottom: 49%;
  left: 8%;
  z-index: 2;
  text-align: left;
  max-width: 800px;
}

.carousel-caption h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
}

.carousel-caption p {
  font-size: 1.4rem;
  color: #fff;
}

/* =========================
   BUTTONS
========================= */

.btn-carousel {
  padding: 14px 34px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  margin-right: 12px;
}

.btn-carousel-primary {
  background: #fff;
  color: #000;
}

/* =========================
   TEXT HIGHLIGHT
========================= */

.highlight {
  color: #52a660;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .carousel-caption h1 {
    font-size: 3.5rem;
  }

  .carousel-caption p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    height: 70vh;
    min-height: 420px;
  }

  .carousel-caption {
    bottom: 8%;
    left: 5%;
    right: 5%;
    max-width: 100%;
  }

  .carousel-caption h1 {
    font-size: 2.8rem;
  }

  .carousel-caption p {
    font-size: 1.1rem;
  }

  .btn-carousel {
    padding: 12px 26px;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 40vh;
    min-height: 380px;
  }

  .carousel-caption {
    bottom: 35%;
    left: 15%;
    right: 5%;
  }

  .carousel-caption h1 {
    font-size: 36px;
  }

  .carousel-caption p {
    font-size: 10px;
  }

  .btn-carousel {
    font-size: 10px;
    padding: 8px;
  }
}

/****************/

/* FEATURES */
/* Feature Card */
.feature-card {
  padding: 20px;
  text-align: center;
}

/* Icon Wrapper */
.icon-wrapper {
  width: 120px;
  height: 120px;
  
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Icon Image */
.icon-wrapper img {
 
    width: 115px;
    height: 94px;
    object-fit: contain;
    animation: zoomPulse 2.5s ease-in-out infinite;
}


/* Title */
.feature-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

/* Pulse Animation */
@keyframes zoomPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

/* Mobile Spacing */
@media (max-width: 768px) {
  .feature-card {
    margin-bottom: 20px;
  }
}
/* STATS */
.achievements-section {
    background: #2e3248;; /* Dark navy background */

}

.achievement-item {
    color: #fff;
}

.icon-wrap {
    width: 70px;
    height: 70px;
    background: #fdd30b; /* Yellow circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-wrap img {
    width: 35px;
    filter: invert(0);
}

.achievement-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.achievement-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* OFFERS */
.offer-section{
    padding-bottom :50px;
}

.offer-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:55px;
    margin-top: 33px;
}

.offer-title{
    font-size:38px;
    font-weight:700;
}

.btn-quote{
    background: #b74045;
    color:#fff;
    padding:14px 36px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    border:none;
    transition:.3s;
}

.btn-quote:hover{
    background:#e14a4a;
    transform:translateY(-2px);
}





.card-head{
    display:flex;
    align-items:center;
    margin-bottom:22px;
}

.card-icon{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#fff1f1;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:14px;
}

.card-icon i{
    font-size:20px;
    color:#f45b5b;
}

.card-title{
    font-size:19px;
    font-weight:600;
    margin:0;
}

.offer-list{
    list-style:none;
    padding:0;
    margin:0;
}

.offer-list li{
    display:flex;
    align-items:flex-start;
    font-size:14.5px;
    line-height:1.7;
    margin-bottom:12px;
    color:#444;
}

.offer-list li i{
    color:#f45b5b;
    margin-right:10px;
    font-size:16px;
    margin-top:3px;
}

@media(max-width:768px){
    .offer-header{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .offer-card{
    background:#fff;
    border-radius:16px;
    padding:30px 28px;
    height:100%;
    position: relative !important;
        left: 51px !important;
        top: -40px;
    transition:.35s ease;
}
}

/* GUIDE */
.guide-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 20px;
}

.guide-container {
    
    overflow: hidden;
   
}

.image-section,
.content-section {
    height: 80%;
}

.image-section {
    background: #fff;
    padding: 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-section {
    background: linear-gradient(135deg, #f9e5b8 0%, #f4d79f 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-section h1 {
    color: #2d2640;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-section p {
    color: #4a4a4a;
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.download-btn {
    background: linear-gradient(135deg, #af3b4e 0%,  #b8312f 100%);
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(232, 93, 117, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    width:250px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 93, 117, 0.5);
    background: linear-gradient(135deg, #e63950 0%, #d32f46 100%);
    text-decoration: none;
    color: white;
}

.download-btn:active {
    transform: translateY(0);
}

.download-icon {
    font-size: 1.3rem;
}

@media (max-width: 991px) {
    .content-section {
        padding: 50px 40px;
    }
    .content-section h1 {
        font-size: 2.5rem;
    }
    .image-section {
        min-height: 350px;
    }

 .guide-section{
        margin-top: -46px;


            margin-bottom: -82px;
 }


}

@media (max-width: 767px) {
    .content-section {
        padding: 40px 30px;
    }
    .content-section h1 {
        font-size: 2rem;
    }
    .content-section p {
        font-size: 1rem;
    }
    .download-btn {
                padding: 7px 88px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
        white-space: nowrap;
    
    }
    .image-section {
        min-height: 300px;
    }
}

@media (max-width: 575px) {
    .guide-container {
        border-radius: 16px;
    }
    .content-section h1 {
        font-size: 1.75rem;
    }
    .image-section {
        min-height: 250px;
    }
}

/* ========== TESTIMONIAL SECTION ========== */
.test_testimonial-section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: visible !important;
   
}

/* Add extra space on sides for buttons */
@media (min-width: 1200px) {
    .test_testimonial-section {
        padding: 100px 60px;
    }
}

.test_testimonial-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.test_testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.test_section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.test_section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    
}

.test_section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.test_carousel-container {
    position: relative;
    padding: 0 90px;
    z-index: 1;
    overflow: visible;
}

.swiper {
    width: 100%;
    padding: 20px 0 40px;
    overflow: visible;
}

.test_testimonial-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 450px;
}

.test_testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.test_video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.test_video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.test_testimonial-card:hover .test_video-thumbnail {
    transform: scale(1.05);
}

.test_play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.test_play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.test_play-button svg {
    width: 30px;
    height: 30px;
    fill: var(--accent-color);
    margin-left: 4px;
    position: relative;
    z-index: 1;
}

.test_testimonial-card:hover .test_play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-color);
}

.test_testimonial-card:hover .test_play-button svg {
    fill: var(--white);
}

.test_card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    color: var(--white);
    z-index: 2;
}

.test_customer-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.test_customer-location {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 300;
}

.test_customer-location svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    fill: var(--accent-color);
}

.swiper-button-prev,
.swiper-button-next {
    width: 55px;
    height: 55px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    animation: rotateCircle 3s linear infinite;
    z-index: 10;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--accent-color);
    transform: scale(1.05);
    animation-play-state: paused;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    transition: color 0.3s ease;
    display: inline-block;
    animation: rotateCounterCircle 3s linear infinite;
}

@keyframes rotateCounterCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: var(--white);
    animation-play-state: paused;
}

.swiper-button-prev {
    left: -80px;
}

.swiper-button-next {
    right: -80px;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-light);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .test_carousel-container {
        padding: 0 90px;
    }
    .test_testimonial-card {
        height: 400px;
    }
    .swiper-button-prev {
        left: -80px;
    }
    .swiper-button-next {
        right: -80px;
    }
}

@media (max-width: 768px) {
    .test_testimonial-section {
        padding: 7px 15px;
    }
    .test_section-header {
        margin-bottom: 50px;
    }
    .test_carousel-container {
        padding: 0 60px;
    }
    .test_testimonial-card {
        height: 380px;
    }
    .test_play-button {
        width: 65px;
        height: 65px;
    }
    .test_play-button svg {
        width: 25px;
        height: 25px;
    }
    .swiper-button-prev,
    .swiper-button-next {
        width: 45px;
        height: 45px;
    }
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 16px;
    }
    .swiper-button-prev {
        left: -50px;
    }
    .swiper-button-next {
        right: -50px;
    }
}

@media (max-width: 480px) {
    .test_carousel-container {
        padding: 0 10px;
    }
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    .test_testimonial-card {
        height: 350px;
    }
    .test_card-info {
        padding: 20px 18px;
    }
    .test_customer-name {
        font-size: 1.1rem;
    }
    .test_customer-location {
        font-size: 0.85rem;
    }
}

/* Video Modal */
.test_video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.test_video-modal.test_active {
    display: flex;
}

.test_video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.test_close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.test_close-modal:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: rotate(90deg);
}

.test_video-modal iframe {
    width: 100%;
    height: 100%;
}
/* video finished */

/* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color:white;
        }

        .accordion-button {
            background-color: #fff;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .accordion-button:not(.collapsed) {
            background-color:  #ad383d;
            color: #fff;
        }

        .accordion-button:focus {
            box-shadow: none;
        }
/* faq finished */

:root {
            --primary-color: #2c3e50;
            --accent-color: #e74c3c;
            --text-light: #7f8c8d;
            --overlay-color: rgba(0, 0, 0, 0.4);
        }
       

        
        .container-custom {
           
            margin: 0 auto;
            padding: -1px 20px;
        }
        
        /* Header Styles */
        .header-section {
            margin-bottom: 50px;
            position: relative;
        }
        
        .header-section::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), transparent);
        }
        
        .header-section h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
            letter-spacing: -1px;
        }
        
        .header-section p {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 300;
            margin-bottom: 20px;
        }
        
        .view-all {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .view-all:hover {
            gap: 12px;
            color: #c0392b;
        }
        
        .view-all::after {
            content: '→';
            font-size: 1.2rem;
        }
        
        /* Grid Layout - Desktop */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 250px;
            gap: 20px;
        }
        
        
            .gallery-item {
        width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;       /* ✅ ADDED - Ensure proper block display */
}
        
        
        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
            opacity: 0.6;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .gallery-item:hover::before {
            opacity: 0.8;
        }
        
        .gallery-label {
            position: absolute;
            bottom: 20px;
            left: 25px;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            z-index: 2;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        /* Desktop Grid Item Sizes */
        .gallery-item:nth-child(1) {
            grid-column: 1;
            grid-row: 1 / 3;
        }
        
        .gallery-item:nth-child(2) {
            grid-column: 2;
            grid-row: 1;
        }
        
        .gallery-item:nth-child(3) {
            grid-column: 3;
            grid-row: 1;
        }
        
        .gallery-item:nth-child(4) {
            grid-column: 2;
            grid-row: 2;
        }
        
        .gallery-item:nth-child(5) {
            grid-column: 3;
            grid-row: 2;
        }
        
        .gallery-item:nth-child(6) {
            grid-column: 1 / 3;
            grid-row: 3;
        }
        
        .gallery-item:nth-child(7) {
            grid-column: 3;
            grid-row: 3;
        }
        
        /* GLightbox Custom Styles */
        .glightbox-clean .gslide-description {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
        }
        
        /* Navigation Buttons - Desktop */
        .glightbox-clean .gprev,
        .glightbox-clean .gnext,
        .glightbox-clean .gclose {
            background: rgba(255, 255, 255, 0.15) !important;
            backdrop-filter: blur(10px) !important;
            border: 1px solid rgba(255, 255, 255, 0.3) !important;
            transition: all 0.3s ease !important;
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        .glightbox-clean .gprev:hover,
        .glightbox-clean .gnext:hover,
        .glightbox-clean .gclose:hover {
            background: rgba(255, 255, 255, 0.25) !important;
            transform: scale(1.1);
        }
        
        /* FORCE BUTTONS TO SHOW - CRITICAL */
        .glightbox-clean .gprev,
        .glightbox-clean .gnext {
            width: 60px !important;
            height: 60px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            z-index: 999999 !important;
            position: fixed !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            pointer-events: auto !important;
        }
        
        .glightbox-clean .gprev {
            left: 30px !important;
        }
        
        .glightbox-clean .gnext {
            right: 30px !important;
        }
        
        .glightbox-clean .gclose {
            top: 30px !important;
            right: 30px !important;
            width: 50px !important;
            height: 50px !important;
            position: fixed !important;
            z-index: 999999 !important;
        }
        
        /* Force SVG icons to show */
        .glightbox-clean .gprev svg,
        .glightbox-clean .gnext svg,
        .glightbox-clean .gclose svg {
            width: 24px !important;
            height: 24px !important;
            fill: white !important;
            stroke: white !important;
        }
        
        /* Hide ALL Scrollbars in GLightbox */
        .glightbox-container,
        .glightbox-container *,
        .gslide,
        .gslide-inner-content,
        .gslide-image,
        .gslide-image img,
        .gslide-media,
        .ginner-container,
        .gslide-inline,
        .gslide-external {
            scrollbar-width: none !important;
            -ms-overflow-style: none !important;
            overflow: hidden !important;
        }
        
        .glightbox-container::-webkit-scrollbar,
        .glightbox-container *::-webkit-scrollbar,
        .gslide::-webkit-scrollbar,
        .gslide-inner-content::-webkit-scrollbar,
        .gslide-image::-webkit-scrollbar,
        .gslide-image img::-webkit-scrollbar,
        .gslide-media::-webkit-scrollbar,
        .ginner-container::-webkit-scrollbar,
        .gslide-inline::-webkit-scrollbar,
        .gslide-external::-webkit-scrollbar {
            display: none !important;
            width: 0 !important;
            height: 0 !important;
            background: transparent !important;
        }
        
        .gslide-image {
            overflow: hidden !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            max-width: 100vw !important;
            max-height: 100vh !important;
        }
        
        .gslide-inner-content {
            overflow: hidden !important;
            /* max-width: 100% !important;
            max-height: 100% !important; */
        }
        
        .gslide-image img {
            max-width: 800px !important;
            max-height: 800px !important;
            /* width: auto !important;
            height: auto !important;
            object-fit: contain !important;
            display: block !important;
            overflow: hidden !important; */
        }
        
        /* Extra override for stubborn scrollbars */
        .gslide {
            overflow: hidden !important;
        }
        
        .ginner-container {
            overflow: hidden !important;
        }
        
        /* Hide browser scrollbar */
        body.glightbox-open {
            overflow: hidden !important;
        }
        
        body.glightbox-open::-webkit-scrollbar {
            display: none !important;
        }
        
        /* Nuclear option - hide ALL scrollbars everywhere in lightbox */
        .glightbox-container * {
            overflow-x: hidden !important;
            overflow-y: hidden !important;
        }
        
        .glightbox-container img {
            overflow: hidden !important;
        }
        
        /* ============================================
           TABLET RESPONSIVE (768px - 1024px)
           ============================================ */
        @media (max-width: 1024px) {
            .container-custom {
                padding: 30px 15px;
            }
            
            .header-section h1 {
                font-size: 2.8rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 220px;
                gap: 15px;
            }
            
            /* Tablet Grid Layout */
            .gallery-item:nth-child(1) {
                grid-column: 1 / 3;
                grid-row: 1;
            }
            
            .gallery-item:nth-child(2) {
                grid-column: 1;
                grid-row: 2;
            }
            
            .gallery-item:nth-child(3) {
                grid-column: 2;
                grid-row: 2;
            }
            
            .gallery-item:nth-child(4) {
                grid-column: 1;
                grid-row: 3;
            }
            
            .gallery-item:nth-child(5) {
                grid-column: 2;
                grid-row: 3;
            }
            
            .gallery-item:nth-child(6) {
                grid-column: 1 / 3;
                grid-row: 4;
            }
            
            .gallery-item:nth-child(7) {
                grid-column: 1 / 3;
                grid-row: 5;
            }
            
            /* Tablet Lightbox */
            .gslide-image img {
                max-width: 52% !important;
                max-height: 48vh !important;
            }
            
            .glightbox-clean .gprev,
            .glightbox-clean .gnext {
                width: 50px !important;
                height: 50px !important;
            }
            
            .glightbox-clean .gprev {
                left: 20px !important;
            }
            
            .glightbox-clean .gnext {
                right: 20px !important;
            }
        }
        
        /* ============================================
           MOBILE RESPONSIVE (Below 768px)
           ============================================ */
        @media (max-width: 768px) {
            .container-custom {
                padding: 25px 12px;
            }
            
            .header-section {
                margin-bottom: 30px;
            }
            
            .header-section h1 {
                font-size: 2rem;
                line-height: 1.2;
            }
            
            .header-section p {
                font-size: 1rem;
                margin-bottom: 15px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 220px;
                gap: 15px;
            }
            
            /* Mobile Grid - Single Column */
            .gallery-item {
                grid-column: 1 !important;
                grid-row: auto !important;
            }
            
            .gallery-label {
                font-size: 1.1rem;
                bottom: 15px;
                left: 20px;
            }
            
            /* MOBILE LIGHTBOX NAVIGATION - FORCE SHOW */
            .glightbox-clean .gprev,
            .glightbox-clean .gnext {
                width: 55px !important;
                height: 55px !important;
                background: rgba(255, 255, 255, 0.25) !important;
                display: flex !important;
                opacity: 1 !important;
                visibility: visible !important;
                position: fixed !important;
                top: 50% !important;
                transform: translateY(-50%) !important;
                border: 2px solid rgba(255, 255, 255, 0.4) !important;
                border-radius: 50% !important;
                z-index: 999999 !important;
                pointer-events: auto !important;
            }
            
            .glightbox-clean .gprev {
                left: 15px !important;
            }
            
            .glightbox-clean .gnext {
                right: 15px !important;
            }
            
            .glightbox-clean .gclose {
                top: 15px !important;
                right: 15px !important;
                width: 45px !important;
                height: 45px !important;
                position: fixed !important;
                z-index: 999999 !important;
            }
            
            .glightbox-clean .gprev svg,
            .glightbox-clean .gnext svg,
            .glightbox-clean .gclose svg {
                width: 26px !important;
                height: 26px !important;
                fill: white !important;
                stroke: white !important;
                stroke-width: 2px !important;
            }
            
            .gslide-image img {
                max-width: 100% !important;
                max-height: 44vh !important;
            }
        }
        
        /* ============================================
           SMALL MOBILE (Below 480px)
           ============================================ */
        @media (max-width: 480px) {
            .container-custom {
                padding: 20px 10px;
            }
            
            .header-section h1 {
                font-size: 1.75rem;
            }
            
            .header-section p {
                font-size: 0.95rem;
            }
            
            .gallery-grid {
                grid-auto-rows: 200px;
                gap: 12px;
            }
            
            .gallery-item {
                border-radius: 15px;
            }
            
            .gallery-label {
                font-size: 1rem;
                bottom: 12px;
                left: 15px;
            }
            
            /* SMALL MOBILE NAVIGATION - EXTRA VISIBLE */
            .glightbox-clean .gprev,
            .glightbox-clean .gnext {
                width: 50px !important;
                height: 50px !important;
                font-size: 22px !important;
                background: rgba(255, 255, 255, 0.3) !important;
                border: 2px solid rgba(255, 255, 255, 0.5) !important;
                border-radius: 50% !important;
                display: flex !important;
                opacity: 1 !important;
                visibility: visible !important;
                position: fixed !important;
                top: 50% !important;
                transform: translateY(-50%) !important;
                z-index: 999999 !important;
                pointer-events: auto !important;
            }
            
            .glightbox-clean .gprev {
                left: 10px !important;
            }
            
            .glightbox-clean .gnext {
                right: 10px !important;
            }
            
            .glightbox-clean .gclose {
                top: 10px !important;
                right: 10px !important;
                width: 42px !important;
                height: 42px !important;
                position: fixed !important;
                z-index: 999999 !important;
            }
            
            .glightbox-clean .gprev svg,
            .glightbox-clean .gnext svg {
                width: 28px !important;
                height: 28px !important;
                fill: white !important;
                stroke: white !important;
                stroke-width: 2px !important;
            }
            
            .gslide-image img {
                max-width: 100% !important;
                max-height: 40vh !important;
            }
        }
        
        /* Loading Animation */
        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            background-size: 1000px 100%;
            animation: shimmer 2s infinite;
            pointer-events: none;
            opacity: 0;
            z-index: 3;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        /* Touch device optimization */
        @media (hover: none) and (pointer: coarse) {
            .gallery-item:hover {
                transform: none;
            }
            
            .gallery-item:hover img {
                transform: scale(1.05);
            }
        }
/* gallery finished */

/* test testimonal */
.testimonial-section {
    margin-left:50px;
    margin-right:50px;

}


/* Testimonial Card */
.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin: 20px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Quote box */
.quote-box {
    position: absolute;
    top: -20px;
    left: -10px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(6deg);
    transition: 0.3s;
}

.testimonial-card:hover .quote-box {
    transform: rotate(0deg);
}

/* Author section */
.author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #e2e8f0;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

/* CTA */
.cta-box {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    padding: 18px;
    background: rgba(255,255,255,0.6);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    backdrop-filter: blur(18px);
}

.avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -12px;
}

.btn-gradient {
    background: linear-gradient(to right, #f59e0b, #f97316);
    color: #fff;
    border-radius: 14px;
    font-weight: 500;
}

.btn-gradient:hover {
    opacity: 0.9;
}
.star{
    height:20px;
    width:20px;
}


/* ============================= */
/* RESPONSIVE FIXES */
/* ============================= */

@media (max-width: 1200px) {
    .testimonial-section {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 992px) {
    .testimonial-card {
        margin: 10px;
        padding: 22px;
    }
}

@media (max-width: 768px) {

    .testimonial-section {
        margin-left: 15px;
        margin-right: 15px;
    }

    .testimonial-card {
        padding: 20px;
        border-radius: 20px;
    }

    .quote-box {
        width: 42px;
        height: 42px;
        top: -15px;
        left: -8px;
    }

    .author {
        flex-direction: column;
        text-align: center;
        padding-top: 15px;
    }

    .author-img {
        width: 55px;
        height: 55px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .avatars img {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {

    .testimonial-card {
        padding: 18px;
        border-radius: 18px;
    }

    .content {
        font-size: 14px;
        line-height: 1.6;
    }

    .author h5 {
        font-size: 16px;
    }

    .cta-box {
        padding: 15px;
    }

    .btn-gradient {
        width: 100%;
    }
}
/* text testimonal */

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .main-heading {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 60px;
           
            
            
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .icon-wrapper {
            flex-shrink: 0;
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .icon-wrapper svg {
            width: 100%;
            height: 100%;
        }
        
        .service-content h3 {
            font-size: 20px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .service-content p {
            font-size: 14px;
            font-weight: 400;
            color: #666;
            line-height: 1.6;
        }
        
        .cta-button-wrapper {
            text-align: center;
            margin-top: 40px;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #b8312f 0%, #8b2422 100%);
            color: white;
            font-size: 20px;
            font-weight: 600;
            padding: 18px 50px;
            border-radius: 8px;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(184, 49, 47, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(184, 49, 47, 0.4);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .main-heading {
                font-size: 36px;
                margin-bottom: 40px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .icon-wrapper {
                width: 80px;
                height: 80px;
            }
            
            .service-content h3 {
                font-size: 18px;
            }
            
            .service-content p {
                font-size: 13px;
            }
            
            .cta-button {
                font-size: 18px;
                padding: 16px 40px;
            }
        }
        
        @media (max-width: 480px) {
           
            
            .main-heading {
                font-size: 28px;
            }
            
            .service-item {
                gap: 15px;
            }
            
            .icon-wrapper {
                width: 70px;
                height: 70px;
            }
            
            .cta-button {
                font-size: 16px;
                padding: 14px 35px;
                margin-top: -29px;
            }
            #faq-text{
        margin-top: -70px;
    text-align: center;

}
.modal-content{
        padding: 20px 29px -2px;
}
        }
        /* what we get */
 

/* popup finished */
/*whatapp Floating */
.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform .3s ease, box-shadow .3s ease;
        text-decoration: none;
}

.whatsapp-float:hover{
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    color:#fff;
}




/***********/


/* Footer Base */
.main-footer{
  background: linear-gradient(135deg,#0e0e0e,#1a1a1a);
  color:#b0b0b0;
  border-top:4px solid #eb595f;
}

/* Titles */
.footer-title,
.main-footer h4{
  color:#fff;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:1.05rem;
  margin-bottom:1.5rem;
  text-align: left;
}
.footer-title p{
    justify-content: left;
}

.brand-accent{ color:#eb595f; }

/* Quote Button */
.btn-quote{
  background:#eb595f;
  color:#fff!important;
  font-size:.8rem;
  font-weight:700;
  padding:12px 20px;
  border:1px solid #eb595f;
  border-radius:0;
  letter-spacing:1.5px;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  transition:.4s;
  text-decoration:none;
  position: relative;
  left:-71px;
}

.btn-quote:hover{
  background:transparent;
  color:#eb595f!important;
  transform:translateY(-3px);
}

/* Social Icons */
.footer-social a{
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  border:1px solid #333;
  color:#999;
  margin-right:8px;
  transition:.3s;
  text-decoration:none;

}

.footer-social a:hover{
  background:#eb595f;
  color:#fff!important;
  border-color:#eb595f;
  transform:translateY(-3px);
}

/* Services */
.footer-links{
  list-style:none;
  padding:0;
}




.footer-links li{
  font-size:.9rem;
  margin-bottom:10px;
  transition:.3s;
}

.footer-links li:hover{
  color:#eb595f;
}

/* Contact */
.contact-info i{
  color:#eb595f;
  margin-right:10px;
}

.availability-badge{
  display:inline-block;
  margin-top:10px;
  padding:5px 12px;
  border:1px solid #eb595f;
  color:#eb595f;
  font-size:.75rem;
  background:rgba(235,89,95,.05);
      margin-left: -130px;
}

/* Gallery */
.footer-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}

.gallery-item1{
  aspect-ratio:1/1;
  overflow:hidden;
}

.gallery-item1 img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.7;
  transition:.4s;
}

.gallery-item1:hover img{
  opacity:1;
  transform:scale(1.1);
}

/* Bottom */
hr{ opacity:.1; margin:40px 0 25px; }

.footer-bottom-link{
  font-size:.8rem;
  color:#666;
  text-decoration:none;
}

.footer-bottom-link:hover{
  color:#eb595f;
}

.copyright{
  font-size:.8rem;
  color:#666;
}

/**********/


/* =======================
   RESPONSIVE GAP REDUCTION
======================= */
@media (max-width: 991px) {
    .clients-logos {
        gap: 1.8rem;
    }
}

@media (max-width: 576px) {
    .clients-logos {
        gap: 1.2rem;
    }

    .client-logo-item img {
        max-width: 110px;
        max-height: 40px;
    }
    /* filter button gap started */
    .filter-btns{
        margin-top: -26%;
    }

    /* our works */
 #work {
    position: relative;
    left: -2px;
    top: -15px;
}
}
/* client section finished */

/* popup start */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: #fff;
    width: 90%;
    max-width: 420px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    animation: fadeZoom 0.4s ease;
}

@keyframes fadeZoom {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: #f2f2f2;   /* light background */
    color: #333;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: #e0e0e0;  /* hover light gray */
    color: #000;
}






/*8gallery */
/* ===== Section ===== */
.container-custom {
    padding: 60px 15px;
    background: #f8f9fa;
}

.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.header-section h1 {
    font-weight: 700;
}

.header-section p {
    color: #666;
}

/* ===== Gallery Item ===== */
.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* ===== Bottom Text (Hidden initially) ===== */
.gallery-label {
    position: absolute;
    left: 0;
    bottom: -60px;              /* hidden */
    width: 100%;
    padding: 14px 10px;
    font-weight: 600;
    color: #fff;
    text-align: center;
   
    transition: bottom 0.35s ease;
    pointer-events: none;       /* IMPORTANT for mobile click */
}

/* ===== Hover Effect (TEXT ONLY) ===== */
.gallery-item:hover .gallery-label {
    bottom: 0;
}

/* ===== Mobile Fix ===== */
@media (max-width: 576px) {
    .gallery-item img {
        height: 220px;
    }
    
}

/* ===== Client Logo ===== */

.clients-section{
    background:#fff;
    padding:40px 0;           /* 🔽 reduced from 60 */
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    text-align:center;
}

.section-title{
    font-size:2.4rem;
    font-weight:700;
    margin-bottom:4px;        /* 🔽 reduced */
}

.section-subtitle{
    color:#666;
    margin-bottom:18px;       /* 🔽 reduced */
}

.clients-separator{
    width:70px;
    height:3px;
    background:#000;
    margin:0 auto 22px;       /* 🔽 reduced */
    border-radius:5px;
}

/* =====================
   LOGO WRAPPER
===================== */
.clients-wrapper{
    width:100%;
    overflow:hidden;
}

/* TRACK */
.clients-track{
    display:flex;
    align-items:center;
    gap:70px;                 /* 🔽 reduced */
    padding:18px 0;           /* 🔽 reduced top & bottom */
}

/* LOGO */
.client-logo{
    flex:0 0 auto;
    padding:12px;             /* 🔽 reduced */
}

.client-logo img{
    max-height:80px;          /* 🔽 slightly smaller */
    width:auto;
    transition:transform .4s ease;
    transform-origin:center;
}

/* ZOOM EFFECT */
.client-logo:hover img{
    transform:scale(1.18);
}

/* =====================
   DESKTOP
===================== */
@media (min-width:992px){
    .clients-track{
        justify-content:center;
        animation:none;
    }

    .client-logo:nth-child(n+3){
        display:none;
    }
}

/* =====================
   MOBILE
===================== */
@media (max-width:991.98px){
    .clients-section{
        padding:28px 0;       /* 🔽 mobile top gap reduced */
    }

    .section-title{
        font-size:1.9rem;
    }

    .clients-track{
        gap:55px;             /* 🔽 */
        padding:12px 0;       /* 🔽 */
        width:max-content;
        animation:logoScroll 14s linear infinite;
    }

    .client-logo{
        padding:8px;          /* 🔽 */
    }

    .client-logo img{
        max-height:70px;
    }
}

/* =====================
   MARQUEE
===================== */
@keyframes logoScroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}
/**************/



      /* FILTER BUTTONS */
.filter-btns{text-align:center;margin:30px 0}
.filter-btns button{
    border:1px solid #d80303;
    background:#fff;
    color:#1e1f1e;
    padding:8px 18px;
    margin:5px;
    font-weight:500;
    cursor:pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.filter-btns button.active,
.filter-btns button:hover{
    background:#d11212;
    color:#e2e2e2;
}

/* GALLERY */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    opacity: 0.6;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-box{display:block}
.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:4px;
    cursor: pointer;
}
.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}
.gallery-item:hover img{transform:scale(1.05)}

/* OVERLAY */
.gallery-overlay{
    position:absolute;
    inset:0;
   
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:25px;
    opacity:0;
    transition:.4s;
    z-index: 2;
}
 .gallery-overlay{opacity:1}

.gallery-overlay h5{font-size:18px;margin-bottom:5px}
.gallery-overlay p{font-size:14px;color:#c01515}

/* ARROW BUTTON */
.open-btn{
    position:absolute;
    top:20px;right:20px;
    width:45px;height:45px;
    background:#af0606;
    color:#f3f3f3;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    cursor:pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.open-btn:hover {
    background: #d11212;
    transform: scale(1.1);
}

/* GLIGHTBOX CUSTOMIZATION */
.glightbox-clean .gclose,
.glightbox-clean .gprev,
.glightbox-clean .gnext {
    background: #af0606 !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover {
    background: #d11212 !important;
}

.glightbox-clean .gclose {
    top: 20px !important;
    right: 20px !important;
}

.glightbox-clean .gprev {
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.glightbox-clean .gnext {
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* Main heading */
.main-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1f1e;
    margin-bottom: 1rem;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 576px) {
    .filter-btns{
        margin-top: 20px;
    }

    .filter-btns button {
        padding: 6px 12px;
        font-size: 14px;
    }

    .main-heading {
        font-size: 2rem;
    }

    .gallery-item img {
        height: 220px;
    }

    /* Force navigation buttons to show on mobile */
    .glightbox-clean .gclose {
        top: 10px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .glightbox-clean .gprev,
    .glightbox-clean .gnext {
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .glightbox-clean .gprev {
        left: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .glightbox-clean .gnext {
        right: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    /* Ensure buttons are always on top */
    .glightbox-clean .gclose,
    .glightbox-clean .gprev,
    .glightbox-clean .gnext {
        z-index: 99999 !important;
    }
    .clients-section{
            margin-top: 33px;
    }
   
}

/* Gallery image zoom effect */
.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
}

.gallery-item img {
    
    transition: transform 0.5s ease;
}

/* Zoom on hover */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Keep overlay above image */

/* filter finished */


/*model popup */

/***********model form */
/* ===== POPUP ===== */
.modal-overlay{
    position:fixed;
    inset:0;
   
    display:none;
    justify-content:center;
    align-items:center;
   
}
.modal-overlay.active{ display:flex; }

.modal-container{
    background:#fff;
    width:90%;
    max-width:420px;
    border-radius:6px;
    overflow:hidden;
    position:relative;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.close-btn{
    position:absolute;
    top:12px;
    right:12px;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#fff;
    border:none;
    font-size:20px;
    cursor:pointer;
    box-shadow:0 2px 6px rgba(0,0,0,0.25);
}

/* IMAGE */
.modal-image{
    width:100%;
    height:180px;
    object-fit:cover;
}

/* CONTENT */
.modal-content{ padding:25px; }

.modal-title{
    text-align:center;
    font-size:22px;
    margin-bottom:6px;
}

.modal-subtitle{
    text-align:center;
    font-size:13px;
    color:#666;
    margin-bottom:20px;
}

.form-group{ margin-bottom:14px; }

.form-group input,
.form-group textarea{
    width:100%;
    padding:10px;
    border:1px solid #ddd;
    background:#f9f9f9;
    font-size:14px;
}

/* 🔴 INPUT ERROR */
.form-group input.error{
    border-color:red;
    background:#fff5f5;
}

/* 🔴 ERROR MESSAGE */
.error-msg{
    color:red;
    font-size:12px;
    margin-top:4px;
    display:none;
}

textarea{
    resize:vertical;
    min-height:70px;
}

/* BUTTON */
.submit-btn{
    width:100%;
    padding:12px;
    background:#b86f50;
    color:#fff;
    border:none;
    font-weight:bold;
    cursor:pointer;
}

.submit-btn:hover{
    background:#a05d42;
}
/* popup finished */


/*Contact Field */
.enquiry-area{padding:60px 0;background:#f6f6f6;}
.enquiry-header{text-align:center;margin-bottom:40px;}
.enquiry-header h2{font-size:36px;font-weight:700;}
.enquiry-info{font-size:15px;color:#444;margin-top:6px;}
.enquiry-info i{color:#e71c24;margin-right:8px;}

.map-area{height:420px;border-radius:16px;overflow:hidden;}
.map-area iframe{width:100%;height:100%;border:0;}
.enquiry-info a {
    color: #000 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.enquiry-info a:hover {
    color: #4dc96c !important;
}


.form-area{
    background:#fff;
    padding:30px;
    border-radius:16px;
    height:420px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: solid 1px;

}
.form-title{font-weight:600;margin-bottom:20px;}
.input-line{
    border:none;
    border-bottom:2px solid #ddd;
    border-radius:0;
}
.input-line:focus{box-shadow:none;border-color:#e71c24;}
.send-btn{background:#ad383d;color:#fff;padding:12px;border:none;}
.send-btn:hover{background:#c4161d;}
.error-text{color:red;font-size:13px;}

@media(max-width:991px){
    .map-area,.form-area{min-height:300px;margin-bottom:25px;}
}

/****************/

/* our benefits  */

#cen-ben{
    position: relative;
    left: 487px;
}
/* footer contact us  */
.enquiry-info a {
    color: #7e7a7a !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.enquiry-info a:hover {
    color: #4dc96c !important;
}


/*******************/


/* SECTION */
.showcase-section{
    background:#f5ebe6;
    padding:50px 0;
}

/* CARD */
.item-card{
    text-align:center;
    transition:.4s;
}
.item-card:hover{ transform:translateY(-8px); }

/* IMAGE */
.image-wrapper{
    border:2px solid #c9a581;
    padding:12px;
    overflow:hidden;
}
.image-wrapper img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}
.item-card:hover img{ transform:scale(1.08); }

/* TITLE */
.item-name{
    margin-top:15px;
    font-weight:500;
    color:#5a5a5a;
}

/* HIDE EXTRA LIGHTBOX IMAGES */
.hidden-lightbox{
    display:none;
}

/* CAROUSEL ARROWS */
.carousel-control-prev,
.carousel-control-next{
    width:45px;
    height:45px;
    background:#d17a4f;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
}
.carousel-control-prev{ left:15px; }
.carousel-control-next{ right:15px; }
.carousel-control-prev-icon,
.carousel-control-next-icon{
    filter:invert(1);
}

/* BUTTON */
#free{
    margin-top:10px;
    display:inline-block;
    background:#d17a4f;
    color:#fff;
    padding:12px 30px;
    text-decoration:none;
}