* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.container {
    resize: both;
}

section {
    display: flex;
    flex-direction: column;
}

:root {
    --primary-color: #97b6c5;
    --white-color: #fff;
    --dark-color: #000;
    --second-color: #f6fbfd;
}

body {
    font-family: 'main-font', sans-serif;
    overflow-x: hidden;
    background-color: var(--second-color) !important;
}

p {
    font-family: 'main-font', sans-serif;
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
    ;
}

h1 {
    font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
    font-family: main-font;
    letter-spacing: 0.1rem;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw + 0.5rem, 3rem);
    font-family: main-font;
}

h4 {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.75rem);
    font-family: main-font;
}

@font-face {
    font-family: 'main-font';
    src: url('../fonts/FuturaCyrillicBook.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'special-font';
    src: url('../fonts/pro.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

.img-fluid {
    max-width: 100%;
}

.hero-sectionth {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),
        url('../images/slider/top01.png');
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat:no-repeat;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--primary-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index:30;
}

.enq-now {
  background-color: var(--primary-color);
    border: unset;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    font-family: 'main-font', sans-serif;
    padding:12px 24px;
}

.enq-now:hover {
    transform: translateY(-2px);
    color: white;
}

.scale-in-hor-left-main {
    animation: scale-in-hor-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    -webkit-animation: scale-in-hor-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes scale-in-hor-left {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }
}

@keyframes scale-in-hor-left {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }
}

.hero-section .ban-down {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 2rem;
}

.booms {
    padding: 2rem 0;
}

.special-title {
    font-family: 'special-font';
    color: var(--primary-color);
}

.know-more {
    background-color: var(--primary-color);
    border: unset;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size:0.8rem;
    letter-spacing: 2px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    padding: 12px 24px;

}
.know-more img{
    width:18px;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.know-more:hover img{
    transition: all 0.3s;
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.know-more:hover {
    transform: translateY(-2px);
    color: var(--dark-color);
}

.ytplay::before {
    content: '';
    background-image: url('../images/before-ele.png');
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -106px;
    left: -23%;
    width: 700px;
    height: 280px;
    background-size: cover;
    z-index: -1;
    opacity: 0.4;
}

.ytplay::after {
    content: '';
    background-image: url('../images/before-ele.png');
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -88px;
    right: -23%;
    width: 700px;
    height: 280px;
    background-size: cover;
    z-index: -1;
     opacity: 0.4;
}

.video-sec {
    padding: 4rem 0;
}

.north-blr {
    padding: 4rem 0;
}

.north-blr .special-title {
    margin-left: 10rem;
}

.north-blr p {
    padding-top: 1rem;
}
.transformation{
    padding: 1rem 0;
    margin: 1rem 0;
}
.transformation .heading {
    position: relative;

}
.transformation .slide{
    padding: 2rem 0;
}
.transformation .heading-two {
    position: relative;
    
}
.transformation .heading h4{
    text-transform:uppercase;
}
.transformation .heading-two h4{
    text-transform:uppercase;
}
.transformation .heading h4::after {
  content: '';
  background-image: url('../images/after-transformation.png');
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-27px);
  width: 225px;
  height: 84px;
  background-size: cover;
  z-index: -10;
  left: 167px;
  opacity: 0.5;
  -webkit-transform: translateY(-27px);
  -moz-transform: translateY(-27px);
  -ms-transform: translateY(-27px);
  -o-transform: translateY(-27px);
}
.transformation .heading-two h4::before {
  content: '';
  background-image: url('../images/after-transformation.png');
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-22px);
  width: 225px;
  height: 84px;
  background-size: cover;
  z-index: -10;
  left: 183px;
  opacity: 0.5;
  -webkit-transform: translateY(-22px);
  -moz-transform: translateY(-22px);
  -ms-transform: translateY(-22px);
  -o-transform: translateY(-22px);
}
.transformation .heading h1 {
    /* margin-top: 2rem; */
}
.transformation .heading-two h1 {
    margin-top: 2rem;
}

.transformation .know-more {
    display: flex;
    gap: 10px;
}

.new-north {
    background-color: var(--primary-color);
}

.new-north {
    padding: 4rem 0;
    color: var(--white-color);
}

.new-north .heading h1 {
    font-family: 'special-font';
}

.new-north .heading .special-title {
    color: var(--white-color);
    font-family: 'main-font';
    margin-left: 07rem;
}

.new-north p {
    padding-top: 1rem !important;
}

.biggest-leap {
    padding: 3rem 0 2rem;
}

.biggest-leap .heading h1 {
    text-align: center;
}

/* image hover  */
.image-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.plus-point {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.plus-point:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: white;
}

.plus-point i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.tooltip {
    position: absolute;
    background-color: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    width: 250px;
    max-width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20!important;
    pointer-events: none;
}

.tooltip h3 {
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 18px;
    font-family: 'main-font';
    display:flex;
    align-items:center;
    gap:05px;
}

.tooltip p {
    color: #000;
    font-size: 14px;
    line-height: 1.5;
}
.tooltip img{
    width:32px;
}

.tooltip::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.plus-point:hover+.tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
}

