/*/////////////////////////// Banner section start ///////////////////////////////////*/

.banner-section .swiper {
    width: 100%;
    padding-top: 25px;
    padding-bottom: 80px;
    box-sizing: border-box;
}

.banner-section .swiper-slide {
    background: #fff;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    /* transform: scale(0.96); */
    transition: transform 0.8s ease, box-shadow 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    opacity: 0.6;
}

.banner-section .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.banner-section .swiper-slide img{
    width: 100%;
    object-fit: cover;
   border-radius: 50px;
}

.banner-section .swiper-slide video {
    height:630px;
    object-fit: cover;
    border-radius: 50px;
    width: 100%;
}
/* Overlay for non-active slides */
.banner-section .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* 💡 Black semi-transparent */
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* Remove overlay on active slide */
.banner-section .swiper-slide-active::before {
    opacity: 0;
    pointer-events: none;
}

.banner-section .swiper-pagination {
    padding-bottom: 30px;
}

.banner-section .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.6;
    width: 10px;
    height: 10px;
    margin: 0 4px;
}

.banner-section .swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
}

.banner-section .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    
}

.banner-section .video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: 0.3s ease;
}

.banner-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.banner-section .play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.banner-section .play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: rgba(0, 0, 0, 0.7);
}

@media(max-width:1440px){
    .banner-section .swiper-slide img,
.banner-section .swiper-slide video {
    height: 570px;
}
}

@media (max-width: 1024px) {
    .banner-section .swiper {
        height: auto;
        padding: 10px;
    }
    .banner-section .swiper-slide {
        border-radius: 30px;
    }
    .banner-section .swiper-pagination {
    position: static;
    padding: 16px 0 0; 
    text-align: center;
  }
   .banner-section .swiper-slide img,
  .banner-section .swiper-slide video {
    height: auto;
    aspect-ratio: 16/8; 
    /*border-radius: 30px;*/
    
  }
}
/* If browser doesn't support aspect-ratio */
@supports not (aspect-ratio: 16/9) {
  @media (max-width: 1024px) {
    .banner-section .video-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 ratio */
    }
    .banner-section .video-container video,
    .banner-section .video-container img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
  }
}


@media (max-width: 767px) {
    .banner-section .swiper {
        height: 100%;
        padding: 10px;
    }
        .banner-section .swiper-slide {
        border-radius: 20px;
        object-fit: cover;
    }

    .banner-section .swiper-pagination {
    position: static;
    padding: 16px 0 0; 
    text-align: center;
  }
    .banner-section .swiper-slide img,
.banner-section .swiper-slide video {
    height:100%;
    border-radius: 20px;
}
}

/*///////////////////ABOUT SECTION START/////////////////////////*/

.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-section .about-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.about-section .about-left {
    flex: 1 1 40%;
}

.about-section .about-right {
    flex: 1 1 55%;
}

.about-section .sub-heading {
    font-size: 22px;
    font-weight: 500;
    color: #676565;
    margin-bottom: 15px;
}

.about-section .main-heading {
    font-size: 42px;
    font-weight: bold;
    color: #000;
    line-height: 1.3;
}

.about-section .orange-color {
    color: #d84518;
}

.about-section .para-text {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-top: 10px;
}

.about-section .about-btn {
    margin-top: 25px;
    padding: 10px 26px;
    font-size: 16px;
    background-color: #d84518;
    color: white;
    border: none;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-section .about-btn:hover {
    background-color: #b23611;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 69, 24, 0.25);
}

.about-btn i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .about-section {
        padding: 50px 10px;
    }

    .about-section .about-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .about-section .about-left,
    .about-section .about-right {
        flex: 1 1 100%;
    }

    .about-section .main-heading {
        font-size: 30px;
    }

    .about-section .about-btn {
        font-size: 15px;
    }
}

/*//////////////// COUNTER SECTION ///////////////////*/
.counter-section {
    background-color: #f6f6f6;
    padding: 40px 0px;
}

