

:root {
    --bs-primary: #1b457f; /* Bootstrap blue */
    --bs-secondary: #e25169; /* Bootstrap red */
  }

.bg-white{
    background-color: #fff !important ;
}

.bg-blue{
    background-color: #1b457f !important ;
}

.bg-red{
    background-color: #e25169 !important ;
}


.font-white{
    color: #fff !important ;
}

.font-blue{
    color: #1b457f !important ;
}

.font-red{
    color: #e25169 !important ;
}


.border-primary{
    border: 1px solid #1b457f !important ;
}

.border-bottom-primary{
    border: none !important;
    border-bottom:2px solid #1b457f !important ;
}

.border-bottom-secondary{
    border: none !important;
    border-bottom:2px solid #e25169 !important ;
}




.text-primary{
    color: #1b457f !important ;
}

.text-headding{
  font-family: "Nunito", sans-serif !important;
  font-weight: 600;
    text-transform: uppercase;
}

.text-body{
    font-family: 'Montserrat', sans-serif !important ;
    font-weight: 500;
}


.btn.btn-primary {
    background: #1b457f !important;
    color: #ffffff !important;
    border: 0;
}

.btn.btn-primary:hover {
    background: #ffffff00 !important;
    color: #1b457f !important;
    font-weight: bold;
    border: 2px solid #1b457f !important ;
}








/* end of extra edits */



/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }


 .spinner-ring {
    animation: spinner-rotate 1.2s linear infinite;
    /* Adjust the animation speed as needed */
}
@keyframes spinner-rotate {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.spinner-ring circle {
    stroke-dasharray: 283;
    stroke-dashoffset: 75;
    /* Creates a partial ring for a spinner effect */
}

/*** Spinner End ***/

.logo{
    width: 110px;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.wow,
.animated {
    animation-duration: 2s !important;
}


/*** Button Start ***/


.btn.btn-secondary {
    border: 0;
}

.btn.btn-secondary{
    background: #1b457f !important;
    color: #ffffff;
    border: 1px solid #e25169;
}

.btn.btn-secondary:hover{
    background: #e25169 !important;
    color: #1b457f !important;
    border: 1px solid #ffffff !important ;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*** Button End ***/


/*** Navbar Start ***/
.nav-bar {
   
    
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, background 0.5s ease-in-out;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-bar.scrolled {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px); /* Adds blur effect */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* To prevent content from jumping when navbar becomes fixed */
.navbar-placeholder {
    height: 80px; /* Adjust based on navbar height */
    display: none;
}

.nav-bar.scrolled + .navbar-placeholder {
    display: block;
}

.navbar .navbar-nav .nav-link {
    
    padding: 10px 12px;
    font-weight: 600;
    font-size: 17px;
    transition: .5s;
}



.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
    
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}


@media only screen and (min-width: 1200px) {
    .img-fluid{
        height: 500px !important;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

#searchModal .modal-content {
    background-color: rgba(255, 255, 255, .95);
}
/*** Navbar End ***/


/*** Events Start ***/
.event .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(212, 166, 98, 0);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}



.event .event-img:hover .event-overlay {
    opacity: 1;
}

.event-img img{
    transition: 0.5s;
}


.event-img:hover img{
    transform: scale(1.1);
}

/*** Events End ***/


/*** service start ***/
.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: var(--bs-primary);
    border-radius: 8px;
    transition: 1s;
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-item:hover .service-content-icon i {
    color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
    background: transparent;
    color: #000000;
    border: 1px solid #000000;
}



.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}
/*** Services End ***/


/*** Menu Start ***/
.menu .nav-item a.active {
    background: var(--bs-primary) !important;
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}
/*** Menu End ***/


/*** Youtube Video start ***/
.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(254, 218, 154, 0.1), rgba(254, 218, 154, 0.1)), url(../img/fact.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-white);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/


/*** Blog Start ***/
.blog-item {
    position: relative;
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.3)
}