/* Detail panel for mobile */
.detail-panel {
    display: none;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
    animation: fadeIn 0.3s ease;
}

.detail-panel.active {
    display: block;
}

.detail-panel h3 {
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 20px;
}

.detail-panel p {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.5;
}

.detail-panel .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #7f8c8d;
}

.detail-panel .close-btn:hover {
    color: #e74c3c;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.instructions {
    text-align: center;
    margin-top: 30px;
    color: #7f8c8d;
    font-size: 16px;
}
@media (min-width: 768px) and (max-width: 1440px) {
    .swiper{
        height: 700px!important;
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .swiper{
        height: max-content!important;
    }
    .thankyou{
        padding-left: 0!important;
    }
    .mob-data{
        left: 40%!important;
    }
    .mob-data-two{
        left: 47%!important;
    }
    .north-blr{
        padding-bottom:0!important;
    }
    .transformation{
        padding:0;
        margin:0;
    }
    .transformation .col-md-4{
        justify-content:start!important;
    }
    .transformation .heading {
        padding-left:2rem!important;
    }
    .transformation .heading-two {
        padding-left:2rem;
        margin-top:30px!important;
    }
    .transformation .heading h4::after {
     content: '';
    background-image: url('../images/after-transformation.png');
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    transform: translateY(-11px) !important;
    width: 206px !important;
    height: 72px !important;
    background-size: cover;
    z-index: -10;
    left: 175px;
    opacity: 0.5;
    -webkit-transform: translateY(-11px) !important;
    -moz-transform: translateY(-26px) !important;
    -ms-transform: translateY(-11px) !important;
    -o-transform: translateY(-11px) !important;
}
.transformation .heading-two .know-more{
    margin-bottom:4.5rem;
}
 .transformation .heading-two h4::before {
    content: '';
    background-image: url('../images/after-transformation.png');
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    transform: translateY(-11px) !important;
    width: 206px !important;
    height: 72px !important;
    background-size: cover;
    z-index: -10;
    left: 175px;
    opacity: 0.5;
    -webkit-transform: translateY(-11px) !important;
    -moz-transform: translateY(-26px) !important;
    -ms-transform: translateY(-11px) !important;
    -o-transform: translateY(-11px) !important;
  }

    .slider-wrapper{
        height: 56vh!important;
    }
        #detail-panel {
        padding: 1rem ;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        margin: 0.3rem ;
}

    .navbar-brand{
        padding:0!important;
        margin:0!important;
    }
    .navbar {
        padding:0 1rem;
    }
    .navbar .container{
        padding:0;
    }
    .navbar.scrolled{
        padding:0 1rem;
    }
    .contact {
  padding: 2rem!important;
}
   
    .north-blr .special-title{
        margin-left: 4rem;
    }
    .video-sec iframe{
        height: 300px!important;
    }
    /*.mov-mar{*/
    /*    margin-left:28% ;*/
    /*}*/
    .north-blr {
  padding: 2rem 2rem;
}
    .video-sec {
  padding: 0;
}
    .booms {
  padding: 3rem 2rem;
}
    .hero-section .ban-down {
  position: absolute;
  bottom: 300px;
  left: 0;
  padding: 2rem;
  width: 222px;
}
     .new-north{
        padding: 3rem 2rem;
     }
            .slick-list {
                touch-action: none;
            }
    .transformation .heading {
        padding: 2rem 0;
    }
    .ytplay::before, .ytplay::after{
          display: none;
    }
    .container {
        padding: 15px;
    }

    .plus-point {
        width: 35px;
        height: 35px;
    }

    .plus-point i {
        font-size: 18px;
    }

    .tooltip {
        width: 220px;
        padding: 12px;
    }

    .tooltip h3 {
        font-size: 16px;
    }

    .tooltip p {
        font-size: 13px;
    }

    .detail-panel {
        padding: 15px;
    }

    .detail-panel h3 {
        font-size: 18px;
    }

    .detail-panel p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .plus-point {
        width: 30px;
        height: 30px;
    }

    .plus-point i {
        font-size: 16px;
    }

    .tooltip {
        width: 180px;
        padding: 10px;
    }

    .tooltip h3 {
        font-size: 15px;
    }

    .tooltip p {
        font-size: 12px;
    }

    .detail-panel {
        padding: 12px;
    }

    .detail-panel h3 {
        font-size: 16px;
    }

    .detail-panel p {
        font-size: 13px;
    }

    h1 {
        font-size: 24px;
    }

    .instructions {
        font-size: 14px;
    }
}