.counter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.counter-box {
    flex: 1 1 18%;
    min-width: 120px;
    max-width: 18%;
    padding: 20px 10px;
    position: relative;
    opacity: 0;
    text-align: center;
    transform: translateX(-60px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    will-change: transform, opacity;
}

.counter-box.animate {
    opacity: 1;
    transform: translateX(0);
}

.counter-box:hover .counter {
    color: #d84518;
}

.counter {
    font-size: 45px;
    font-weight: bold;
    color: #000;
    margin: 0;
    transition: color 0.3s ease;
}

.counter-sub {
    font-size: 15px;
    color: #555;
    font-weight: normal;
    margin-top: 10px;
}

/* Desktop */
@media (min-width: 992px) {
    .counter-box {
        flex: 1 1 18%;
        max-width: 18%;
    }
    

    .counter-box:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background-color: #ddd;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .counter-box {
        flex: 1 1 calc(33.333% - 10px);
        max-width: calc(33.333% - 0px);
    }
    .counter-row{
        gap:10px;
    }

}

/* Mobile */
@media (max-width: 767px) {
    .counter {
        font-size: 30px;
    }

    .counter-row{
        gap:5px;
    }

    .counter-box {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .counter-box:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background-color: #ddd;
    }
}

/*//////////////////gallery section start/////////////////////////*/

.thumbs-gallery-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.mainGallery {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.mainGallery .swiper-slide {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.mainGallery .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.mainGallery .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.3;
    transform: scale(0.95);
}

.mainGallery .swiper-slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    height: 40%; /* Adjust height as needed */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

    height: 40%;
    /* Adjust height as needed */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);

    z-index: 1;
    border-radius: 0 0 20px 20px;
}

.mainGallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Pure block ek link */
.main-slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.thumbs-gallery-section  .main-slide-text {
  position: absolute;
  bottom: 35px;
  left: 50px;
  right: 30px;
  display: flex;
  justify-content: space-between; /* text left, icon right */
  align-items: center; 
  gap: 20px;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  animation: fadeInUp 1s ease forwards;
}

.thumbs-gallery-section  .main-slide-text .text-content {
  display: flex;
  flex-direction: column; /* h3 ke niche p */
  align-items: flex-start;
  max-width: 550px;
}

.thumbs-gallery-section  .slide-arrow-icon {
  font-size: 40px;
  min-width: 40px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.thumbs-gallery-section  .main-slide-link:hover .slide-arrow-icon {
  transform: scale(1.1);
  color: #f9c100;
}

.thumbs-gallery-section  .main-slide-text h3 {
  font-size: 30px;
  margin-bottom: 5px;
  font-weight: bold;
}

.thumbs-gallery-section  .main-slide-text p {
  font-size: 16px;
  max-width: 550px;
  font-weight: bold;
  margin: 0;
}




.thumbsGallery .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.5s ease;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    filter: grayscale(100%);
    opacity: 0;
    transform: translateX(-40px);
}

.thumbs-gallery-section .swiper-paginationthumbsGallery{
    text-align: center;
    padding-top: 20px;
}


.swiper-paginationthumbsGallery .swiper-pagination-bullet {
  background-color: #d3d3d3;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  transition: background-color 0.3s;
  border-radius: 50%;
}


.swiper-paginationthumbsGallery .swiper-pagination-bullet-active {
  background-color: #000;
}



.thumbsGallery.animate .swiper-slide {
    animation: slideThumbsIn 0.8s ease forwards;
}

.thumbsGallery.animate .swiper-slide:nth-child(1) {
    animation-delay: 0.3s;
}

.thumbsGallery.animate .swiper-slide:nth-child(2) {
    animation-delay: 0.5s;
}

.thumbsGallery.animate .swiper-slide:nth-child(3) {
    animation-delay: 0.7s;
}

.thumbsGallery.animate .swiper-slide:nth-child(4) {
    animation-delay: 0.9s;
}

