* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  
}
.container{
  width: 100%;
  margin: auto;
  padding: 0 16px;
}
/* HIDE MOBILE HEADER ON DESKTOP */
.mobile-header{
    display:none;
}
:root{
    --btn-bg: rgb(104,77,244);
    --btn-bg-hover: rgb(20,29,56);
    --btn-text: #ffffff;
    --font1-color:rgb(138,115,244);
    --font2-color:rgb(21,30,57);
}
.btn-started{
    padding:10px 22px;
    background: var(--btn-bg);
    color: var(--btn-text);
    border-radius:30px;
    text-decoration:none;
    transition: background .3s ease, transform .2s ease;
    border: none;
}
.btn-started:hover{
    background: var(--btn-bg-hover);
    transition-duration: 2s;
    margin-right: 10px;
    transition-duration: 2s;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  background: #0d1b2a;
  padding: 15px 0;
  color: #fff;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  padding: 60px 0;
  background: #f5f7fa;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero img {
  width: 100%;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  background: #ff7a00;
  color: #fff;
  padding: 12px 25px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 5px;
}

.features {
  padding: 60px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  padding: 25px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.how {
  background: #0d1b2a;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.cta {
  background: #ff7a00;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.btn.light {
  background: #fff;
  color: #ff7a00;
}

.contact {
  padding: 50px 0;
  text-align: center;
}

.footer {
  background: #0d1b2a;
  color: #fff;
  text-align: center;
  padding: 15px;
}
/* Drop down hover start */
/* DEFAULT STATE */
/* DEFAULT (HIDDEN) STATE */
.dropdown,
.mega-menu{
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    padding:17px;

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility 0s linear 1s; /* 👈 1 second delay */
}

/* HOVER (OPEN IMMEDIATELY) */
.nav-item .dropdown,
.nav-item .mega-menu{
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease;
}

/* VISIBLE STATE */
.nav-item.hover-active > .dropdown,
.nav-item.hover-active > .mega-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown{
    transition-delay: 0s, 0s, 0s, 1s;
}

.mega-menu{
    transition-delay: 0s, 0s, 0s, 2.5s;
}

/* Drop down hover end */
/* section1 start*/
/* SECTION */
.split-section{
    padding:80px 20px;
    background:#f8f9fb;
}

/* CONTAINER */
.split-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    margin-top:120px;
}

/* CONTENT */
.split-content h2{
    font-size:32px;
    margin-bottom:15px;
}

.split-content p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:25px;
    color:#555;
}
.split-content{
    margin-top:-110px;
    margin-bottom: 29px;
}

/* IMAGE */
.split-image img{
    width:100%;
    border-radius:12px;
}
.arrow{
  font-size: 20px;
}
.arrow:hover{
  margin-left: 5px;
  transition-duration: 1.6s;
}

/* RESPONSIVE */
@media(max-width:768px){
    .split-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .split-content h2{
        font-size:28px;
    }
}

/* section1 end*/
/* MOBILE */
@media(max-width:768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
@media(max-width:992px){

    .mobile-header{
        display:flex;
    }

}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1440px;
    

  }
  .split-image{
    margin-left: 70px;
    width: 110%;
  }

}
/* ota platfrom start*/
/* SECTION */
.ota-section{
    padding:80px 0;
    background:#fff;
    overflow:hidden;
}

.ota-title{
    text-align:center;
    font-size:36px;
    margin-bottom:50px;
}

/* MARQUEE */
.ota-marquee{
    width:100%;
    overflow:hidden;
    position:relative;
    margin-bottom:30px;
}

.ota-track{
    display:flex;
    align-items:center;
    gap:60px;
    width: max-content;
    animation: marquee-left 30s linear infinite;
}

.ota-marquee.reverse .ota-track{
    animation: marquee-right 30s linear infinite;
}

/* LOGOS */
.ota-track img{
    height:75px;
    opacity:.8;
    transition:.3s ease;
}

.ota-track img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.05);
}