/* Tooltip positioning for mobile */
@media (max-width: 768px) {
    .contact p :nth-child(1){
        margin-top:0!important;
    }
    .transformation .know-more{
        padding-bottom:1rem;
    }
    .mob-pad-slider{
        padding-bottom:1rem;
    }
    .navbar .enq-now {
        font-size: 0.7rem;
  left: 6%;
  position: relative;
    }
    .hero-section {
        

}
 .video-sec,.transformation{
    overflow-x: hidden;
 }
   
  
    .mob-img{
        width: 80px!important;
    }
  
    .transformation .slide{
    padding:  3rem 0;
}
    .tooltip::after {
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid white;
    }

    /* Hide tooltips on mobile and show detail panel instead */
    .tooltip {
        display: none;
    }

    .plus-point:hover+.tooltip {
        opacity: 0;
        visibility: hidden;
        transform: none;
    }
}

.new-north .know-more {
    color: var(--primary-color);
    background-color: var(--white-color);

}

.new-north .know-more img{
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.contact {
    padding: 0 0 3rem 0;
}


.contact a {
    color: var(--dark-color);
    text-decoration: none;
}

.contact p :nth-child(1) {
    margin-top: 2rem;
}

.contact .form-control {
    border: none;
    border-bottom: 1px solid #bcd3df;
    border-radius: 0;
    background-color: transparent;
}

.contact .form-control:focus {
    box-shadow: none;
    border-color: #99c2d8;
}

.contact label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666666ab;
}
.contact .know-more{
    color:var(--primary-color);
}

.contact .form-check-label {
    font-size: 0.95rem;
}

.submit-col {
    display: flex;
    padding-top: 2.3rem;
}

.submit-col .know-more {
    margin-left: 40%;
    color: var(--white-color);
}

.back-to-top {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: .3s all linear;
    transition: .3s all linear;
}

.back-to-top.show {
    bottom: 30px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    z-index: 999;
}