.thumbsGallery.animate .swiper-slide:nth-child(5) {
    animation-delay: 1.1s;
}

.thumbsGallery.animate .swiper-slide:nth-child(6) {
    animation-delay: 1.3s;
}

.thumbsGallery.animate .swiper-slide:nth-child(7) {
    animation-delay: 1.5s;
}

@keyframes slideThumbsIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.thumbsGallery .swiper-slide-thumb-active {
    border: 3px solid #fff;
    filter: none;
}

.thumbsGallery .swiper-slide h4 {
    z-index: 2;
    position: relative;
    margin: 0;
}

.thumbsGallery .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    z-index: 1;
}

@media (max-width: 991px) {
    .thumbsGallery .swiper-slide {
        font-size: 13px;
        height: 100px;
    }
    .main-slide-text{
        left:30px;
    }
        .swiper-button-next {
        font-size: 35px;
        top: 85%;
        left: 90%;
    }
}

@media (max-width: 767px) {
    .thumbs-gallery-section {
        padding: 30px 10px;
    }

    .thumbs-gallery-section .sub-heading {
        font-size: 16px;
    }

    .mainGallery img {
        object-fit: cover;
        height: 300px;
    }

    .thumbs-gallery-section .main-slide-text{
        left:10px;
    }
    .thumbs-gallery-section .main-slide-text h3{
        font-size:20px;
    }
     .thumbs-gallery-section .main-slide-text p{
        font-size:14px;
    }

    .thumbsGallery .swiper-slide {
        font-size: 12px;
        height: 80px;
    }
    .mainGallery .swiper-slide::after {
        height:80%;
}

}

/* ================================
   ONGOING PROJECTS SECTION STYLES

   /* Ongoing Projects Section */
.ongoing-projects {
    background: #fff;
    padding: 60px 20px;
}

.ongoing-projects .main-heading {
    color: #000;
}

/* Slide Wrapper */
.ongoing-projects .slide-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* Image Section Styling */
.ongoing-projects .image-section {
    position: relative;
    padding-left: 30px;
    /* enough space for left blur image */
    /* display: flex; */
    align-items: center;
    justify-content: flex-start;
}

/* Blurred Background Image (left behind) */
.ongoing-projects .blurred-img {
    position: absolute;
    top: 30px;
    left: 0;
    width: 90%;
    height: 85%;
    filter: blur(5px);
    opacity: 0.5;
    object-fit: cover;
    z-index: 1;
    transform: translateX(-20px) scale(0.95);
}

/* Main Image on Top */
.ongoing-projects .main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    padding-left: 50px;
    position: relative;
    z-index: 2;
}

/* Content Box */
.ongoing-projects .content-section .content-box {
    background-color: #f9f9f9;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ongoing-projects .content-box .main-heading {
    margin-bottom: 10px;
    color: #000;
    font-size: 32px;
}

.ongoing-projects .content-box .main-heading span {
    color: #e4572e;
}

.ongoing-projects .content-box p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
}

/* Arrow Button Style */
.ongoing-projects .arrow-btn {

  align-self: flex-end;
  border: 1px solid black;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  font-size: 1.2rem;
  color: #e4572e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

    align-self: flex-end;
    border: 1px solid black;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #e4572e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.ongoing-projects .arrow-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.ongoing-projects .swiper-pagination {
    position: relative; 
    margin-top: 20px;   
    text-align: center;
    bottom: auto;     
}

.ongoing-projects .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.6;
    width: 12px;
    height: 12px;
    margin: 0 6px;
}

.ongoing-projects .swiper-pagination-bullet-active {
    background: #e4572e;
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .ongoing-projects {
        padding: 40px 10px;
    }

    .ongoing-projects .slide-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .ongoing-projects .image-section {
        padding-left: 0;
        justify-content: center;
    }

    .ongoing-projects .blurred-img {
        display: none;
    }

    .ongoing-projects .main-img {
        height: auto;
        padding-left: 0px;
    }

    .ongoing-projects .content-box {
        padding: 20px;
    }

    .ongoing-projects .arrow-btn {
        align-self: center;
    }

    .ongoing-projects .main-heading {
        font-size: 28px;
    }

    .ongoing-projects .content-box .main-heading span {
        font-size: 1.6rem;
    }
}