/* PERFECT LOOP ANIMATION */
@keyframes marquee-left{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

@keyframes marquee-right{
    from{ transform:translateX(-50%); }
    to{ transform:translateX(0); }
}

/* MOBILE */
@media(max-width:768px){
    .ota-track{
        gap:40px;
    }
    .ota-track img{
        height:52px;
    }
}

/* ota platfrom end*/

/*Section 3 start */
/* WHY SECTION */
.why-section{
    padding:90px 20px;
    background:#f8f9fb;
}

.why-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* CONTENT */
.why-tag{
    display:inline-block;
    font-weight:600;
    color:#0b5ed7;
    margin-bottom:10px;
}

.why-content h2{
    font-size:38px;
    margin-bottom:20px;
}

.why-content p{
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

/* LIST */
.why-list{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}

.why-list li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    font-weight:500;
}

.why-list i{
    color:#0b5ed7;
    font-size:18px;
}

/* IMAGE */
.why-image img{
    width:100%;
    border-radius:14px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .why-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .why-list li{
        justify-content:center;
    }

    .why-content h2{
        font-size:30px;
    }
}
/*Section 3 end */

/*Service section section4 start  */
/* ================= SERVICES ================= */
.services-section{
    padding:80px 0;
    background:#f9f9f9;
}

.services-title{
    text-align:center;
    font-size:32px;
    margin-bottom:40px;
}

.services-marquee{
    overflow:hidden;
    padding:0 30px;
}

.services-scroll{
    display:grid;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
    gap:10px;
    /* animation:serviceScroll 35s linear infinite; */
    overflow-x:auto;
    scroll-behavior:smooth;
    cursor:grab;
}


/* CARD */
.service-card{
    width:300px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    display:flex;
    flex-direction:column;
    transition:.3s;
}
.service-card:hover{
    transform:translateY(-6px);
}

/* CARD HEADER */
.card-header{
    height:180px;
}
.card-header img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CARD BODY */
.card-body{
    padding:18px;
    flex:1;
}
.card-body h4{
    margin-bottom:8px;
}
.card-body p{
    font-size:14px;
    color:#555;
}

/* CARD FOOTER */
.card-footer{
    padding:15px 18px;
    border-top:1px solid #eee;
}
.card-footer a{
    display:block;
    text-align:center;
    padding:10px;
    background:#084298;;
    color:#fff;
    border-radius:25px;
    text-decoration:none;
}

@keyframes serviceScroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

/*Service section section4 end  */

/* whatsapp integration start*/
/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float{
    position:fixed;
    bottom:5px;
    left:25px; /* change to left:25px if needed */
    width:47px;
    height:47px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:9999;
    padding:15px;
    transition:.3s ease;
}

.whatsapp-float img{
    width:52px;
    height:52px;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* whatsapp integration end*/

/*footer start  */
/* ================= FOOTER ================= */
.footer{
    background:#fff;
    padding:70px 0 20px;
    border-top:1px solid #eee;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    padding:0 10px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
}

.footer-logo{
    height:50px;
    margin-bottom:15px;
}

.footer-col h4{
    margin-bottom:15px;
    font-size:18px;
}

.footer-col p{
    color:#555;
    font-size:14px;
    line-height:1.6;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    color:#020202;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}



/* SOCIAL */
.footer-social{
    margin-top:15px;
    display:flex;
    gap:12px;
}

.footer-social a{
    width:36px;
    height:36px;
    background:#f3f3f3;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

/* BOTTOM */
.footer-bottom{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #eee;
    font-size:14px;
    font-weight: bold;
    color:#020202;
}
footer h4{
  color:#020202
}
footer a{
    text-decoration: none;
}
.sub-heading{
    font-weight: bold;
    color: rgb(104, 77, 244);
}
.paragraph{
    font-size: 43px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}
@media(max-width:576px){
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }
    .footer-social{
        justify-content:center;
    }
}

/*footer end  */

/* Header css index.html start*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,sans-serif;
}

body{
    min-height:200vh;
}

/* ================= NAVBAR ================= */
.navbar{
    position:fixed;
    top:0;
    width:100%;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:1000;
}

.nav-container{
    max-width:1300px;
    margin:auto;
    padding:15px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */
.logo img{
    height:52px;
}

/* MENU */
.nav-menu{
    display:flex;
    align-items:center;
    gap:25px;
}

.nav-item{
    position:relative;
}

.nav-link{
    cursor:pointer;
    color:#222;
    font-weight:500;
    text-decoration:none;
}

/* ================= DROPDOWN ================= */
.dropdown{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:220px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* ================= MEGA MENU ================= */
.mega-menu{
    position:fixed;
    left:0;
    top:80px;
    width:100vw;
    background:#fff;
    box-shadow:0 20px 40px rgba(0,0,0,.2);
}
.nav-para{
    margin-right: 30px;
}

.mega-container{
    max-width:1400px;
    margin:auto;
    padding:40px 30px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.mega-box h4{
    color:#0b5ed7;
    margin-bottom:12px;
}

.mega-box a,
.dropdown a{
    display:block;
    padding:8px 0;
    color:#333;
    text-decoration:none;
}

.mega-box a:hover,
.dropdown a:hover{
    color:#0b5ed7;
}

/* ================= HOVER CONTROL (JS BASED) ================= */
.dropdown,
.mega-menu{
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:opacity .25s ease, transform .25s ease;
    display:block;
}

.nav-item.hover-active > .dropdown,
.nav-item.hover-active > .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.mega-box {
  position: relative;
  padding-right: 30px;
}

/* Vertical line after col 1 & 2 */
.mega-box:not(:last-child) {
  border-right: 2px solid rgb(78,176, 230);
}
.mega-box {
  position: relative;
}

.mega-box:nth-child(1)::after,
.mega-box:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  background: #e5e7eb;
}


/* ================= BUTTON ================= */
.btn-started{
    padding:10px 22px;
    background:#0b5ed7;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
}

/* ================= MOBILE ================= */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* HIDE MOBILE HEADER ON DESKTOP */
.mobile-header{
    display:none;
}

/* ================= MOBILE STYLES ================= */
@media(max-width:992px){

.menu-toggle{
    display:block;
}

/* SLIDE FROM LEFT */
.nav-menu{
    position:fixed;
    top:0;
    left:-100%;
    width:300px;
    height:100vh;
    background:#fff;
    flex-direction:column;
    padding:20px;
    box-shadow:10px 0 25px rgba(0,0,0,.25);
    transition:.4s ease;
    overflow-y:auto;
}

.nav-menu.active{
    left:0;
}

/* MOBILE HEADER */
.mobile-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.close-btn{
    font-size:26px;
    cursor:pointer;
}

/* MOBILE DROPDOWNS */
.dropdown,
.mega-menu{
    position:static;
    width:100%;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
}

.mega-container{
    grid-template-columns:1fr;
    padding:10px 0;
}
}
/* Header css index.html end*/

/* reviews css start */
.review-section{
    padding:80px 20px;
    background:#f8f9fa;
}
.review-parent{
    display: flex;
    justify-content: space-around;
}
.love-imoj{
    display: inline;
}

.review-title{
    text-align:center;
    font-size:32px;
    margin-bottom:40px;
}

/* SCROLL */
.review-wrapper{
    overflow-x:auto;
    scrollbar-width:none;
}
.review-wrapper::-webkit-scrollbar{
    display:none;
}

/* TRACK */
.review-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:scrollReviews 45s linear infinite;
}

.review-wrapper:hover .review-track{
    animation-play-state:paused;
}

/* CARD */
.review-card{
    min-width:300px;
    max-width:300px;
    background:#fff;
    border-radius:16px;
    padding:25px;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

/* TEXT */
.review-text{
    font-size:14px;
    color:#555;
    margin-bottom:18px;
}

/* IMAGE */
.review-img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

/* FOOTER */
.review-footer{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.review-name{
    font-weight:600;
    font-size:14px;
}

.google-logo{
    width:20px;
}

/* AUTO SCROLL */
@keyframes scrollReviews{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

/* RESPONSIVE */
@media(max-width:600px){
    .review-card{
        min-width:260px;
    }
}


/* reviews css end */
/* our mission startX\ */
.mv-section{
    padding:100px 20px;
    background:linear-gradient(180deg,#f9fbff,#ffffff);
}

.mv-block{
    max-width:1200px;
    margin:0 auto 100px;
    display:flex;
    align-items:center;
}
.ota-title{
    width: 60%;
}
.ota-para{
    width: 30%;
    
}
.ota-parent{
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap ;
}

.my-block.reverse{
    flex-direction:row-reverse;
}
.side-img{
    margin-left: 70px;
    margin-top: -60px;
    height: 500px;
    width: auto;
}
.mv-img{
    flex:1;
    position:relative;
}
.product-nav:hover{
    background-color: #dee2e4;
    border-radius: 10px;
    transition-duration: .5s;
}
/*Vertical line css statt  */
.vertical-hr {
  width: 1px;
  height: 100px;
  background-color: #2563eb;
  border: none;
}

/*Vertical line css end  */

.mv-img img{
    width:90%;
    border-radius:20px;
    box-shadow:0 25px 50px rgba(0,0,0,.12);
    transition:transform .4s ease;
}

.mv-img:hover img{
    transform:scale(1.03);
}

.mv-text{
    flex:1;
}

.mv-tag{
    display:inline-block;
    color:#0d6efd;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:14px;
    position:relative;
}

.mv-tag::after{
    content:"";
    display:block;
    width:40px;
    height:3px;
    background:#0d6efd;
    margin-top:8px;
    border-radius:10px;
}

.mv-text h2{
    font-size:38px;
    margin:20px 0;
    line-height:1.3;
    color:#111;
}

.mv-text p{
    font-size:17px;
    line-height:1.8;
    color:#555;
    max-width:520px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .mv-block,
    .mv-block.reverse{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .mv-text p{
        max-width:100%;
    }

    .mv-text h2{
        font-size:28px;
    }

    .mv-tag::after{
        margin:8px auto 0;
    }
}
.mv-list{
    margin-top:25px;
    list-style:none;
    padding:0;
}

.mv-list li{
    font-size:16px;
    color:#444;
    padding-left:28px;
    margin-bottom:14px;
    position:relative;
    line-height:1.6;
}

.mv-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:2px;
    color:#0d6efd;
    font-weight:bold;
}



/* our mission end */


/* underline style start  */
.section-title{
    position:relative;
    display:inline-block;
    padding-bottom:12px;
}

.section-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:3px;
    background:#0d6efd;
    border-radius:3px;
}
.section-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:80px;
    height:4px;
    background:linear-gradient(90deg,#0d6efd,#00c6ff);
    border-radius:5px;
}
.section-title{
    position:relative;
    text-align:center;
}

.section-title::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
    width:70px;
    height:3px;
    background:#0d6efd;
}
.section-title{
    position:relative;
    text-align:center;
}

.section-title::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
    width:70px;
    height:3px;
    background:#0d6efd;
}
.section-title{
    position:relative;
    display:inline-block;
}

.section-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:#0d6efd;
    transition:.4s ease;
}

.section-title:hover::after{
    width:100%;
}

/* underline style end */

/* platform start  */
.platform-section{
  background:linear-gradient(135deg,#0a0dbb,#1b1fd9);
  color:#fff;
  padding:80px 20px;
}

.platform-container{
  max-width:1300px;
  margin:auto;
}

/* HEADER */
.platform-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  margin-bottom:60px;
}

.platform-header h2{
  font-size:38px;
  line-height:1.3;
  max-width:650px;
}

.platform-header p{
  max-width:420px;
  opacity:.9;
  line-height:1.6;
}

/* HIGHLIGHT WORD */
.highlight{
  background:#4f6bff;
  padding:4px 10px;
  border-radius:6px;
}

/* CARDS */
.platform-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.platform-card{
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  border-radius:18px;
  padding:30px;
  transition:.3s ease;
}

.platform-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,.12);
}

.platform-card .icon{
  font-size:34px;
  margin-bottom:18px;
}

.platform-card h4{
  margin-bottom:12px;
  font-size:20px;
}

.platform-card p{
  font-size:15px;
  opacity:.9;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:992px){
  .platform-header{
    flex-direction:column;
  }

  .platform-cards{
    grid-template-columns:1fr;
  }

  .platform-header h2{
    font-size:30px;
  }
}

/* platform end  */
/*  30% discunt popuo start*/
.discount-btn {
  position: fixed;
  right: 0;
  top: 40%;
  writing-mode: vertical-rl; 
  text-orientation: mixed;
  color: #fff;
  padding: 14px 12px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
  border-radius: 8px 0 0 8px;
  letter-spacing: 1px;
  font-weight: bold;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  z-index: 999;
  animation: colorCycle 5s infinite;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
@keyframes colorCycle {
  0%   { background: #2563eb; } /* Blue */
  20%  { background: #16a34a; } /* Green */
  40%  { background: #d97706; } /* Orange */
  60%  { background: #9333ea; } /* Purple */
  80%  { background: #dc2626; } /* Red */
  100% { background: #2563eb; }
}
.discount-btn:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 25px;
  border-radius: 12px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

.popup h2 {
  text-align: center;
  margin-bottom: 10px;
}

.popup p {
  text-align: center;
  color: #555;
  margin-bottom: 20px;
}

.popup input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.popup button {
  width: 100%;
  padding: 12px;
  background: #16a34a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.5;
}

.popup button:enabled {
  opacity: 1;
}

/*  30% discunt popuo end*/

/* chennal Manager start */
.channel-manager {
  padding: 80px 0;
  background: #f8fafc;
  font-family: "Segoe UI", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.cm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.cm-image {
  position: relative;
}

.cm-image img {
  width: 100%;
  border-radius: 20px;
}

.cm-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #2563eb;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.cm-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0f172a;
}

.cm-content h2 span {
  color: #2563eb;
}

.cm-content p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cm-points {
  list-style: none;
  padding: 0;
}

.cm-points li {
  background: #ffffff;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 10px;
  font-weight: 500;
  color: #0f172a;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
  padding-left: 40px;
}

.cm-points li::before {
  content: "✔";
  position: absolute;
  left: 15px;
  top: 14px;
  color: #2563eb;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .cm-grid {
    grid-template-columns: 1fr;
  }

  .cm-content h2 {
    font-size: 28px;
  }
}

/* chennal Manager end */
/*Direct booking start  */
.booking-engine {
  padding: 80px 0;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

.be-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left */
.be-content h2 {
  font-size: 40px;
  color: #0f172a;
  line-height: 1.2;
}

.be-line {
  display: inline-block;
  width: 5px;
  height: 50px;
  background: #2563eb;
  margin-right: 12px;
  vertical-align: middle;
}

.be-content p {
  margin: 20px 0;
  color: #475569;
  font-size: 16px;
  max-width: 480px;
}

.be-points {
  list-style: none;
  padding: 0;
}

.be-points li {
  background: #f8fafc;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 10px;
  font-weight: 500;
  position: relative;
  padding-left: 42px;
}

.be-points li::before {
  content: "✔";
  position: absolute;
  left: 16px;
  color: #2563eb;
  font-weight: bold;
}

.be-chat {
  display: inline-block;
  margin-top: 20px;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-size: 14px;
}

/* Right */
.be-image {
  position: relative;
}

.be-image img {
  width: 100%;
  border-radius: 50%;
}

.be-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #4f46e5;
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.be-card {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.be-card h4 {
  font-size: 14px;
  color: #475569;
  margin-bottom: 5px;
}

.be-card strong {
  font-size: 20px;
  color: #0f172a;
}

.be-card span {
  display: block;
  font-size: 12px;
  color: #16a34a;
  margin: 6px 0;
}

.progress {
  height: 6px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}

.progress::after {
  content: "";
  display: block;
  width: 70%;
  height: 100%;
  background: #22c55e;
}

.be-cta {
  position: absolute;
  bottom: -30px;
  right: 50%;
  transform: translateX(50%);
  background: #ffffff;
  padding: 16px 22px;
  border-radius: 40px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .be-container {
    grid-template-columns: 1fr;
  }

  .be-content h2 {
    font-size: 32px;
  }

  .be-card {
    left: 10px;
  }
}

/*Direct booking end  */
/* sameless start */
.seamless-platform {
  padding: 80px 0;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

.sp-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left */
.sp-content h2 {
  font-size: 40px;
  color: #0f172a;
  line-height: 1.2;
}

.sp-line {
  display: inline-block;
  width: 5px;
  height: 50px;
  background: #2563eb;
  margin-right: 12px;
  vertical-align: middle;
}

.sp-content p {
  margin: 20px 0;
  color: #475569;
  font-size: 16px;
  max-width: 480px;
}

.sp-points {
  list-style: none;
  padding: 0;
}

.sp-points li {
  background: #f8fafc;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 10px;
  font-weight: 500;
  position: relative;
  padding-left: 42px;
}

.sp-points li::before {
  content: "✔";
  position: absolute;
  left: 16px;
  color: #2563eb;
  font-weight: bold;
}

.sp-chat {
  display: inline-block;
  margin-top: 20px;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-size: 14px;
}

/* Right */
.sp-image {
  position: relative;
}

.sp-image img {
  width: 100%;
  border-radius: 20px;
}

.sp-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.sp-stats {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  display: flex;
  gap: 30px;
  padding: 16px 26px;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.sp-stats div {
  text-align: center;
}

.sp-stats strong {
  display: block;
  font-size: 18px;
  color: #0f172a;
}

.sp-stats span {
  font-size: 12px;
  color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
  .sp-container {
    grid-template-columns: 1fr;
  }

  .sp-content h2 {
    font-size: 32px;
  }

  .sp-stats {
    gap: 16px;
    padding: 12px 20px;
  }
}
.mission-img , .vision-img{
  height: 380px;
  width: 50%;
}

/* sameless end */
/*Review heading start*/
.review-heading{
  text-align: center;
  margin-bottom: 30px;
}
/*Review heading end*/


/*Hotel-software html card css start  */
.hotel-solutions {
  padding: 60px 20px;
  background: #f8f8f8;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.card-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.solution-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.solution-card img {
  width: 100%;
  height: 170px;
  margin-bottom: 15px;
  border-radius: 20px;
}

.solution-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.solution-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.solution-card:hover {
  transform: translateY(-10px);
  background: rgb(208,173,124);
}

.solution-card:hover h3,
.solution-card:hover p {
  color: #fff;
}

/*Hotel-software html card css end  */



.service-parent{
  display: flex;
  justify-content: space-around;
}

/*Advatigement start  */
.hero-cta {
  position: relative;
  width: 100%;
  min-height: 450px;

  background-image: url(assets/advatement-bg-img.jfif);
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.75)
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 750px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-content h1 span {
  color: #4f6cff; /* blue highlight */
}

.hero-content p {
  font-size: 16px;
  color: #e5e5e5;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #4f6cff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #3b54e5;
  transform: translateY(-2px);
}

/*Advatigement end  */

/* swiper js css  for services start  */
  /* Swiper Container Styles */
 /* Reset and Base Styles */
     /* Reset and Base Styles */
      /* Reset and Base Styles */
      /* Reset and Base Styles */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    /* Hybrid Container */
    .services-hybrid-container {
        width: 100%;
        height: auto;
        min-height: 400px;
        padding: 20px 50px 50px 50px;
        position: relative;
        overflow: hidden;
    }
    
    /* Infinite Track */
    .infinite-track {
        display: flex;
        gap: 15px;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        width: max-content;
        will-change: transform;
        padding: 10px 5px;
    }
    
    /* Service Card */
    .service-card {
        flex: 0 0 auto;
        width: 280px;
        height: 320px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        background: white;
        cursor: grab;
        user-select: none;
    }
    
    .service-card:active {
        cursor: grabbing;
    }
    
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }
    
    .card-header {
        height: 150px;
        overflow: hidden;
    }
    
    .card-header img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .service-card:hover .card-header img {
        transform: scale(1.05);
    }
    
    .card-body {
        padding: 16px;
        height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .card-body h4 {
        margin: 0 0 8px 0;
        font-size: 18px;
        line-height: 1.3;
        color: #333;
        font-weight: 600;
    }
    
    .card-body p {
        margin: 0;
        color: #666;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .card-footer {
        padding: 0 16px 20px 16px;
        text-align: center;
    }
    
    .card-footer a {
        display: inline-block;
        padding: 10px 24px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: white;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-weight: 500;
        font-size: 14px;
        border: none;
        cursor: pointer;
    }
    
    .card-footer a:hover {
        background: linear-gradient(135deg, #0056b3, #003d82);
        transform: translateY(-2px);
    }
    
    /* Navigation Buttons */
    .nav-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        border: 2px solid #007bff;
    }
    
    .nav-button:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    
    .nav-button svg {
        fill: #007bff;
        width: 24px;
        height: 24px;
    }
    
    .prev-button {
        left: 10px;
    }
    
    .next-button {
        right: 10px;
    }
    
    /* Disabled state */
    .nav-button.disabled {
        opacity: 0.4;
        cursor: not-allowed;
        pointer-events: none;
        box-shadow: none;
        border-color: #ccc;
    }
    
    .nav-button.disabled svg {
        fill: #ccc;
    }
    
    .nav-button.disabled:hover {
        transform: translateY(-50%);
        box-shadow: none;
    }
    
    /* Pagination Dots */
    .pagination-dots {
        position: absolute;
        bottom: 15px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        z-index: 10;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .dot.active {
        background: #007bff;
        transform: scale(1.2);
    }
    
    .dot:hover {
        background: #007bff;
        transform: scale(1.1);
    }
    
    /* Auto-scroll Animation */
    @keyframes autoScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 8 - 15px * 8));
        }
    }
    
    .auto-scroll .infinite-track {
        animation: autoScroll 40s linear infinite;
    }
    
    .infinite-track:hover {
        animation-play-state: paused;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .services-hybrid-container {
            padding: 20px 40px 50px 40px;
        }
        
        .service-card {
            width: 260px;
            height: 310px;
        }
        
        .card-header {
            height: 140px;
        }
        
        .card-body {
            padding: 14px;
            height: 110px;
        }
        
        .card-body h4 {
            font-size: 17px;
        }
        
        .nav-button {
            width: 40px;
            height: 40px;
        }
        
        .nav-button svg {
            width: 20px;
            height: 20px;
        }
        
        .prev-button {
            left: 5px;
        }
        
        .next-button {
            right: 5px;
        }
        
        @keyframes autoScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-260px * 8 - 15px * 8));
            }
        }
    }
    
    @media (max-width: 480px) {
        .services-hybrid-container {
            padding: 20px 35px 50px 35px;
        }
        
        .service-card {
            width: 240px;
            height: 300px;
        }
        
        .card-header {
            height: 130px;
        }
        
        .card-body {
            padding: 12px;
            height: 100px;
        }
        
        .card-body h4 {
            font-size: 16px;
        }
        
        .card-footer a {
            padding: 8px 20px;
            font-size: 13px;
        }
        
        .nav-button {
            width: 36px;
            height: 36px;
            display: none; /* Hide arrows on very small screens */
        }
        
        @keyframes autoScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-240px * 8 - 15px * 8));
            }
        }
    }
    
    /* Hide navigation on very small screens */
    @media (max-width: 360px) {
        .nav-button {
            display: none;
        }
        
        .services-hybrid-container {
            padding: 20px 15px 50px 15px;
        }
    }






/* swiper js css  for services end  */