.back-to-top a {
    width: 35px;
    height: 35px;
    background: #5c91a9;
    box-shadow: 0px 5px 30px rgba(2, 213, 255, 0.58);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 16px;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    bottom: 10%;
    right: 4%;
    position: fixed;
    z-index: 998;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.top-array {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 8px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    width: 8px;
    position: absolute;
    left: 14px;
    top: 13px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.top-line {
    background-color: #fff;
    height: 10px;
    left: 18px;
    position: absolute;
    top: 14px;
    width: 2px;
    margin-left: -1px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.back-to-top.show a:hover .top-line {
    height: 14px;
    border-color: #000;
    background: #000;
    top: 12px;
}

.back-to-top a:hover .top-array {
    border-color: #000;
    top: 11px;
}

.back-toop-tooltip {
    position: absolute;
    top: -65px;
    -webkit-transform: rotate(-90deg) translateX(20px);
    transform: rotate(-90deg) translateX(20px);
    width: 100px;
    left: -33px;
    -webkit-transition: .6s all ease;
    transition: .6s all ease;
    line-height: 1;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
}

.back-toop-tooltip span {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.back-to-top a:hover .back-toop-tooltip {
    -webkit-transform: rotate(-90deg) translateX(5px);
    transform: rotate(-90deg) translateX(5px);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.back-to-top.show a {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.back-to-top a:hover {
    background: #fff;
    color: #000;
}

.form-label {
    font-family: 'main-font';
}

.modal-body {
    background-color: var(--second-color);
    border-radius: 10px;
    padding: 2rem 01rem !important;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.modal-content {
    background-color: var(--second-color);
    border-radius: 30px !important;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    -ms-border-radius: 30px !important;
    -o-border-radius: 30px !important;
}

.btn-close {
    width: 20px;
}


.modal-content .form-control {
    border-bottom: 1px solid var(--primary-color) !important;
    border: unset;
    background: transparent;
    border-radius:0;
}

.modal-content .form-control:focus{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px!important;
}
.slick-dots li button{

}
.slick-dots li button::before{
    font-size: 0.7rem!important;
    color: var(--primary-color)!important;
    border: 1px solid #027882!important;
    border-radius: 50%!important;
    -webkit-border-radius: 50%!important;
    -moz-border-radius: 50%!important;
    -ms-border-radius: 50%!important;
    -o-border-radius: 50%!important;
}

.biggest-leap .heading p{
    text-transform:uppercase;
}


/*.mov-mar{*/
/*    margin-left:30%;*/
/*}*/




    .swiper {
      width: 100%;
 height: 810px;

    }

    .swiper-slide {
      background-size: cover;
      background-position: center;
      width: 100vw;
    }





    .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           background: #96b6c5 !important;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .preloader.loaded {
            transform: translateY(-100%);
            opacity: 0;
        }

        .logo-container {
            position: relative;
            width: 200px;
            height: 200px;
            perspective: 1000px;
        }

        .logo {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            animation: logoFloat 3s ease-in-out infinite;
        }

        .logo-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            opacity: 0;
            max-width: 280px;
            max-height: 280px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
            animation: fadeInLogo 0.8s ease-out 0.5s forwards;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .logo-container.zoom-out .logo-image {
            transform: translate(-50%, -50%) scale(2);
            opacity: 0;
        }

        .progress-bar {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 4px;
            background: rgba(255,255,255,0.2);
            border-radius: 2px;
            overflow: hidden;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
}

        .progress-fill {
            height: 100%;
            background: #fff;
            border-radius: 2px;
            width: 0%;
            animation: progressFill 3s ease-in-out forwards;
        }


         @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes fadeInLogo {
            to { opacity: 1; }
        }

        @keyframes progressFill {
            to { width: 100%; }
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }



        .custom-next,
.custom-prev {
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-next:hover,
.custom-prev:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Arrow positions */
.custom-next::after,
.custom-prev::after {
  font-family: 'SwiperIcons';
  font-size: 18px;
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.custom-next {
  right: 10px;
}
.custom-prev {
  left: 10px;
}

.swiper-button-next, .swiper-button-prev {
    width: calc(var(--swiper-navigation-size)/ 27 * 27)!important;
}

.swiper-button-next::after, .swiper-button-prev::after{
color: var(--white-color)!important;
font-size: 1rem!important;
}

.mov-mar {
    margin-left: 24%;
}

@media screen and (max-width: 768px) {
    .mov-mar {
        margin-left: 8%!important;
        text-align:center;
    }
}


.thankyou{
    padding-top: 10rem;
    padding-left: 2rem;

}
.thankyou h1{
    color: #fff;
}
.thankyou p{
    color: #fff;
}
.glass-bg{
    background: rgba(0, 0, 0, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(0, 0, 0, 0.3);
padding: 1rem 0.8rem;
}
.drop-btn{
  width: 100%;
  margin: 1rem 0;
  text-align: start !important;
  border-bottom: 1px solid var(--primary-color) !important;
  border-radius: unset!important;
  -webkit-border-radius: unset!important;
  -moz-border-radius: unset!important;
  -ms-border-radius: unset!important;
  -o-border-radius: unset!important;
}
.btn:hover{
    border-color: transparent!important;
}
 .btn:active{
    border-color: transparent!important;
}
.dropdown-menu{
    width: 100%;
}
.dropdown-menu checkbox{
    color: var(--primary-color)!important;
}