/*////////////////////upcoming projects//////////////////////////////////*/
.upcoming-projects {
    background: #fff;
    padding: 60px 20px;
}

.upcoming-projects .main-heading {
    color: #000;
}

.upcoming-projects .slide-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}


.upcoming-projects .image-section {
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: flex-start;
}

.upcoming-projects .img-box {
    position: relative;
    display: inline-block;
}

.upcoming-projects .main-img {
    width: 90%;
    height: 450px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.upcoming-projects .blurred-img {
    position: absolute;
    top: 30px;
    right: -40px;
    /* ✅ brings it just next to main image */
    width: 94%;
    height: 85%;
    filter: blur(5px);
    opacity: 0.5;
    object-fit: cover;
    z-index: 1;
    transform: scale(0.96);
}


.upcoming-projects .content-section .content-box {
    background-color: #f9f9f9;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.upcoming-projects .content-box .main-heading {
    margin-bottom: 10px;
    color: #000;
    font-size: 32px;
}

.upcoming-projects .content-box .main-heading span {
    color: #e4572e;
}

.upcoming-projects .content-box p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
}

.upcoming-projects .arrow-btn {

  align-self: flex-start;
  border: 1px solid black;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #e4572e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

    align-self: flex-start;
    border: 1px solid black;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #e4572e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.upcoming-projects .arrow-btn:hover {
    transform: translateX(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.upcoming-projects .swiper-pagination {
    position: relative;
    margin-top: 20px; /* distance below slides */
    text-align: center;
    bottom: auto;
}

.upcoming-projects .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.6;
    width: 12px;
    height: 12px;
    margin: 0 6px;
}

.upcoming-projects .swiper-pagination-bullet-active {
    background: #e4572e;
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .upcoming-projects {
        padding: 40px 10px;
        overflow-x: hidden;
    }

    .upcoming-projects .swiper-slide {
        width: 100% !important;
        max-width: 100%;
    }

    .upcoming-projects .slide-wrapper {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin: 0 auto;
    }

    .upcoming-projects .image-section {
        padding: 0;
        justify-content: center;
        width: 100%;
    }

    .upcoming-projects .img-box {
        width: 100%;
        text-align: center;
    }

    .upcoming-projects .main-img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }

    .upcoming-projects .blurred-img {
        display: none;
    }

    .upcoming-projects .content-section {
        width: 100%;
    }

    .upcoming-projects .content-box {
        padding: 20px;
        box-sizing: border-box;
    }

    .upcoming-projects .main-heading {
        font-size: 26px;
        line-height: 1.3;
    }

    .upcoming-projects .content-box .main-heading span {
        font-size: 1.4rem;
    }

    .upcoming-projects .arrow-btn {
        align-self: center;
    }
}




.glimpses-slider {
    background: #fff;
    padding: 80px 0;
    perspective: 1200px;
}