.blog-item .blog-content {
    position: relative;
    transform: translateY(-50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item .blog-content a.btn h5 {
    transition: 0.5s;
}

.blog-item:hover .blog-content a.btn h5 {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/


/*** Team Start ***/
.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-item .team-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.team-item .team-icon .share-link {
    opacity: 0;
    transition: 0.9s;
}

.team-item:hover .share-link {
    opacity: 1;
}

.team-item .team-content {
    transition: 0.9s;
}

.team-item:hover .team-content {
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
}

.team-item .team-content h4,
.team-item .team-content p {
    transition: 0.5s;
}

.team-item:hover .team-content h4 {
    color: var(--bs-dark) !important;
}

.team-item:hover .team-content p {
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial-item {
    border: 1px solid var(--bs-primary);
    padding: 20px 20px;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}
/*** testimonial End ***/


/*** Contact start ***/
.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

/*** Contact End ***/


/*** Footer Start ***/
.footer .footer-item a.text-body:hover {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/




/* 
.collage {
    position: relative;
}

.collage-container {
    display: grid;
    grid-template-columns: repeat(3, 150px);
    grid-template-rows: repeat(3, 150px);
    position: relative;
    width: 420px;
    height: 420px;
    justify-content: center;
    align-items: center;
} */
/* 
.collage-item {
    position: absolute;
    width: 70px;
    height: 70px;
    border-left: 3px solid #ffc107;
    border-bottom: 5px solid #ffc107;
    border-radius: 5px ;
    transform: rotate(45deg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-item img {
    width: 210%;
    height: 210%;
    object-fit: cover;
    transform: rotate(-45deg);
    transition: opacity 1s ease-in-out; Smooth fade effect */
    /* opacity: 1; */
/* } */
/* 
.center {
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.top-left , .bottom-right {
    width: 30px;
    height: 140px;
}

.top-left , .bottom-right , .top-right , .bottom-left {
    background: url(../img/aboutTemp.jpg);
    background-size: cover;
}


.top-right , .bottom-left {
    width: 140px;
    height: 30px;
}

.top-left { top: 10%; left: 10%; }   /* Move further away */
/* .top-right { top: 10%; right: 10%; } 
.bottom-left { bottom: 10%; left: 10%; } 
.bottom-right { bottom: 10%; right: 10%; }  */
 

/* @media (max-width: 768px) {  Tablets and smaller screens */
/* 
    .main-divs{
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .collage-container {
        display: grid;
        /* place-items: center; Centers content inside the grid */
        /* position: relative;
    }

    .collage-container {
        margin-top: 60px;
        width: 360px;
        height: 360px;
        grid-template-columns: repeat(3, 120px);
        grid-template-rows: repeat(3, 120px);
    }

    .collage-item {
        width: 120px;
        height: 120px;
    }

    .collage-item img {
        width: 200%;
        height: 200%;
    }

    .center {
        width: 200px;
        height: 200px;
    }

    .top-left { top: 3%; left: 3%; }
    .top-right { top: 3%; right: 3%; }
    .bottom-left { bottom: 3%; left: 3%; }
    .bottom-right { bottom: 3%; right: 3%; }
} */ 
/* 
@media (max-width: 480px) {  /* Mobile screens */
/* 
    .main-divs{
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .collage-container {
        display: grid;
        place-items: center; /* Centers content inside the grid */
        /* position: relative;
    }

    .collage-container {
        margin-top: 60px; 
        width: 280px;
        height: 280px;
        grid-template-columns: repeat(3, 90px);
        grid-template-rows: repeat(3, 90px);
    }

    .top-left , .bottom-left {
        width: 40px;
    }

    .collage-item img {
        width: 220%;
        height: 220%;
    }

    .center {
        width: 140px;
        height: 140px;
    }

    .top-left { top: 2%; left: 2%; }
    .top-right { top: 2%; right: 2%; }
    .bottom-left { bottom: 2%; left: 2%; }
    .bottom-right { bottom: 2%; right: 2%; } */
/* }  */

/* counter section */


.camara{
    position: absolute;
    right: 5%;
    top: 7%;
    background-color: #00000071;
    padding: 5px 20px;
    cursor: pointer;
    border-radius: 10px;
    color: #fff;
}


.camara:hover{
    background-color: #000000cc;
    color: #f79400;
    transition: 0.5s ease-in-out;
}


.center-section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0px 0px 0px;
}

section {
    width: 100%;
    height: 90vh;
    border-radius: 5px;
    
    
  }
  
  .swiper-container {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    
  }
  
  .slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    overflow: hidden;
  }
  .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
height: 100%;
    background-size: cover; /* Show full image */
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
  }

  .slide-image-1{
    background-image: url(../img/hero/Resized/LARGE/LARGE-1.png);
  }

  @media only screen and (max-width: 767px) {
    .slide-image-1{
        background-image: url(../img/hero/Resized/MOBILE/LED\ WALL\ -\ MOBILE-1.png);
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .slide-image-1{
        background-image: url(../img/hero/Resized/TABLET/TABLET-1.png);
      }
  }



  .slide-image-2{
    background-image: url(../img/hero/Resized/LARGE/LARGE-2.png);
  }

  @media only screen and (max-width: 767px) {
    .slide-image-2{
        background-image: url(../img/hero/Resized/MOBILE/LED\ WALL\ -\ MOBILE-2.png);
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .slide-image-2{
        background-image: url(../img/hero/Resized/TABLET/TABLET-2.png);
      }
  }


  .slide-image-3{
    background-image: url(../img/hero/Resized/LARGE/LARGE-3.png);
  }

  @media only screen and (max-width: 767px) {
    .slide-image-3{
        background-image: url(../img/hero/Resized/MOBILE/LED\ WALL\ -\ MOBILE-3.png);
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .slide-image-3{
        background-image: url(../img/hero/Resized/TABLET/TABLET-3.png);
      }
  }


  .slide-image-4{
    background-image: url(../img/hero/Resized/LARGE/LARGE-4.png);
  }

  @media only screen and (max-width: 767px) {
    .slide-image-4{
        background-image: url(../img/hero/Resized/MOBILE/LED\ WALL\ -\ MOBILE-4.png);
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .slide-image-4{
        background-image: url(../img/hero/Resized/TABLET/TABLET-4.png);
      }
  }


  .slide-image-5{
    background-image: url(../img/hero/Resized/LARGE/LARGE-5.png);
  }

  @media only screen and (max-width: 767px) {
    .slide-image-5{
        background-image: url(../img/hero/Resized/MOBILE/LED\ WALL\ -\ MOBILE-5.png);
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .slide-image-5{
        background-image: url(../img/hero/Resized/TABLET/TABLET-5.png);
      }
  }


  .slide-title {
    font-size: 1rem;
    line-height: 1;
    max-width: 50%;
    white-space: normal;
    word-break: break-word;
    color: #FFF;
    z-index: 100;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
  }

  .second-text{
    z-index: 100;
  }

  @media (min-width: 45em) {
    .slide-title {
      font-size: 7vw;
      max-width: none;
    }
  }
  .slide-title span {
    white-space: pre;
    display: inline-block;
    opacity: 0;
  }
  
  .slideshow {
    position: relative;
  }
  .slideshow-pagination {
    position: absolute;
    bottom: 5rem;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: .3s opacity;
    z-index: 10;
  }
  .slideshow-pagination-item {
    display: flex;
    align-items: center;
  }
  .slideshow-pagination-item .pagination-number {
    opacity: 0.5;
  }
  .slideshow-pagination-item:hover, .slideshow-pagination-item:focus {
    cursor: pointer;
  }
  .slideshow-pagination-item:last-of-type .pagination-separator {
    width: 0;
  }
  .slideshow-pagination-item.active .pagination-number {
    opacity: 1;
  }
  .slideshow-pagination-item.active .pagination-separator {
    width: 10vw;
  }
  .slideshow-navigation-button {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 5rem;
    z-index: 1000;
    transition: all .3s ease;
    color: #FFF;
  }
  .slideshow-navigation-button:hover, .slideshow-navigation-button:focus {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
  }
  .slideshow-navigation-button.prev {
    left: 0;
  }
  .slideshow-navigation-button.next {
    right: 0;
  }
  
  .pagination-number {
    font-size: 1.8rem;
    color: #FFF;
    font-family: 'Oswald', sans-serif;
    padding: 0 0.5rem;
  }
  
  .pagination-separator {
    display: none;
    position: relative;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    transition: all .3s ease;
  }
  @media (min-width: 45em) {
    .pagination-separator {
      display: block;
    }
  }
  .pagination-separator-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    transform-origin: 0 0;
  }
  


  /* sub hero */
  .sub-hero{
    background: linear-gradient(to left, #00000011 , #0000001a) , url(../img/sub-hero.jpg);
  }

  #center-image {
    transition: opacity 0.5s ease-in-out;
    border-left: 3px solid #f79400;
    border-right: 3px solid #f79400;
}


/* counrter section */
.counter-section i { display:block; margin:0 0 10px}
.counter-section span.counter { font-size:40px; color:#000; line-height:60px; display:block; font-family: "Oswald",sans-serif; letter-spacing: 2px}
.counter-title{ font-size:12px; letter-spacing:2px; text-transform: uppercase}
.counter-icon {top:25px; position:relative}
.counter-style2 .counter-title {letter-spacing: 0.55px; float: left;}
.counter-style2 span.counter {letter-spacing: 0.55px; float: left; margin-right: 10px;}
.counter-style2 i {float: right; line-height: 26px; margin: 0 10px 0 0}
.counter-subheadline span {float: right;}  

.medium-icon {
    font-size: 40px !important;
    margin-bottom: 15px !important;
} 



.privacy-ul{
    list-style: none;
}

.privacy-ul li {
    padding: 10px 0px;
}


/* card setting */
.timeline-card {
    background-color: #1e1e1e;
    color: white;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    
  }
  .timeline-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px dashed #f79400;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
  }
  .timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

  }
  .timeline-content {
    flex-grow: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    
  }
  .timeline-number {
    font-size: 48px;
    color: #f79400;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
  }
  .timeline-text h4 {
    font-weight: 600;
    margin-bottom: 15px;
  }
  .timeline-arrow {
    border: 1px dashed #f79400;
    border-radius: 50%;
    width: 52px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: auto;
  }
  .timeline-arrow:hover {
    background-color: #f79400;
    color: #1e1e1e;
  }

  /* Responsive styles */
  @media (max-width: 768px) {
    .timeline-card {
      flex-direction: column;
      text-align: center;
    }
    .timeline-image {
      margin: 0 auto 20px;
    }
    .timeline-content {
      flex-direction: column;
      align-items: center;
      margin-top: 0;
    }
    .timeline-number {
      margin-bottom: 10px;
    }
    .timeline-arrow {
      margin: 20px auto 0;
    }
  }

.partner-card {
    position: relative;
    overflow: hidden;
}
.partner-img {
    transition: filter 0.3s ease;
    display: block;
    width: 100%;
}
.partner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(255,255,255,0.1); /* optional: slight overlay */
    pointer-events: none;
}
.partner-card:hover .partner-img {
    filter: blur(3px);
}
.partner-card:hover .partner-overlay {
    opacity: 1;
    pointer-events: auto;
}


/* card slider */

.card-slider {
  padding: 0 45px !important;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.card {
  width: 240px;
  height: 370px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  position: relative;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover zoom effect */
.card:hover img {
  transform: scale(1.05);
}





/* eee */
.partner-card2 {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #000;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Responsive image */
.partner-img2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease;
  border-radius: 10px;
 
}

/* Hover effects */
.partner-card2:hover .partner-img2 {
  filter: blur(3px) brightness(1.5);
}

.partner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 10px;
  text-align: center;
}

.partner-card2:hover .partner-overlay {
  opacity: 1;
  pointer-events: auto;
}

.partner-overlay h6 {
  font-size: 1.1rem;
  color: #2a2a72;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.partner-overlay .btn {
  background-color: #2a2a72;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.partner-overlay .btn:hover {
  background-color: #1e1e50;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .partner-card2 {
    padding: 0;
    height: 250px;
    margin-top: 10px;
    border-radius: 10px;
  }

  
  .partner-overlay h6 {
    font-size: 1rem;
  }

  .partner-overlay .btn {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .partner-card2 {
    height: 200px;
    margin-bottom: 10px;
    border-radius: 10px;
  }

  .partner-overlay h6 {
    font-size: 0.9rem;
  }

  .partner-overlay .btn {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}



/* extra card */

.container2{
    height: 50vh !important;
    z-index: 2000;
}

.endcorosal{
     width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      background-color: #ffffff;
}

  .shop-card {
    height: 400px;
      position: relative;
      background-color: #1b1e3a;
      color: white;
      text-align: center;
      padding: 30px 20px;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .shop-card:hover {
      transform: translateY(-5px);
    }

    .shop-card i {
      font-size: 40px;
      color: orange;
      margin-bottom: 15px;
    }

    .shop-card h5 {
      font-weight: bold;
      margin-bottom: 5px;
    }

    .shop-card p {
      margin-bottom: 15px;
      color: #ccc;
    }

    .shop-card .btn {
      background-color: #ff6600;
      border: none;
      color: white;
      
    }

    .shop-card .btn:hover {
      background-color: #ff8533;
    }

    /* Glass Hover Overlay */
    .card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(255, 255, 255, 0.521);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      opacity: 0;
      visibility: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease-in-out;
    }

    .shop-card:hover .card-overlay {
      opacity: 1;
      visibility: visible;
    }

    .overlay-text {
      color: white;
      font-weight: bold;
      font-size: 18px;
    }

    /* Responsive tweaks */
    @media (max-width: 992px) {
      .col-lg-2 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
      }
    }

    @media (max-width: 576px) {
      .col-lg-2 {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    /* endd */

#customCarousel {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .carouselSlide {
      position: absolute;
      transition: transform 1s, left 1s, opacity 1s, z-index 0s;
      opacity: 1;
    }

    .carouselSlide img {
      width: 40vw;
      max-width: 400px;
      transition: width 1s;
    }

    .carouselHideLeft {
      left: 0%;
      opacity: 0;
      transform: translateY(50%) translateX(-50%);
    }

    .carouselHideLeft img {
      width: 20vw;
    }

    .carouselHideRight {
      left: 100%;
      opacity: 0;
      transform: translateY(50%) translateX(-50%);
    }

    .carouselHideRight img {
      width: 20vw;
    }

    .carouselPrev {
      z-index: 5;
      left: 30%;
      transform: translateY(50px) translateX(-50%);
    }

    .carouselPrev img {
      width: 30vw;
    }

    .carouselPrevLeftSecond {
      z-index: 4;
      left: 15%;
      transform: translateY(50%) translateX(-50%);
      opacity: .7;
    }

    .carouselPrevLeftSecond img {
      width: 20vw;
    }

    .carouselSelected {
      z-index: 10;
      left: 50%;
      transform: translateY(0px) translateX(-50%);
    }

    .carouselNext {
      z-index: 5;
      left: 70%;
      transform: translateY(50px) translateX(-50%);
    }

    .carouselNext img {
      width: 30vw;
    }

    .carouselNextRightSecond {
      z-index: 4;
      left: 85%;
      transform: translateY(50%) translateX(-50%);
      opacity: .7;
    }

    .carouselNextRightSecond img {
      width: 20vw;
    }

    .carouselButtons {
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: 10px;
    }

    @media (max-width: 768px) {
      .carouselSlide img,
      .carouselPrev img,
      .carouselNext img,
      .carouselPrevLeftSecond img,
      .carouselNextRightSecond img,
      .carouselHideLeft img,
      .carouselHideRight img {
        width: 60vw;
      }
    }

    @media (max-width: 480px) {
      .carouselSlide img,
      .carouselPrev img,
      .carouselNext img,
      .carouselPrevLeftSecond img,
      .carouselNextRightSecond img,
      .carouselHideLeft img,
      .carouselHideRight img {
        width: 80vw;
      }
    }




    /* super script
     */

     .card2 {
      width: 100%;
      aspect-ratio: 1 / 1; /* Makes it a perfect square */
      position: relative;
      transform-style: preserve-3d;
      perspective: 500px;
      border: none;
      background-color: inherit;
    }

.card2 .box {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transition: 0.5s;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card2 .box.front {
  background-color: #ccc;
}

.card2 .box.back {
  transform: rotateY(180deg);
  background: #fff;
}

.card2:hover .box.front {
  transform: rotateY(180deg);
}
.card2:hover .box.back {
  transform: rotateY(360deg);
}

/* Explore button */
.explore-btn {
  background:#fff;
  color: #1e1e50;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s ease;
}

.explore-btn:hover {
    color: #fff;
  background: #1b1e3a;
}

@media(max-width: 575.98px) {
  .card2 {
    height: 300px;
  }
}




/* end
 */


 .blinking-border {
  animation: blinkShadow 1s infinite;
  border-radius: 8px;
}

@keyframes blinkShadow {
  0%   { box-shadow: 0 0 0 0 #1b457f; }
  50%  { box-shadow: 0 0 10px 4px #1b457f; }
  100% { box-shadow: 0 0 0 0 #1b457f; }
}



/* dsdsd */

.fade-image {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}
.fade-out {
    opacity: 0;
}