.glimpses-slider .main-heading.animate-heading {
    animation: fadeSlideUp 1s ease forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav .animate-icon {
    animation: scaleFade 0.6s ease-in-out;
}

@keyframes scaleFade {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.glimpses-slider .slider-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.glimpses-slider .slider-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.glimpses-slider .nav-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    color: #bbb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.glimpses-slider .nav-icon.active {
    background: #e6531d;
    color: #fff;
    transform: scale(1.1);
}

.glimpses-slider .glimpsesSwiper {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.glimpses-slider .swiper-slide {
    display: flex;
    height: 100%;
}

.glimpses-slider .slide-box {
    display: flex;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: diagonalIn 1s ease forwards;
}

@keyframes diagonalIn {
    0% {
        opacity: 0;
        transform: translate(-100px, 100px) rotateX(-90deg);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) rotateX(0deg);
    }
}

.glimpses-slider .slide-left,
.glimpses-slider .slide-right {
    width: 50%;
    height: 100%;
    transition: transform 0.7s ease;
    backface-visibility: hidden;
}

.glimpses-slider .slide-left {
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:30px;
    align-items: center;
    transform-origin: bottom;
    transform: rotateX(0deg);
}

.glimpses-slider .slide-right {
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-origin: top;
    transform: rotateX(0deg);
}

.glimpses-slider .slide-left i {
    font-size: 28px;
    color: #e6531d;
    margin-bottom: 10px;
    animation: fadeIn 1s ease forwards;
}

.glimpses-slider .about-btn {
    margin-top: 25px;
    padding: 10px 26px;
    font-size: 16px;
    background-color: #d84518;
    color: white;
    text-decoration:none;
    border: none;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glimpses-slider  .about-btn:hover {
    background-color: #b23611;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 69, 24, 0.25);
}

.glimpses-slider  .about-btn i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.glimpses-slider  .about-btn:hover i {
    transform: translateX(5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.glimpses-slider .slide-left h2 {
    font-size: 36px;
    font-weight: 500;
    color: #000;
    text-align: center;
}

.glimpses-slider .slide-left h2 strong {
    font-weight: 700;
}

.glimpses-slider .slide-left p {
    font-size: 15px;
    color: #e6531d;
    margin-top: 10px;
}

.glimpses-slider .slide-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

@media (max-width: 992px) {
    .glimpses-slider .main-heading {
        font-size: 30px;
    }

    .glimpses-slider .slider-wrapper {
        flex-direction: column;
    }

    .glimpses-slider .slider-nav {
        flex-direction: row;
        margin-bottom: 30px;
    }

    .glimpses-slider .slide-box {
        flex-direction: column;
    }

    .glimpses-slider .slide-left,
    .glimpses-slider .slide-right {
        width: 100%;
        height: 240px;
        padding: 5px;
        transform: none !important;
    }
    .glimpses-slider .slide-left h2 {
        font-size: 30px;
     }
}

@media(max-width:768px){
    .glimpses-slider{
        padding: 30px 10px;
    }
      .glimpses-slider .slide-left{
        padding: 20px;
      }
      .glimpses-slider .about-btn{
        margin-top: 0px;
      }
}


/* ========================
   Testimonial Section
======================== */
/*.testimonial-section {*/
/*    padding: 60px 0;*/
/*    background: #fff;*/
/*    position: relative;*/
/*}*/

/*.testimonial-section .main-heading {*/
/*    margin-bottom: 40px;*/
/*}*/

/* ========================
   Swiper Slider
======================== */
/*.testimonial-section .testimonialSwiper {*/
/*    padding: 0 30px;*/
/*    text-align: center;*/
/*}*/

/*.testimonialSwiper .swiper-slide {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    cursor: pointer;*/
/*    filter: grayscale(100%);*/
/*    transition: filter 0.3s ease, transform 0.3s ease;*/
/*}*/

/*.testimonialSwiper .swiper-slide:hover {*/
/*    filter: grayscale(0%);*/
/*    transform: scale(1.05);*/
/*    z-index: 2;*/
/*}*/

/*.testimonialSwiper img {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    display: block;*/
/*}*/

/* ========================
   Overlay on Slide
======================== */
/*.testimonial-section .overlay {*/
/*    position: absolute;*/
/*    bottom: 20px;*/
/*    left: 20px;*/
/*    right: 20px;*/
/*    background: white;*/
/*    padding: 10px 15px;*/
/*    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
/*    text-align: left;*/
/*}*/

/*.testimonial-section .overlay h4 {*/
/*    margin: 0;*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*}*/

/*.testimonial-section .overlay p {*/
/*    margin: 5px 0 0;*/
/*    font-size: 13px;*/
/*}*/

/* ========================
   Video Modal
======================== */
/* Updated Video Modal */
/*.testimonial-section .video-modal {*/
/*    display: none;*/
/*    position: fixed;*/
/*    z-index: 9999;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100vw;*/
/*    height: 100vh;*/
/*    background-color: rgba(0, 0, 0, 0.85);*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    animation: fadeIn 0.3s ease forwards;*/
/*}*/

/* Popup Box */
/*.video-popup-box {*/
/*    background: #fff;*/
/*    border-radius: 10px;*/
/*    padding: 10px 10px 0px;*/
/*    width: 90%;*/
/*    max-width: 900px;*/
/*    position: relative;*/
/*    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
/*    animation: popupIn 0.4s ease forwards;*/
/*}*/

/* Close Button - now inside */
/*.video-close-btn {*/
/*    position: absolute;*/
/*    top: 15px;*/
/*    right: 20px;*/
/*    background: #000;*/
/*    color: #fff;*/
/*    font-size: 20px;*/
/*    border-radius: 50%;*/
/*    width: 36px;*/
/*    height: 36px;*/
/*    line-height: 36px;*/
/*    text-align: center;*/
/*    cursor: pointer;*/
/*    font-weight: bold;*/
/*    z-index: 2;*/
/*}*/

/* Divider line under close button */
/*.divider-line {*/
/*    margin-top: 50px;*/
/*    margin-bottom: 20px;*/
/*    height: 2px;*/
/*    width: 100%;*/
/*    background: #eee;*/
/*}*/

/* Smooth iframe reveal */
/*.video-iframe-wrapper {*/
/*    opacity: 0;*/
/*    transform: translateY(20px);*/
/*    animation: iframeIn 0.5s ease forwards;*/
/*}*/

/*.video-iframe-wrapper iframe {*/
/*    width: 100%;*/
/*    height: 450px;*/
/*    border: none;*/
/*    border-radius: 8px;*/
/*}*/

/* Keyframes */
/*@keyframes fadeIn {*/
/*    from {*/
/*        opacity: 0;*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*    }*/
/*}*/

/*@keyframes popupIn {*/
/*    0% {*/
/*        opacity: 0;*/
/*        transform: scale(0.8);*/
/*    }*/
/*    100% {*/
/*        opacity: 1;*/
/*        transform: scale(1);*/
/*    }*/
/*}*/

/*@keyframes iframeIn {*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/* Responsive */
/*@media (max-width: 768px) {*/
/*    .divider-line {*/
/*        margin-top: 30px;*/
/*        margin-bottom: 10px;*/
/*    }*/
/*    .video-iframe-wrapper iframe {*/
/*        height: 280px;*/
/*    }*/

/*    .video-popup-box {*/
/*        padding: 15px;*/
/*    }*/

/*    .video-close-btn {*/
/*        top: 10px;*/
/*        right: 10px;*/
/*        width: 32px;*/
/*        height: 32px;*/
/*        font-size: 18px;*/
/*        line-height: 32px;*/
/*    }*/

/*}*/

/* ========================
   Responsive
======================== */
/*@media (max-width: 1200px) {*/
/*    .testimonialSwiper .swiper-slide {*/
/*        width: auto;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .testimonialSwiper {*/
/*        padding: 0 10px;*/
/*    }*/
/*    .testimonial-section {*/
/*        padding: 30px 10px;*/
/*    }*/
/*    .testimonial-section .testimonialSwiper {*/
/*        padding: 10px;*/
/*    }*/

/*    .testimonial-section .main-heading {*/
/*        font-size: 30px;*/
/*        padding-left: 10px;*/
/*    }*/

/*    .testimonial-section .overlay {*/
/*        font-size: 12px;*/
/*        padding: 8px;*/
/*    }*/

/*    .testimonial-section .overlay h4 {*/
/*        font-size: 14px;*/
/*    }*/

/*    .testimonial-section .video-content iframe {*/
/*        height: 300px;*/
/*    }*/
/*}*/