@import url(https://db.onlinewebfonts.com/c/2cd5263ca3ce6bc9dca6a336c613a5aa?family=Cambria+W01+Regular);
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   font-family: "Cambria W01 Regular";
   
}


body {
    overflow-x: hidden;
    width: 100%;
    font-family: "Cambria W01 Regular";
}
p {
    text-transform: capitalize;
    font-size: 15px;
    font-family: "Cambria W01 Regular";
}
h4{
  font-family: "Cambria W01 Regular"; 
}
h1{
   font-family: "Cambria W01 Regular";
}
h2{
   font-family: "Cambria W01 Regular";
}
h3{
   font-family: "Cambria W01 Regular";
}
.hero-container h1{
 /* font-family: "Lobster", sans-serif; */
 font-family: "Cambria W01 Regular";
 font-size: 45px;
}
/* Logo */
.logo {
    width: 15%;
}

.logo img {
    width: 100%;
    border-radius: 10px;
}

/* Sticky Header */
.site-header {
    background: radial-gradient(
  circle at center,
  rgb(19 22 69) 0%,
  rgb(19 22 69) 12%,
  rgb(7 7 26) 45%,
  rgb(7 7 26) 100%
);
    position: sticky;
    top: 0;
    z-index: 999;
    /* border-bottom: 1px solid #ddd; */
}

 #header-2 {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: all 0.35s ease;
  z-index: 999;
}

/* Text color when transparent */
#header-2 .nav-menu a,
#header-2 .icon-user,
#header-2 .lang-wrapper,
#header-2 .menu-icon {
  color: #fff;
}

/* On Scroll */
#header-2.scrolled {
  background: #07081d;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

/* *************** */

.header-container {
    max-width: 1300px;
    margin: auto;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* Desktop Menu */
.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.demo-btn {
    background: #404de4;
    color: #fff;
}
.demo-btn:hover {
     background: #fff;
     color: #000;
}

.outline-btn {
    background: transparent;
    border: 1.5px solid #fff;
    color: #fff;
}
.outline-btn:hover{
   background: #fff;
    border: 1.5px solid #fff;
    color: #000; 
}

.icon {
    font-size: 18px;
    cursor: pointer;
}

.menu-icon {
    font-size: 17px;
    cursor: pointer;
    color: #fff;
    display: none;
}

.icon-user i {
    color: #000000;
}

/* ----------- Mobile Menu ----------- */
@media (max-width: 992px) {

    .menu-icon {
        display: block;
    }

    .logo {
        width: 30%;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f6f6ee;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 0;
        font-size: 16px;
        color: #000;
    }
}

@media (max-width: 576px) {

    .demo-btn,
    .outline-btn {
        display: none;
    }

    .logo {
        width: 40%;
    }
}

/* Language Dropdown */
#langToggle i {
    color: #fff;
    font-size: 12px;
}

.lang-wrapper {
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: 40px;
    right: 0;
    width: 230px;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 9999;
}

.lang-dropdown.active {
    display: block;
}

.lang-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
}

.lang-item:hover {
    background: #f3f3f3;
}

.lang-item.active {
    background: #f5f5f5;
    font-weight: 600;
}

.check {
    font-size: 14px;
}


/* footer */
.main-footer {
    border-radius: 0px 0px 50px 50px;
    background: #fff;
    padding-top: 30px;
}

.site-footer {
    background: #000;
    /* padding: 40px 0px; */
}

/* ---------- Top Section ---------- */
.footer-top {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-top-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-top-left h3 {
    font-size: 18px;
    font-weight: 600;
}

.footer-top-left a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
}

.footer-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Social Icons */
.social-icons span {
    background: #000;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}
.social-icons span a{
  color: #fff;
}

/* Buttons */
/* .app-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
} */

.lang-btn {
    background: transparent;
    border: 1.5px solid #000;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

/* Divider */
hr {
    margin: 30px auto;
    max-width: 1200px;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

/* ---------- Main Footer ---------- */
.footer-main {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col .muted {
    opacity: 0.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top-left {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-top-right {
        flex-wrap: wrap;
    }
}

/* Language Dropdown */
.footer-lang-wrapper {
    position: relative;
}

.lang-dropdown {
    height: 400px;
    position: absolute;
    bottom: 48px;
    right: 0;
    width: 230px;
    background: #000;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 999;
}

.lang-dropdown.active {
    display: block;
}

.lang-item {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.lang-item:hover {
    background: #f3f3f3;
    color: #000;
}

.lang-item.active {
    background: #f5f5f5;
    font-weight: 600;
    color: #000;
}

.check {
    font-size: 14px;
}

/* animetion */
.block-1 {
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
    
}

.animation-1 {
    display: flex;
    flex-wrap: nowrap;
}

.block-img-1 {
    display: flex;
    align-items: center;
    font-size: 60px;
    color: #000;
    margin-right: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    /* Prevent shrinking */
}

/* footer-2 */
.footer-bottom {
    background: #000;
    padding: 50px 20px 30px;

}

.footer-bottom-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Left */
.footer-bottom-left {
    min-width: 200px;
}

.footer-logo {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-left: -28px;
}

.footer-logo sup {
    font-size: 16px;
    vertical-align: super;
}

.footer-bottom-left p {
    font-size: 14px;
    color: #fff;
}

/* Links */
.footer-bottom-links {
    display: flex;
    gap: 80px;
    width: 58%;
}

.link-col a {
    display: block;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 14px;
    transition: opacity 0.25s ease;
}

.link-col a:hover {
    opacity: 0.7;
}

/* Disclaimer */
.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 0;
    font-size: 11px;
    line-height: 1.6;
    color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom-links {
        gap: 40px;
        /* flex-wrap: wrap; */
    }
}



/* banner */

.hero {
    /* background: #0d0f31; */
    padding: 35px 20px;
    overflow: hidden;
    padding-bottom: 0px;
    height: 734px;
    margin-top: -63px;
    padding-top: 100px;
    color: #fff
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
} */

/* Heading */
.hero .hero-container h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #fff;
    margin-top: 108px;
}

/* Visual Area */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Phone */
.phone {
    width: 400px;
    z-index: 5;
}

.phone img {
    width: 100%;
    border-radius: 40px;
}

/* Floating Cards */
.card {
    width: 20%;
    position: absolute;
    border: none;
}

.card img {
    width: 100%;
    background: none;
} 




/* Positions */
.card-left-top {
    top: 100px;
    left: 0px;
    border: none;
}

.card-left-bottom {
    bottom: 193px;
    left: 100px;
    flex-direction: column;
    align-items: flex-start;
    border: none;
}

.card-right-top {
    top: 100px;
    right: 50px;
    flex-direction: column;
    align-items: flex-start;
    border: none;
}

.card-right-bottom {
    bottom: 170px;
    right: 100px;
}

.card-end-bottom {
    bottom: 0;
    right: -60px;
}

.card-end-bottom img {
    width: 100%;
}



/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 44px;
    }

    .card {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .phone {
        width: 260px;
    }
}
/* amimetion banner*/
.card-left-top {
  animation: fadeLeft 1s ease forwards;
  animation-delay: .2s;
}

.card-left-bottom {
  animation: fadeLeft 1s ease forwards;
  animation-delay: .4s;
}
.card-right-top {
  animation: fadeRight 1s ease forwards;
  animation-delay: .6s;
}

.card-right-bottom {
  animation: fadeRight 1s ease forwards;
  animation-delay: .8s;
}
.phone {
  animation: zoomCenter 1.2s ease forwards;
  animation-delay: .5s;
}
.card img,
.phone img {
  transition: transform .4s ease;
}

.card:hover img {
  transform: scale(1.03);
}

/*  */
.banner-sec{
    /* background-image: url("../img/hero-1.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover; */
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}
.banner-text h1{
      font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-top: 180px;
}
/* *****************end */

/* Trusted-sec */
.Trusted-sec {
    background-color: #a9b0eb;
    padding: 10px;
}

.Trusted-sec h6 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: 17px;
}

/*  */
.block {
    overflow: hidden;
}

.animation {
    display: flex;
    width: 3810px !important;
}

.animation div {
    padding: 0 10px;
}


.block-img img {
    width: 40%;
}

/* slider */
.swiper {
    width: 100%;
    height: 100%;
    margin-top: 100px;
    margin-bottom: 100px;
}

.swiper-slide {
    text-align: center;
    font-size: 16px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Corporate-Travel-box {
  box-shadow: rgba(50, 50, 93, 0) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0) 0px 18px 36px -18px; */
    border: 1px solid #ddd;
    padding: 0px;
    background-color: #fff;
    border-radius: 10px;
    height: 460px;
}

.Corporate-text {
    padding: 10px;
    padding-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
}

.Corporate-text h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #000;
    
  
}

.WHAT-OFFISTRIP-DOES-sec {
    text-align: center;
    margin: 50px;
}

.swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 20px !important;
}


/* booking-tool */
.booking-tool-img{
    position: relative;
    display: flex;
    gap: 20px;
}
.booking-tool-img-left{
   width: 50%;
} 
.booking-tool-img-1{
     width: 100%;
}
.booking-tool-img-1 .frame{
    width: 100%;
    height: 380px;
}
.booking-tool-img-left img{
    width: 100%;
    height: 250px;
    border-radius: 10px;
}
.booking-tool-img-right{
 width: 50%;
}
.work-text-Offistrip h6{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #404de4;
    border: 1px solid #404de4;
    padding: 5px 10px;
    width: 11%;
    border-radius: 6px;
    display: flex;
    justify-content: center;
}
.booking-tool-img-right img{
    width: 100%;
    height: 250px;
    border-radius: 10px;
}
.BOOKING-TOOL-sec {
    margin: 50px;
}
.booking-img-2 {
    margin-top: 20px;
}
.booking-text {
    text-align: center;
    margin-bottom: 50px;
}
.booking-text h1{
    font-size: 40px;
    font-weight: 700;
    color: #000;
    
}
.booking-contant-box p{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.booking-contant-box ul{
    padding: 0px;
    list-style: none;
}
.booking-contant-box ul li{
    margin-bottom: 15px;
}
.booking-contant-box ul li i{
    color: #424ce4;
   
}
.Book-CBT-Demo{
    background: #404de4;
    color: #fff;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    border: none;
}
/* .Inventory-sec {
    position: relative;
    padding: 100px 50px;
    background-image: url(../img/img-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
} */

/* Overlay */
/* .Inventory-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); 
    z-index: -1;
} */

/* Content above overlay */
.Inventory-sec .row {
    position: relative;
    z-index: 2;
}

.Inventory-sec .booking-contant-box h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

.Inventory-sec .booking-contant-box ul li {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}

.Inventory-sec .booking-contant-box ul li i {
    color: #424ce4;
}
/* video */
.Inventory-sec {
  position: relative;
  padding: 100px 60px;
  overflow: hidden;
  color: #fff;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  object-fit: cover;
  z-index: -2;
}

/* Dark Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 40, 0.75);
  z-index: -1;
  height: 800px;
}

/* Content Layer */
.content-layer {
  position: relative;
  z-index: 2;
}

/* Text Box */
.booking-contant-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.booking-contant-box ul {
  list-style: none;
  padding: 0;
}

.booking-contant-box ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #fff;
}

.booking-contant-box ul li i {
  color: #4f5cff;
  margin-right: 10px;
}

/* Logos */
.integration-logos {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  align-items: center;
}

.integration-logos img {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Right Side Round Video */
.video-cut-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.video-cut-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255,255,255,0.15);
}

.video-cut-circle video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .Inventory-sec {
    padding: 70px 20px;
  }

  .video-cut-wrapper {
    justify-content: center;
    margin-top: 40px;
  }

  .video-cut-circle {
    width: 220px;
    height: 220px;
  }
}

/* what */
.HOW-IT-WORKS{
    margin: 50px;
}
.work-box{
    display: flex;
    gap: 20px;
    justify-content: center;
}
.work-box-1{
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  padding: 40px;
  text-align: center;
  border-radius: 6px;
  width: 100%;

}

.work-box-1:hover{
    background-color: #c6ddfb;
}
.work-box-1 h4{
    font-size: 22px;
    font-weight: 600;
}
.work-img{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.work-img img{
    width: 30%;
}
.work-box-2{
  width: 32%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  padding: 40px;
  text-align: center;
  border-radius: 6px;
}
.work-box-2:hover{
    background-color: #c6ddfb;
}
.work-box-2 h4{
    font-size: 22px;
    font-weight: 600;
}
.work-text{
    text-align: center;
    margin-bottom: 50px;
}
/* WHY OFFISTRIP */
.Offistrip-img{
    width: 40%;
}
.Offistrip-sec{
    background-image: url(../img/Light-image-version-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-color: #4c4c4c; */
    padding: 50px 50px;
    padding-bottom: 0px;
}
.Offistrip-text-box-1{
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 10px 20px;
    margin-bottom: 20px;
}
.Offistrip-text-box-1:hover{
border: 1px solid #eb2dd6;
}
.Offistrip-text-box-1 h5{
    font-size: 19px;
    font-weight: 500;
    color: #fff;
}
.Offistrip-img-box {
    display: flex;
    justify-content: center;
    gap: 0px;
}
.work-text-Offistrip{
    text-align: center;
    margin-bottom: 10px;
}
.why{
  display: flex;
  justify-content: center;
}
.work-text-Offistrip h1{
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0px;
}
.work-text-Offistrip p{
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
/* Planning-Corporate-sec */
.Planning-Corporate-sec{
    background-color: #07071a;
    padding: 50px;
   
    border-radius: 0px 0px 80px 80px;
    padding-bottom: 60px;
}
.Planning-Corporate-sec h6{
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    line-height: 44px;
}
.Get-Corporate-Quote{
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.Corporate-btn{
    display: flex;
    justify-content: right;
}
/*  */
.work-box-3 {
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
   box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    border-radius: 6px;
    padding: 5px 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.work-box-3 p{
  margin-top: 10px;
}
.work-box-2 h4{
    font-size: 20px;
    font-weight: 600;
    color: #000;
    
}
/*  */
.Dashboards-sec {
    position: relative;
    padding: 50px 0px;
    background-image: url(../img/dashbaord.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
.Dashboards-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* adjust opacity if needed */
    z-index: -1;
}

/* Content above overlay */
.Dashboards-sec .row {
    position: relative;
    z-index: 2;
}
.Dashboards-textbox h1{
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    line-height: 50px;
    margin-top: 40px;
}
.Dashboards-textbox p{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    
}
.custom-swiper .custom-slide .work-box-Dashboards{
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    background-color: #fff;
    padding: 40px;
  
    text-align: center;
    border-radius: 6px;
    height: 239px;
    
}
.custom-swiper .custom-slide .work-Dashboardsimg{
    display: flex;
    justify-content: center;
}
.custom-swiper .custom-slide .work-Dashboardsimg img{
    width: 30%;
}
.custom-slide .work-box-Dashboards h4{
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-top: 20px;
}


.custom-swiper {
    overflow: hidden;
}

.custom-wrapper {
    display: flex;
    transition-property: transform;
}

.custom-slide {
    flex-shrink: 0;
    width: 100%;
}
.Dashboards-container{
    margin: 50px;
}
/*  */
.journey-sec {
    padding: 80px 0;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.journey-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.journey-row {
    display: flex;
    gap: 30px;
}

.journey-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    flex: 1;
}

.journey-img {
    position: relative;
}

.journey-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.step-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #5a4bff;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
}

.journey-content {
    position: relative;
    padding: 60px 30px 40px;
    text-align: center;
}

.journey-icon {
    width: 70px;
    height: 70px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: rgba(100, 100, 111, 0.2) 3px 20px 15px 0px;
}

.journey-icon img {
    width: 32px;
}

.journey-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.journey-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
.Offistrip-mainbox{
    /* display: flex;
    justify-content: center;
    gap: 20px; */
}
.Offistrip-box1 {
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 10px;
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.Offistrip-box1 i {
  font-size: 25px;
  color: #fff;
  transition: 0.3s ease;
}

.Offistrip-box1 h6 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
  transition: 0.3s ease;
}

/* ✅ Hover effect */
.Offistrip-box1:hover {
  background-color: #404de4;
  border-color: #404de4;
}

.Offistrip-box1:hover i,
.Offistrip-box1:hover h6 {
  color: #fff;
}

.Offistrip-mainsec {
    position: relative;
    background-image: url(../img/Light-image-version-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    z-index: 1;
}

.Offistrip-mainsec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: -1;
}
/* about */
.abour-img img{
    width: 100%;
    border-radius: 10px;
}
.about-text h1{
    font-size: 50px;
    font-weight: 600;
    color: #fff;
}
.about-text p{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 30px;
}
.about-sec{
    padding: 50px;
    background-color: #07081d;
    padding-top: 100px;
    margin-top: -1px;
}
/* 2 */
.values-section {
  padding: 50px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: #f7f6ef;
  border-radius: 20px;
  padding: 35px 30px;
}

.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.value-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #6a6a6a;
}
.img-values-box img{
    width: 15%;
    margin-bottom: 20px;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* solution */
.solutions-sec {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f7f8ff 0%, #ffffff 100%);
  text-align: center;
}

.solutions-container {
  max-width: 1200px;
  margin: auto;
}

.solutions-sec h2 {
  font-size: 44px;
  font-weight: 800;
  color: #1f1f2e;
  margin-bottom: 15px;
}

.solutions-sub {
  font-size: 17px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.solution-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  border: 1px solid #eee;
  transition: 0.35s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(64, 77, 228, 0.15);
  border-color: #404de4;
}

/* Icon */
.solution-icon {
  width: 56px;
  height: 56px;
  background: #eef0ff;
  color: #404de4;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  transition: 0.3s;
}

.solution-card:hover .solution-icon {
  background: #404de4;
  color: #fff;
}

.solution-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1f1f2e;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}
@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solutions-sec h2 {
    font-size: 32px;
  }
}
/* ********************************* */
/* 1 */
.solution-one {
  padding: 100px 20px;
  background: #f8f9ff;
}

.solution-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.solution-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.solution-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.muted {
  color: #777;
  margin-top: 15px;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-box {
  padding: 20px;
  background: #fff;
  border-left: 4px solid #404de4;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
/* 2 */
.solution-two {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.solution-two h2 {
  font-size: 40px;
  font-weight: 800;
}

.solution-two .sub {
  max-width: 700px;
  margin: 15px auto 50px;
  color: #666;
}

.timeline {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.timeline-card {
  padding: 25px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, #404de4, #6a72ff);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 15px 30px rgba(64,77,228,0.3);
}
/* 3 */
.solution-three {
  padding: 50px 20px;
  background: #ddd;
  color: #fff;
}

.solution-three-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.solution-three-text h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.solution-three-text p {
  color: #000000;
  line-height: 1.7;
}

.solution-three-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dark-card {
  padding: 18px;
  background: #1a1f4d;
  border-left: 5px solid #6a72ff;
  font-weight: 600;
}
.solution-three-cards p{
  margin: 0px;
  padding: 0px;
  color: #000;
}
/* 4 */
.offsite-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f5f7ff, #ffffff);
}

.offsite-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.offsite-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #404de4;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 15px;
}

.offsite-left h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.main-text {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.sub-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.offsite-points {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-weight: 500;
}

.offsite-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.offsite-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.offsite-card h4 {
  font-size: 20px;
  font-weight: 500;
  /* margin-bottom: 10px; */
}

.offsite-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}
.offsite-card:hover{
 background: linear-gradient(135deg, #404de4, #6a72ff);
}

.offsite-card:hover h4,
 .offsite-card:hover p{
 
  color: #fff;
}

/* .offsite-card.highlight p {
  color: #e4e6ff;
} */
.Engagement-imgbox{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.Engagement-imgbox img{
    width: 50%;
}

/* ************************************** */

/* HERO */
.solutions-hero {
  /* background: linear-gradient(135deg, #4b4ff6, #2f37d6); */
  background-color: #07081d;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  padding-top: 100px;
  margin-top: -7px;
}

.solutions-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.solutions-hero p {
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}

.Explore-Solutions {
  display: inline-block;
  margin-top: 25px;
  background: #fff;
  color: #2f37d6;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* OFFER */
.offer-section {
  padding: 90px 20px;
  text-align: center;
}

.offer-section h2 {
  font-size: 40px;
  font-weight: 700;
}

.subtitle {
  margin-top: 10px;
  color: #666;
}

.offer-grid {
  max-width: 1224px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.offer-card i {
  font-size: 23px;
  color: #404de4;
   border: 1px solid #ddd;
  padding: 8px 20px;
  border-radius: 6px;
  width: 21%;
}

.offer-card h4 {
  margin: 15px 0;
}

.offer-card p {
  font-size: 14px;
  color: #666;
}

.offer-card a {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: #404de4;
  text-decoration: none;
  border: 1px solid #ddd;
  padding: 8px 20px;
  border-radius: 6px;
}
.offer-card i:hover,
.offer-card a:hover{
    background-color: #424ce4;
    color: #fff;
}

/* DETAIL */
.detail-section {
  max-width: 1224px;
  margin: auto;
  padding: 90px 20px;
}

.detail-section.reverse {
  grid-template-columns: 1fr 1fr;
}

.detail-text h3 {
  font-size: 33px;
  font-weight: 600;
  margin: 15px 0;
}

.detail-text p {
  color: #666;
  margin-bottom: 20px;
}

.detail-text ul {
  list-style: none;
  padding-left: 10px;
}

.detail-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}

.detail-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4b4ff6;
}

.tag {
  background: #eef0ff;
  color: #4b4ff6;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 20px;
}



.btn-secondary {
  display: inline-block;
  margin-top: 25px;
  background: #4b4ff6;
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
}

/* STATS */
.stats-section h2{
    font-size: 40px;
    font-weight: 600;
   
}
.stats-section {
  background: linear-gradient(135deg, #4b4ff6, #2f37d6);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.stats-grid {
  max-width: 900px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stats-grid-1 h3 {
  font-size: 60px;
}

/* CTA */
.cta-section {
  background: #eef0ff;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 30px;
}

.cta-buttons {
  margin-top: 25px;
}

.Contact-Us {
  border: 2px solid #4b4ff6;
  color: #4b4ff6;
  padding: 14px 26px;
  border-radius: 6px;
  margin-left: 15px;
  text-decoration: none;
}
.book-demo{
background: #404de4;
color: #ffffff;
padding: 14px 26px;
border-radius: 6px;
font-weight: 600;
text-decoration: none;
}
.detail-box img{
    border-radius: 10px;
}







/* RESPONSIVE */
@media (max-width: 900px) {
  .offer-grid,
  .detail-section,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .solutions-hero h1 {
    font-size: 36px;
  }
}
/* faq */
.faq-section {
  padding: 80px 20px;
  background: #fff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-title span {
  color: #4f5cff;
}

.faq-subtitle {
  font-size: 15px;
  color: #6b6b6b;
  margin-bottom: 50px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  border: 1px solid #e3e6f5;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  width: 18px;
  height: 18px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.3s;
}

.faq-item.active .faq-question .icon {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fafbff;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.cta-section h2{
  font-size: 40px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 15px;
  }
}


@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
/* 3 */
.leadership-section {
  padding: 0px 20px;
  background: #ffffff;
}

.container {
  max-width: 1300px;
  margin: auto;
}

.leadership-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #111;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.leader-card {
  text-align: center;
  border: 1px solid #ddd;
}

.leader-img {
  position: relative;
  overflow: hidden;
}

.leader-img img {
  width: 100%;
  height: 295px;
  object-fit: cover;
  display: block;
}
.leader-card h3{
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-top: 20px;
}
/* Overlay */
.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 160, 90, 0.85); /* golden overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 0;
  transition: 0.4s ease;
}

/* Hover effect */
.leader-img:hover .social-overlay {
  opacity: 1;
}

/* Icons */
.social-overlay a {
  color: #1a2b4c;
  font-size: 14px;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-overlay a:hover {
  background: #1a2b4c;
  color: #fff;
}


/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
  .leadership-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leadership-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}
/* 4 */
.investors-section {
  background-color: #f7f6ef;
  padding: 50px 20px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.investors-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.investors-container h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.investors-desc {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #6b6b6b;
}

.investors-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 45px 40px;
  align-items: center;
  justify-items: center;
}

.investors-logos img {
 max-width: 250px;
 max-height: 100px;
 object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.investors-logos img:hover {
  opacity: 1;
}
.mySwiper8.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    margin-top: 0px;
    margin-bottom: 0px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .investors-logos {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .investors-container h2 {
    font-size: 32px;
  }

  .investors-desc {
    font-size: 15px;
    margin-bottom: 50px;
  }

  .investors-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
}

@media (max-width: 480px) {
  .investors-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* contact */
.contactbanner-sec {
  background-color: #07081d;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  padding-top: 100px;
  margin-top: -7px;

}

/* Overlay */
/* .contactbanner-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); 
} */

/* Text above overlay */
.contactbanner-sec .row {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.banner-text-1 h1 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}
/* address */
.address-sec{
    margin: 50px;
    margin-top: 100px;
}
.contact-card {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 45px 30px;
    border-radius: 10px;
}
.phone-2 h1{
  font-size: 20px;
  font-weight: 600;
}
#contact-boxmain{
  margin-top: 10px;

}
.phone-1 {
    background-color: #404de4;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    
}
.phone-1 i{
    color: #fff;
}
.main-phone{
  
   /* display: flex;
    justify-content: center;
    margin-bottom: 20px;  */
}
/* form */
.contact-form-sec {
  padding: 30px 0px;
  background: #fff;
}

.form-container {
  max-width: 900px;
  margin: auto;
}

.form-group {
  margin-bottom: 0px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  border: 1px solid #d9d9d9;
  outline: none;
  color: #333;
}

.form-group textarea {
  height: 115px;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9a9a9a;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  margin-bottom: 30px;
  padding-left: 0px;
}

.form-check input {
  width: 14px;
  height: 14px;
}

/* Button */
.submit-btn {
  background: #404de4;
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #07081d;
}
.text-address-box{
    text-align: left;
    margin-bottom: 15px;
}
.text-address-box h1{
    font-size: 40px;
    font-weight: 700;
    color: #000;
}
/* map */
.map-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.main-map{
    margin-bottom: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 250px;
  }
}
/* pricing */
#pricing-main .about-text{
  margin-top: 50px;
  text-align: left;
}
#pricing-main h6{
  font-size: 20px;
  font-weight: 400;
  color: #b1b1b1;
  text-align: center;
  margin-bottom: 15px;
}
#pricing-main p{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
/* 2nd section pricing */
.pricing-work-sec {
  background: radial-gradient(circle at top, #141a3a, #07081d 70%);
  padding: 50px 20px;
  color: #fff;
}

.pricing-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
/* ********************** */
.pricing-plans-sec {
  padding: 50px 20px;
  background: #f9f9fb;
}

.pricing-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.pricing-title {
  font-size: 50px;
 font-weight: 700;
}
.Discover{
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin-bottom: 90px;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
/* .pricing-card-2 {
  background: linear-gradient(180deg, #121b3b, #0b1027);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: left;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    height: 585px;
}

.pricing-card-2:hover {
  transform: translateY(-10px);
} */
 .pricing-card-2{
    background: linear-gradient(180deg, #121b3b, #0b1027);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: left;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 585px;
}

/* HOVER ZOOM */
.pricing-card-2:hover{
    transform: scale(1.04); /* little bit zoom */
    box-shadow: 0 40px 80px rgba(0,0,0,.65);
}


/* Highlighted plan */
.pricing-card-2.active {
  background: #1f2f5f;
  color: #fff;
  /* transform: translateY(-20px); */
  margin-bottom: 0px;
}

.pricing-card-2.active ul li,
.pricing-card-2.active p,
.pricing-card-2.active h4,
.pricing-card-2.active h3 span {
  color: #e6e9ff;
}

/* Headings */
.pricing-card-2 h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.pricing-card-2 h3 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #fff;
}

.pricing-card-2 h3 span {
  font-size: 16px;
  color: #ffffff;
}

/* Text */
.best-for {
  font-size: 14px;
  margin-bottom: 15px;
  color: #fff;
}

.subtext {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

.note {
  font-size: 14px;
  margin-top: 20px;
  color: #666;
}

/* List */
.pricing-card-2 ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.pricing-card-2 ul li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  color: #fff;
}

.pricing-card-2 ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #404de4;
  font-weight: bold;
}

.pricing-card-2.active ul li::before {
  color: #9aa7ff;
}

/* Buttons */
.plan-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  margin-top: 25px;
}

.plan-btn.light {
  background: #404de4;
  color: #fff;
}

.plan-btn.primary {
  background: #404de4;
  color: #fff;
}

.plan-btn.dark {
  background: #404de4;
  color: #fff;
}

/* Onboarding */
.onboarding-box {
  margin-top: 60px;
  padding: 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.onboarding-box h4 {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.active {
    transform: none;
  }
}


/* Header */
.pricing-header h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-header p {
  color: #aab;
  max-width: 650px;
  margin: auto;
  font-size: 16px;
}

/* Cards */
.pricing-cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pricing-card {
  background: linear-gradient(180deg, #121b3b, #0b1027);
  border-radius: 20px;
  padding: 45px 30px;
  text-align: left;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(64,77,228,0.45);
}

/* Active Card */
.pricing-card.active {
  border: 1px solid rgba(64,77,228,0.6);
  background: linear-gradient(180deg, #1b2460, #0b1027);
}

/* Step Number */
.pricing-card .step {
  position: absolute;
  top: -18px;
  right: 25px;
  background: #404de4;
  color: #fff;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
}

/* Icon */
.pricing-icon {
  width: 55px;
  height: 55px;
  background: rgba(64,77,228,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pricing-icon i {
  font-size: 22px;
  color: #404de4;
}

/* Text */
.pricing-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.pricing-card p {
  font-size: 15px;
  color: #ccd;
  line-height: 1.6;
}

/* Footer Points */
.pricing-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.pricing-points {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #bcd;
}

.pricing-points i {
  color: #404de4;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-header h2 {
    font-size: 34px;
  }
}
/*  */
.billing-v2-sec {
  padding: 0px 20px;
  background: radial-gradient(circle at top, #0c0f2d, #07081d);
}

.billing-v2-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0px;
  align-items: center;
}

/* LEFT */
.billing-left img {
  width: 70%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.billing-left h3 {
  font-size: 50px;
  color: #ffffff;
  margin-top: 30px;
  margin-left: 10px;
}

.billing-left p {
  color: #b7c0ff;
  font-size: 15px;
  max-width: 420px;
}

/* RIGHT */
.billing-right {
  display: flex;
  /* flex-direction: column; */
  gap: 20px;
}

.billing-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.07);
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #e3e6ff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.billing-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(6px);
}

.billing-card .icon {
  font-size: 20px;
}
.billing-card-1 {
  /* margin-left: 56px; */
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.07);
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #e3e6ff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.billing-card-1:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(6px);
}

.billing-card-1 .icon {
  font-size: 20px;
}
.billing-card-2 {
  /* margin-left: 110px; */
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.07);
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #e3e6ff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.billing-card-2:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(6px);
}

.billing-card-2 .icon {
  font-size: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .billing-v2-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .billing-left img {
    margin: 0 auto 20px;
  }

  .billing-right {
    align-items: center;
  }

  .billing-card {
    max-width: 420px;
    width: 100%;
  }
}





/* .cbt-pricing-sec {

  text-align: center;
  background-color: #07081d;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  padding-top: 100px;
  margin-top: -7px;
} */

/* .cbt-container {
  max-width: 900px;
  margin: auto;
}

.cbt-tag {
  font-size: 18px;
  font-weight: 600;
  color: #404de4;
}

.cbt-tag small {
  font-size: 12px;
  font-weight: 500;
  margin-left: 4px;
}

.cbt-pricing-sec h1 {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin: 25px 0 20px;
}

.cbt-pricing-sec p {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 40px;
} */

/* Buttons */
/* .cbt-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #404de4;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.25);
  transition: 0.3s;
}

.btn-primary:hover {
  background: #000;
}

.btn-outline {
  border: 2px solid #404de4;
  color: #404de4;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #4f46e5;
  color: #fff;
} */

/* Trusted text */
.cbt-trust {
  font-size: 14px;
  color: #fff;
}
/*  */
.features-sec {
  padding: 50px 20px;
  margin-bottom: 30px;
  background: #faf9ff;
  text-align: center;
}

.features-container {
  max-width: 1200px;
  margin: auto;
}

.features-sec h2 {
  font-size: 44px;
  font-weight: 800;
  color: #1f1f2e;
  margin-bottom: 15px;
}

.features-sub {
  font-size: 17px;
  color: #666;
  margin-bottom: 60px;
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 30px;
  text-align: left;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

/* Icon */
.icon-box {
  width: 48px;
  height: 48px;
  background: #eeecff;
  color: #4f46e5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f1f2e;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}
.book-box{
    text-align: center;
    margin-top: 50px;
}
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-sec h2 {
    font-size: 32px;
  }
}

#detail-section-id{
  display: none;
}
.stats-grid-1 {
    max-width: 900px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
/* platform */
.cbt-hero {
  /* min-height: 100vh; */
  background: radial-gradient(circle at 30% 10%, #2a1d55, #07081d 70%);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 50px 20px;
  padding-top: 150px;
  margin-top: -1px;
}

.cbt-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
}

/* LEFT */
.badge {
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.cbt-left h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cbt-left h1 span {
  color: #404de4;
}

.cbt-left p {
  color: #fff;
  max-width: 480px;
  margin-bottom: 30px;
  font-weight: 400;
}

.cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.CBT-Demo-b {
  background: #404de4;
  padding: 14px 26px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}
.CBT-Demo-b:hover{
  border: 1px solid #fff;
  background: #000;
  padding: 14px 26px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}
.View-Pricing {
  border: 1px solid #404de4;
  padding: 14px 26px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}
.View-Pricing:hover{
   border: 1px solid #404de4;
   background: #404de4;
  padding: 14px 26px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}

.stats {
  display: flex;
  gap: 40px;
}

.stats h3 {
  font-size: 26px;
}

.stats span {
  font-size: 14px;
  color: #aab;
}

/* RIGHT */
.dashboard-card {
  background: linear-gradient(180deg,#121b3b,#0b1027);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  animation: float 7s ease-in-out 0s infinite normal both;
}

.dashboard-header {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  margin-bottom: 24px;
  gap: 20px;
}

.dashboard-header .icon {
    background: #404de4;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 25px;
}

.dashboard-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  margin-top: 1px;
}
.color-red{
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: red;
}
.color-yellow{
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: yellow;
}
.color-green{
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: green;
}
.color-box{
  display: flex;
  gap: 10px;
}
.dashboard-header-box{
  display: flex;
  justify-content: space-between;
}
.dashboard-header span{
  
  font-size: 14px;
  font-weight: 300;
}

.policy {
  background: rgba(0,255,120,0.15);
  color: #3cff9e;
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 12px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.metric {
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 14px;
}
.metric span{
  font-size: 15px;
}

.metric h3 {
  margin-top: 8px;
  font-size: 20px;
}

.requests h5 {
  margin-bottom: 14px;
  font-size: 18px;
}

.request {
  background: rgba(255,255,255,0.04);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  position: relative;
}
.request-1{
  display: flex;
  gap: 12px;
}
.request-text{
  display: grid;
  font-size: 12px;
  margin-top: -4px;
}
.request-text span{
  font-size: 14px;
}
.request-svgimg{
  background: #404de4;
    width: 25px;
    height: 25px;
    border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.request em {
  position: absolute;
  right: 12px;
  top: 14px;
  font-style: normal;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
}

.request em.approved {
  background: rgba(0,255,120,0.2);
  color: #3cff9e;
}

.request em.pending {
  background: rgba(255,200,0,0.2);
  color: #ffce4b;
}
.request em.Review {
  background: rgb(42 50 133);
  color: #7758f3;
}

/* Floating Box */
.floating-box {
  position: absolute;
  bottom: -24px;
  left: 30px;
  background: #1a2352;
  padding: 20px;
  border-radius: 14px;
  font-size: 14px;
  animation: float 5.5s ease-in-out 0s infinite normal both;
  
}
.floating-box-1{
  position: absolute;
  /* bottom: -40px; */
  top: -30px;
 right: 0;
  background: #1a2352;
  padding: 20px;
  border-radius: 14px;
  font-size: 14px;
  animation: float 6.5s ease-in-out 0s infinite normal both;
  animation-delay: 1.2s;
  
}
/* counter */
.box-counter{
background: #121b3a;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid #585dbd;
    border-radius: 10px;
    padding: 30px;
}
.stats-grid-3 {
    max-width: 1156px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stats-grid-3 h3{
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}
.icon-mbox{
  display: flex;
  justify-content: center;
}
.icon-box-1 {
    width: 40px;
    height: 40px;
    background: #262aa3;
    color: #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 20px;
}
.stats-section-platform {
    background: #fff;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}
.stats-section-platform h2 {
    font-size: 40px;
    font-weight: 600;
    color: #000;
}
.stats-section-platform p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
/* Technology Ecosystem */
.tech-ecosystem {
  background: radial-gradient(circle at top, #111a3a, #07081d 70%);
  padding: 80px 20px;
}

.tech-box {
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(180deg, #121b3b, #0b1027);
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* Title */
.tech-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.tech-title h6 {
  color: #9aa4ff;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 7px;
}

.tech-icon {
  color: #7758f3;
  font-size: 18px;
}

/* Logos Row */
.tech-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  text-align: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tech-logos span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.95;
  background: #07081d;
  padding: 30px;
}
/* Ready to Transform Your Corporate Travel */
.View-Pricing-2 {
  border: 1px solid #000;
  padding: 14px 26px;
  border-radius: 10px;
  color: #000;
  text-decoration: none;
}
.View-Pricing-2:hover{
   border: 1px solid #404de4;
   background: #404de4;
  padding: 14px 26px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}
.cta-section-1 .commitment{
  margin-top: 30px;
}
.cta-section-box{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 73%;
  padding: 40px;
  border-radius: 20px;
}
.cta-section-1 {
    background: #eef0ff;
    text-align: center;
    padding: 80px 20px;
  
    display: flex;
    justify-content: center;
}
.cta-section-1 h2 {
    font-size: 40px;
    font-weight: 600;
}

/* Footer */
.tech-footer {
  /* border-top: 1px solid rgba(255,255,255,0.08); */
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #aab;
  font-size: 14px;
}

.tech-footer i {
  color: #6be4a3;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-logos {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 25px;
  }
}

@media (max-width: 480px) {
  .tech-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* home */
.os-travel-sec {
  position: relative;
  padding: 50px 20px;
  margin-bottom: 50px;
  background: #07071a;
  overflow: hidden;
}

/* grain / noise effect */
.os-overlay {
  position: absolute;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.15;
  pointer-events: none;
}

.os-content {
  position: relative;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  color: #fff;
}

.os-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 14px;
}

.os-content p {
  font-size: 18px;
  color: #b8b8b8;
  margin-bottom: 60px;
}

/* flow */
.os-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.os-box {
  padding: 14px 26px;
  background: #404de4;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-size: 16px;
  color: #eaeaea;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.arrow {
  font-size: 22px;
  color: rgba(255,255,255,0.35);
}

/* hover subtle */
.os-box:hover {
  background: linear-gradient(180deg, #33333a, #202028);
}

/* responsive */
@media (max-width: 768px) {
  .os-content h1 {
    font-size: 34px;
  }

  .os-flow {
    gap: 10px;
  }

  .arrow {
    display: none;
  }
}
.counter-slider {
  width: 100%;
  overflow: hidden;
}

.counter-wrapper {
  display: flex;
}

.counter-slide {
  width: 250px;   /* 🔥 MUST HAVE */
  flex-shrink: 0;
}

.box-counter {
  background: #111;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}
.Admin-Work{
  margin-top: 50px;
}
/* integration */
.integration-sec{
  background: #0b0924;
  padding: 120px 20px;
  color:#fff;
  text-align:center;
}

.integration-container-1{
  max-width:1200px;
  margin:auto;
}

.integration-sec h2{
  font-size:42px;
  font-weight:600;
  margin-bottom:20px;
}

.sub-text-1{
  max-width:720px;
  margin:0 auto 16px;
  color:#fff;
}

.tags{
  margin-bottom:10px;
  color:#fff;
}
.tags2 {
    margin-bottom: 10px;
    color: #fff;
    margin: 50px 0px;
}

/* ORBIT */
.orbit-area{
  position:relative;
  height:420px;
  margin-bottom:80px;
}

.orbit{
  position:absolute;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:50%;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
}

.orbit-1{
  width:420px;
  height:240px;
}

.orbit-2{
     width: 698px;
    height: 438px;
    border:1px solid rgba(180,160,255,.25);
  box-shadow:0 0 20px rgba(160,140,255,.25);
}

/* CENTER */
.center-box{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  padding:22px 28px;
  border-radius:16px;
}

.center-box span{
  display:block;
  font-size:13px;
  color:#b8b8ff;
}

/* PILLS */
.pill{
  position:absolute;
  padding:10px 18px;
  background:rgba(255,255,255,0.12);
  border-radius:20px;
  font-size:14px;
}

.hrms{ left:10%; top:30%; }
.finance{ right:10%; top:30%; }
.sso{ right:15%; bottom:30%; }
.approval{ left:15%; bottom:30%; }
.booking{ left:50%; bottom:10%; transform:translateX(-50%); }

/* LOGO GRID */
.logo-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-bottom:60px;
}

.logo-card{
  background:#ddd;
  padding:24px;
  border-radius:18px;
}

.logo-card h4{
  margin-bottom:14px;
}

.logo-card img{
  max-width:100%;
}

/* CTA */
.integration-btn{
  display:inline-block;
  padding:16px 40px;
  background: #404de4;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  font-weight:500;
}

.setup-time{
  display:block;
  margin-top:14px;
  color:#aaa;
}

/* RESPONSIVE */
@media(max-width:768px){
  .logo-grid{
    grid-template-columns:1fr;
  }
  .orbit-area{
    height:340px;
  }
}
/* next */
.orbit-wrap{
  position:relative;
  height:503px;
  /* background:
    radial-gradient(circle at center,
      #2b144a 0%,
      #120b2f 40%,
      #07081d 75%); */
  overflow:hidden;
}
.orbit-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(1px 1px at 15% 30%, rgba(255,255,255,.3), transparent),
    radial-gradient(1px 1px at 60% 55%, rgba(255,255,255,.25), transparent),
    radial-gradient(1px 1px at 35% 80%, rgba(255,255,255,.18), transparent);
  background-size:200px 200px;
  opacity:.4;
}
/*  */
.orbit-3{
  width:620px;
  height:360px;
  border-radius:50%;
  background:
    radial-gradient(ellipse at center,
      rgba(200,150,255,.45),
      rgba(120,90,255,.18),
      transparent 70%);
  filter:blur(30px);
  opacity:.9;
}
/*  */
.orbit{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}

/* .orbit-2{
  width:560px;
  height:320px;
  padding:1.5px;
  border-radius:50%;
  background:conic-gradient(
    from 90deg,
    #6aa6ff,
    #8f7bff,
    #c77dff,
    #ff8fdc,
    #6aa6ff
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  filter:
    drop-shadow(0 0 20px rgba(140,120,255,.7))
    drop-shadow(0 0 55px rgba(255,140,220,.4));

  animation:spin 42s linear infinite;
} */
/*  */
.orbit-2::before{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:50%;
  background:
    radial-gradient(circle, #ffffff 2px, transparent 3px) 0 0/120px 120px,
    radial-gradient(circle, #c77dff 2px, transparent 3px) 60px 60px/120px 120px;
  opacity:.95;
  animation:dots 16s linear infinite;
}
/*  */
.orbit-1{
  width:420px;
  height:240px;
  border-radius:50%;
  border:1px solid rgba(180,160,255,.25);
  box-shadow:0 0 20px rgba(160,140,255,.25);
}
.orbit-4{
  width: 568px;
    height: 340px;
  border-radius:50%;
  border:1px solid rgba(180,160,255,.25);
  box-shadow:0 0 20px rgba(160,140,255,.25);
}
/*  */
.center-box{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(12px);
  padding:22px 30px;
  border-radius:18px;
  box-shadow:0 0 30px rgba(160,140,255,.35);
}
.center-box span{
  display:block;
  font-size:13px;
  color:#cfcfff;
}
/*  */
.pill{
  position:absolute;
  padding:9px 40px;
  border-radius:20px;
  background:rgba(255,255,255,.12);
  font-size:13px;
  box-shadow:0 0 20px rgba(150,130,255,.35);
}
.hrms{ left:20%; top:19%; }
.finance{ right:12%; top:30%; }
.sso{ right:18%; bottom:30%; }
.approval{ left:10%; bottom:47%; }
.booking{ left:25%; bottom:17%; transform:translateX(-50%); }
/*  */
/* @keyframes spin{
  from{transform:translate(-50%,-50%) rotate(0deg);}
  to{transform:translate(-50%,-50%) rotate(360deg);}
}
@keyframes dots{
  from{transform:rotate(0deg);}
  to{transform:rotate(-360deg);}
} */
.hrms-mainbox{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  margin-bottom: 20px;
  display: flex;
  gap: 30px;
  align-items: center;
}
.hrms-mainbox p{
  font-size: 20px;
  color: #000;
  margin-bottom: 0px;
}
.logo-card h4{
   font-size: 25px;
   font-weight: 600;
  color: #000;
}
.Billing-sec{
  padding: 50px 30px;
  background-color: #0c0f2c;
}
.Billing-sec p{
  margin-bottom: 0px;
}
/* amimetion */
.stack-rotator {
  position: relative;
  width: 420px;
  height: 520px;
  margin: auto;
}

.stack {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  animation: slideStack 9s infinite ease-in-out;
  will-change: transform, opacity;
}

/* Delay for rotation */
.img1 { animation-delay: 0s; }
.img2 { animation-delay: 3s; }
.img3 { animation-delay: 6s; }
/* 1/28/2026 */
/* why offsitrip */
.corporate-section {
  padding: 100px 20px;
  background: #07081d;
  padding-bottom: 30px;
}

.corporate-container {
  max-width: 930px;
  margin: auto;
  text-align: center;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 8px 18px;
  background: #fff;
  color: #404de4;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 25px;
}

/* Heading */
.corporate-container h2 {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.corporate-container h2 span {
  color: #404de4;
}

/* Subtitle */
.subtitle {
  max-width: 760px;
  margin: 0 auto 60px;
  font-size: 17px;
  color: #fff;
  line-height: 1.7;
}



/* Cards grid */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 83%;
}
.problem-main{
  display: flex;
  justify-content: center;
}

/* Card */
.problem-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* Icon */
.icon-banner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #404de4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.problem-card p {
  margin: 0;
  font-size: 15px;
  color: #374151;
  text-align: left;
}
.box-brings{
  border: 1px solid #7f7f81;
  background: #b1b1b1;
    border-radius: 16px;
    padding: 22px 26px;
    margin-top: 50px;
}
.box-brings h6{
  font-size: 25px;
  font-weight: 500;
  color: #ffffff;
}
#Learn-More{
  justify-content: center;
  margin-top: 50px;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  .corporate-container h2 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    padding: 20px;
  }
}
/* tab */
.whatwedo-section {
  padding: 50px 20px;
  background: #fff;
}

.container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

/* ===== Tabs ===== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-link {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  padding-bottom: 8px;
  position: relative;
}

.tab-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #4f46e5;
  transition: width 0.3s ease;
}

.tab-link.active {
  color: #4f46e5;
}

.tab-link.active::after {
  width: 100%;
}

/* ===== Content ===== */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111827;
}

.subtitle {
  max-width: 650px;
  margin: 0 auto 60px;
  color: #6b7280;
  font-size: 16px;
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* .card {
  background: #fff;
  border: 1px solid #ececff;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
} */

.card .icon {
  width: 42px;
  height: 42px;
  background: #eef2ff;
  color: #4f46e5;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.card h4 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #111827;
}

.card p {
  font-size: 14px;
  color: #6b7280;
}
.traditional{
  text-align: center;
  margin-top: 50px;
}
.traditional p{
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.box-brings-1 {
    border: 1px solid #5c6093;
    background: #f5f5fc;
    border-radius: 16px;
    padding: 22px 26px;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    gap: 180px;
}
.solutions h6{
  font-size: 25px;
  font-weight: 500;
  color: #000;
}
.solutions h5{
  font-size: 30px;
  font-weight: 600;
  color: #404de4;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .tab-content h2 {
    font-size: 28px;
  }

  .tabs {
    gap: 20px;
  }
}

/* leadership */
.leadership-section {
  padding: 50px 20px;
  background: #ffffff;
}

.leadership-box {
  max-width: 1100px;
  margin: auto;
  background: #fafbff;
  border-radius: 20px;
  padding: 50px 55px;
  display: flex;
  gap: 30px;
}

/* ICON */
.leadership-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef0ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leadership-icon span {
  font-size: 22px;
  color: #4f46e5;
}

/* CONTENT */
.leadership-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.leadership-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 18px;
}

/* LIST */
.leadership-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.leadership-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #374151;
}

.leadership-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: #4f46e5;
  border-radius: 50%;
}

/* FOOT NOTE */
.leadership-content .note {
  font-size: 14px;
  color: #6b7280;
}

/* Who we build for */
.who-section {
  padding: 50px 20px;
  background: #ffffff;
}

.who-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.who-container h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.who-subtitle {
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* GRID */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* CARD */
.who-card {
  display: flex;
  gap: 40px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 30px;
  text-align: left;
  border: 1px solid #e6e8f0;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* ICON */
.who-icon {
  width: 58px;
  height: 48px;
  border-radius: 12px;
  background: #eef0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

/* TEXT */
.who-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.who-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}
.box-brings-2 {
    border: 1px solid #404de4;
    background: #404de4;
    border-radius: 16px;
    padding: 50px 26px;
    margin-top: 50px;
}
.box-brings-2 h6{
  font-size: 25px;
  color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .who-container h2 {
    font-size: 28px;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .who-card {
    padding: 24px;
  }
}
/*  */
.feature-card-1 {
    background: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    text-align: center;
    
    border: 1px solid #eee;
    transition: 0.3s ease;
}
.mainiconbox{
display: flex;
    justify-content: center;
}
.icon-box-1 {
    width: 48px;
    height: 48px;
    background: #eeecff;
    color: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}
.feature-card-1 h3{
  font-size: 20px;
  font-weight: 600;
}
#That-grows{
  margin-top: 50px;
}
#That-grows .goal{
  font-size: 30px;
  font-weight: 600;
  color: #000;
}
#That-grows .goal-text{
  font-size: 30px;
  font-weight: 600;
  color: #404de4;
}
/* take */
.lets-talk-section {
  padding: 100px 20px;
  background: #e3e2e2;
}

.lets-talk-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* ICON */
.talk-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 24px;
}

/* HEADING */
.lets-talk-container h2 {
  font-size: 40px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

/* TEXT */
.talk-text {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

/* BUTTON */
.talk-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #404de4;
  color: #ffffff;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.talk-btn:hover {
  background: #3f34b5;
  transform: translateY(-2px);
}

.talk-btn .arrow {
  font-size: 18px;
}

/* NOTE */
.talk-note {
  margin-top: 22px;
  font-size: 14px;
  color: #6b7280;
}

/* MOBILE */
@media (max-width: 768px) {
  .lets-talk-container h2 {
    font-size: 30px;
  }

  .talk-text {
    font-size: 15px;
  }

  .talk-btn {
    padding: 14px 26px;
    font-size: 15px;
  }
}
.infrastructure-sec{
  background-color: #404de4;
  padding: 40px;

}
.infrastructure{
  text-align: center;
}
.infrastructure h3{
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}


.phone-2{
    text-align: left;
}
.form-container-1 {
  text-align: left;
  margin-left: 15px;
}
#navMenu a{
  text-transform: capitalize;
}
/* blog */
.blog-hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 60px 0;
  text-align: center;
      padding-top: 100px;
}
.blog-dark-section {
  /* background: #05060b; */
  padding: 30px 0;
}

.blog-dark-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-dark-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;   /* important */
}

.blog-dark-img {
  position: relative;
}

.blog-dark-img img {
  width: 100%;
  /* height: 250px;    */
  object-fit: cover;
}
#blog-boxid{
  margin-top: 30px;
}


.blog-badge {
  background-color: #192235;
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}



.blog-dark-content {
  background-color: #05060b;
  padding: 22px;
  flex: 1;                 /* ⭐ key fix */
  display: flex;
  flex-direction: column;
  text-align: left;
}

.blog-dark-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

/* .blog-dark-content .blue-title {
  color: #3b82f6;
} */

.blog-dark-content p {
  font-size: 14px;
  color: #aab1d3;
  line-height: 1.6;
}

.blog-dark-meta {
  /* margin-top: auto;        */
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #9aa3c7;
}

.blog-dark-meta i {
  margin-right: 6px;
}

/* Responsive */
@media(max-width: 900px){
  .blog-dark-container{
    grid-template-columns: 1fr;
  }
}
/* blog details */
.blog-detail-page {
  background: radial-gradient(circle at top, #0c1222, #05060b);
  color: #e5e7eb;
  padding-bottom: 100px;
}

/* .container {
  max-width: 900px;
  margin: auto;
} */

/* Header */
.blog-detail-header {
  padding-top: 80px;
  text-align: left;
}

.back-link {
  color: #94a3b8;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.category-pill {
  display: inline-block;
  background: #064e3b;
  color: #34d399;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.blog-detail-header h1 {
      font-size: 40px;
    font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.subtitle-1 {
  color: #b6c0d1;
  font-size: 16px;
  max-width: 650px;
}

/* Author Row */
.author-row {
  margin-top: 30px;
  display: flex;
  gap: 340px;
  align-items: center;
}

.author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.author span {
  font-size: 13px;
  color: #9aa3c7;
}

.share-icons i {
  margin-left: 14px;
  cursor: pointer;
  color: #94a3b8;
}

/* Featured Image */
.blog-featured {
  margin: 50px auto;
}

.blog-featured img {
  width: 100%;
  border-radius: 16px;
}

/* Content */
.blog-content{
  margin: 0px 271px;
}
.blog-content h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #fff;
}

.blog-content h3 {
  font-size: 20px;
  margin-top: 40px;
  color: #fff;
}

.blog-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5f5;
}

.blog-content ul {
  margin-top: 14px;
  padding-left: 20px;
}

.blog-content li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #cbd5f5;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-detail-header h1 {
    font-size: 30px;
  }

  .author-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.blog-author-section {
  padding: 80px 0 60px;
  background: radial-gradient(circle at top, #0c1222, #05060b);
  color: #e5e7eb;
  text-align: center;
}

/* Author Card */
.author-card {
  max-width: 900px;
  margin: auto;
  background: linear-gradient(180deg, #0e162b, #0a0f1f);
  border-radius: 16px;
  padding: 35px 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.author-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info .written-by {
  font-size: 13px;
  color: #9aa3c7;
}

.author-info h4 {
  font-size: 20px;
  margin: 4px 0;
  color: #ffffff;
}

.author-role {
  font-size: 14px;
  color: #3b82f6;
  display: inline-block;
  margin-bottom: 10px;
}

.author-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* Share Section */
.share-section {
  margin-top: 60px;
}

.share-section p {
  font-size: 14px;
  color: #b6c0d1;
  margin-bottom: 14px;
}

.share-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: #94a3b8;
}

.share-icons i {
  cursor: pointer;
  transition: color .3s ease;
}

.share-icons i:hover {
  color: #3b82f6;
}
.Related{
  text-align: left;
  margin-bottom: 30px;
  margin-left: 55px;
}
.readmore{
  margin-top: 10px;
}

/* Responsive */
@media(max-width: 768px){
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.blog-author-section-1 {
    padding: 80px 0 60px;
    background: radial-gradient(circle at top, #0c1222, #05060b);
    color: #e5e7eb;
 
}
/* swiper-solution */
.rl-slider {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.rl-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.rl-slide {
  min-width: 100%;
}

.rl-slide img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

/* Navigation */
.rl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 1px 17px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.rl-prev { left: 15px; }
.rl-next { right: 15px; }


/* how it work */
.work-text h2{
    font-size: 40px;
    font-weight: 700;
    color: #000;
}
/* new section */
.integration-section {
  background: #0e1029;
  padding: 80px 0;
}

.integration-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT TEXT */
.integration-content h2 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
}

.integration-content p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  max-width: 420px;
}

/* RIGHT LOGOS */


.logo-column {
  display: flex;
  /* flex-direction: column; */
  gap: 25px;
  margin-top: 20px;
}

/* LOGO CARD */
.logo-box {
  background: #fff;
  border-radius: 18px;
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-column .logo-box img {
 height: 60px;
  object-fit: contain;
}
/* RIGHT LOGOS WRAPPER */
.integration-logos-1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
}

/* ROW */
.logo-column {
  display: flex;
  gap: 25px;
  width: max-content;
}

/* Row directions */
.logo-column:first-child {
  animation: marqueeRTL 6s linear infinite;
}

.logo-column:last-child {
  animation: marqueeLTR 6s linear infinite;
}

/* Logo box */
.logo-box {
  background: #fff;
  border-radius: 18px;
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  height: 60px;
  object-fit: contain;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .integration-container {
    grid-template-columns: 1fr;
  }

  .integration-logos {
    justify-content: flex-start;
  }
}
/* clock */
.world-clock-section {
  background: #000000;
  padding: 20px 0;
}

.world-clock-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

/* EACH CLOCK */
.clock-box {
  text-align: center;
  color: #fff;
}

/* CITY NAME */
.city {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #aaa;
 
}
/* time */
.time {
  font-size: 48px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HOUR & MINUTE COLORS */
.hour {
  color: #ffffff;        /* white */
}

.minute {
  color: #b5b5b5;        /* light gray */
}

/* BLINKING COLON */
.colon {
  margin: 0 4px;
  animation: blink 1s steps(1) infinite;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .world-clock-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .world-clock-container {
    grid-template-columns: 1fr;
  }
}

.integration-sec-banner{
  background-image: url(../img/banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 665px;
  margin-top: 70px;
  
}
/* hover */
.hrms-mainbox{
  display:inline-block;
  padding:18px;
  border-radius:20px;
  transition:all .4s ease;
}

.hrms-mainbox img{
  width:100%;
  max-width:180px;
  transition:all .4s ease;
}

/* 🔥 HOVER EFFECT */
.hrms-mainbox:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 18px 45px rgba(0,0,0,.25);
}

.hrms-mainbox:hover img{
  filter:drop-shadow(0 8px 20px );
}
@media (max-width: 600px) {

    /* Prevent Horizontal Scroll */
    body {
        overflow-x: hidden;
    }

   
}

@media (max-width: 600px){
:root{
  overflow-x: hidden;
}
.banner-text h1{
    font-size: 12px;
    font-weight: 500;
}
.menu-icon{
    color: #fff;
}

.hero h1 {
    font-size: 26px;
    margin-bottom: 15px;
}
.hero{
    padding: 20px;
    height: 554px;
    margin-top: -4px;
}
.Trusted-sec h6{
    text-align: center;
}
.work-box{
    display: block;
}
.work-box-2{
    width: 100%;
    margin-bottom: 20px;
}
.Dashboards-sec{
    padding: 0px;
    text-align: center;
    padding-bottom: 10px;
}
.Dashboards-container {
    margin: 20px;
}
.Dashboards-textbox h1{
    font-size: 30px;
    line-height: 39px;
}
.BOOKING-TOOL-sec {
    margin: 40px 20px;
}
.booking-text h1{
    font-size: 30px;
}
.booking-contant-box{
    margin-top: 30px;
}
.Inventory-sec{
    padding: 20px;
    margin-bottom: 60px;
    padding-top: 0px;
}
.Inventory-sec .booking-contant-box h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}
.HOW-IT-WORKS {
    margin: 20px;
}
.work-box-1{
    margin-bottom: 20px;
}
.Offistrip-sec{
    padding: 20px;
    padding-bottom: 0px;
}
.work-text-Offistrip{
    padding: 20px 0px;
    /* text-align: center; */
}
.Planning-Corporate-sec{
    padding: 0px 20px;
    padding-bottom: 40px;
}
.Planning-Corporate-sec h6{
    text-align: center;
    line-height: 32px;
    margin-top: 20px;
}
.Corporate-btn {
    display: flex;
    justify-content: center;
}
.work-text{
    margin: 30px 0px;
}
.booking-text{
    margin-bottom: 20px;
}
.swiper{
    margin-bottom: 0px;
    margin-top: 0px;
}
.phone {
    width: 288px;
}
.footer-top-right {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
.footer-top-left {
    text-align: center;
    margin-left: 131px;
    margin-top: 20px;
    display: block;
}
.footer-main {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 25px;
}
.block-1{
    padding-top: 0px;
}
.footer-logo{
    display: flex;
    justify-content: center;
}
.footer-bottom-left p{
    text-align: center;
}
.footer-bottom-links {
    /* flex-direction: row;
    gap: 60px;
    justify-content: center; */
    display: flex;
    gap: 30px;
    width: 120%;
}
.footer-disclaimer{
    text-align: center;
    margin-top: 20px;
}
.banner-sec{
    min-height: 320px;
}

.Offistrip-mainbox {
    display: block;
    margin-top: 0px !important;
}
.Offistrip-mainsec{
    padding: 20px;
}
.Offistrip-box1{
    margin-bottom: 20px;
}
.icon-user i{
    color: #fff;
}
/* about */
.about-sec{
    padding: 20px;
    padding-top: 100px;
}
.about-text{
    text-align: center;
}
.about-text h1{
    font-size: 35px;
}
.value-card{
    text-align: center;
}
.leadership-grid{
    grid-template-columns: 1fr;
}
.investors-logos {
    grid-template-columns: repeat(3, 1fr);
}
.leader-img img{
    height: 330px;
}
.contactbanner-sec{
    height: 235px;
}
.address-sec {
    margin: 20px;
    margin-top: 70px;
    margin-bottom: 0px;
}
.contact-card{
    margin-bottom: 20px;
    
}
.contact-form-sec{
    padding: 0px 20px;
    padding-bottom: 30px;
}
.text-address-box h1{
    font-size: 35px;
}
.banner-text-1 h1{
    font-size: 40px;
}
.work-text-Offistrip h6{
    width: 41%;
}
.booking-tool-img-right img{
    height: 140px;
}
.booking-tool-img-left img{
    height: 140px;
}
.booking-tool-img-1 .frame{
    height: auto;
}
.detail-text h3{
  font-size: 25px;
}
.detail-box {
    width: 100%;
}
.detail-box img {
    border-radius: 10px;
    width: 100%;
}
.detail-section{
  display: block;
}
.detail-section{
  display: none;
}
#detail-section-id{
  display: block;
  padding: 20px;
}
.detail-text{
    margin-top: 20px;
}
.offer-section{
    padding: 20px;
    text-align: center;
}
.offer-grid, .detail-section, .stats-grid {
 grid-template-columns: 1fr;
}
.stats-grid-1 {
   grid-template-columns: repeat(2, 1fr);
}
.cta-section{
  padding: 40px 20px;
}
/* contact */
#contact-boxmain {
    margin-top: 30px;
}
/* platform */
.cbt-container{
  grid-template-columns: auto;
}
.stats-grid-3{
  grid-template-columns: auto;
}
.cta-section-1{
  padding: 20px;
}
.cta-section-box{
  width: 100%;
}
.cta-section-1 h2{
  font-size: 25px;
}
.cta-buttons{
  display: grid;
}
.CBT-Demo-b{
  margin-bottom: 20px;
  padding: 14px;
}
.View-Pricing{
   padding: 14px;
   margin-bottom: 20px;
}
.stats-section-platform h2{
  font-size: 30px;
}
.stats-section-platform{
  padding: 20px;
}
.features-sub{
  margin-bottom: 30px;
}
.cbt-hero{
  padding-top: 100px;
}
.solution-three-container{
   grid-template-columns: auto;
   gap: 0px;
}
.offsite-wrapper{
   grid-template-columns: auto;
}
#pricing-main .about-text{
  margin-top: 0px;
}
.solution-three-text h2{
  font-size: 35px;
}
.solution-three{
  padding: 20px;
}
.Engagement-imgbox{
  gap: 5px;
}
.pricing-title{
  font-size: 35px;
}
.Discover{
  margin-bottom: 20px;
}
.pricing-card-2 {
    margin-bottom: 50px
}
.onboarding-box{
  margin-top: 0px;
}
.offsite-left h2{
  font-size: 35px;
}
.offsite-section{
  padding: 20px;
  text-align: center;
}
.offsite-wrapper{
  gap: 0px;
}
.billing-v2-sec{
  padding: 40px 20px;
}
.billing-left h3{
  font-size: 35px;
  margin-top: 0px;
}
/* integration */
.orbit-1 {
    width: 238px;
    height: 168px;
  }
  .orbit-4 {
    width: 287px;
    height: 191px;
  }
  .orbit-2 {
    width: 343px;
    height: 239px;
  }
  .integration-sec{
    padding: 100px 20px;
  }
  .hrms {
   left: 1%;
  top: 39%;
}
.pill{
  padding: 9px 10px;
}
.finance {
    right: 1%;
    top: 30%;
}
.sso {
    right: 6%;
    bottom: 30%;
}
.approval {
    left: 1%;
    bottom: 28%;
}
.booking {
    left: 25%;
    bottom: 69%;
    transform: translateX(-50%);
}
.bg-video{
  height: 670px;
}
.video-overlay{
   height: 670px;
}
/* 3/3/2026 */
.work-text h2{
  font-size: 30px;
}
.work-text-Offistrip h1{
  font-size: 30px;
}
body{
  overflow-x: hidden;
}
.work-box-3{
  margin-bottom: 20px;
}
#Corporate-id {
    height: 400px;
}
.integration-content h2{
  font-size: 30px;
}
.integration-section{
  padding: 20px;
}
.link-col {
    width: 35%;
}
.world-clock-container{
  grid-template-columns: repeat(2, 1fr);
}
/* header */
.nav-menu{
  gap: 0px;
  background-color: #ffffff;
}

#header-2 .nav-menu a {
        color: #111;
        transition: 0.3s;
    }
/* headerend */
.problem-grid{
  width: 100%;
}
.box-brings-1{
  gap: 0px;
}
.feature-card h3{
  text-align: center;
}
.leadership-box{
  display: block;
  padding: 20px;
}
.infrastructure-sec{
  padding: 20px;
}
.infrastructure h3{
  font-size: 25px;
}
.box-brings-2{
  padding: 20px;
}
.box-brings-2 h6{
  font-size: 24px;
}
.subtitle{
  color: #000 !important;
}
.billing-right{
  display: block;
  
}

.billing-card{
  margin-bottom: 20px;
}
.billing-card-1{
  margin-bottom: 20px;
}
.integration-sec-banner{
      height: 270px;
    margin-top: 60px;
}
.career-hero{
  padding: 100px 20px !important;
}
.form-row {
    display: flex;
    gap: 0px !important;
}
}
#Corporate-id{
  position: relative; /* IMPORTANT */
  background-image: url(../img/Frame-1618873874-2.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px;
  overflow: hidden;
  border-radius: 20px;
}

/* OVERLAY */
#Corporate-id::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0%); /* DARK OVERLAY */
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
#Corporate-id > *{
  position: relative;
  z-index: 2;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* TRIANGLE ANIMATION */
@keyframes slideStack {

  /* ⬅ LEFT (upper back) */
  0% {
    transform: translate(-85%, -60%) scale(0.9);
    opacity: .65;
    z-index: 1;
  }

  /* ⭐ CENTER (ACTIVE) */
  33% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 3;
  }

  /* ➡ RIGHT (lower back) */
  66% {
    transform: translate(-15%, -40%) scale(0.9);
    opacity: .65;
    z-index: 2;
  }

  /* loop */
  100% {
    transform: translate(-85%, -60%) scale(0.9);
    opacity: .65;
    z-index: 1;
  }
}
/* banner */
/* LEFT SIDE */
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RIGHT SIDE */
@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* CENTER PHONE */
@keyframes zoomCenter {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* 🔁 ANIMATIONS */
/* 🔥 FAST ANIMATIONS */

/* TRUE CONTINUOUS */
@keyframes marqueeRTL {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marqueeLTR {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
/* clock */
/* ON / OFF EFFECT */
@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}

.blog-dark-img {
  overflow: hidden;
  border-radius: 0px; /* agar rounded chahiye */
}

.blog-dark-img img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.blog-dark-img:hover img {
  transform: scale(1.1);
}
.site-header-1{
  background-color: #07081d !important;
  padding: 10px 0px;
}
/* popup */
/* Button */
.open-btn {
  padding: 12px 25px;
  background: linear-gradient(45deg, #6a5af9, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.open-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

/* Show Popup */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Box */
.popup-box {
  background: #151834;
  width: 550px;
  max-width: 90%;
  padding: 35px;
  border-radius: 15px;
  position: relative;
  transform: translateY(-50px);
  transition: 0.4s;
}

.popup-overlay.active .popup-box {
  transform: translateY(0);
}

.popup-box h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}

.subtitle {
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 40px;
  cursor: pointer;
  color: #fff;
}

/* Form */
.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s;
  background-color: transparent;
  color: #9a9a9a;
 
}
/* Style date input */
input[type="date"] {
  position: relative;
  background: #1c2045;
  /* color: #fff; */
}

/* Change calendar icon color */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(240deg);
  cursor: pointer;
}


.form-group input:focus,
.form-group textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 8px rgba(106,90,249,0.2);
}

/* Submit Button */
.submit-btn-Inquiry {
  width: 100%;
  padding: 12px;
 background-color: #fff;
  border: none;
  color: #000;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  font-size: 16px;
}

.submit-btn-Inquiry:hover {
  transform: translateY(-3px);
  background: #05060b;
  color: #fff;
}
.popup-overlay,
.popup-form {
  position: fixed !important;
  z-index: 99999 !important;
}
/* carrer */
/* Background */
.career-hero {
  background: radial-gradient(circle at 20% 30%, #1c1d3a, #0d1025 70%);
  padding: 100px 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.career-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Left Side */
.career-left {
  flex: 1;
}

.hiring-badge {
  display: inline-block;
  background: rgba(130, 87, 229, 0.15);
  color: #404de4;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.career-title {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 25px;
}

.career-title span {
  color: #404de4;
}

.career-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
  max-width: 520px;
  margin-bottom: 35px;
}

/* Buttons */
.career-buttons {
  display: flex;
  gap: 18px;
}

.btn-primary {
  background: #404de4;
  padding: 14px 28px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 1px solid #4c4f7a;
  padding: 14px 28px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #1f2243;
}

/* Right Side */
.career-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.info-card {
  background: #151834;
  border: 1px solid #2b2f55;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: #404de4;
}

.icon-box {
  width: 55px;
  height: 55px;
  background: #1e2148;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
}

.info-card h4 {
  font-size: 16px;
  font-weight: 500;
  color: #d7dbff;
}

/* Responsive */
@media (max-width: 992px) {
  .career-container {
    flex-direction: column;
    text-align: center;
  }

  .career-desc {
    margin: auto auto 35px;
  }

  .career-buttons {
    justify-content: center;
  }
}
/* **** */
/* Section Background */
.why-work-section {
  background: #fff;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

/* Container */
.why-container {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.why-header h2 span {
  background: #404de4;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-header p {
  color: #000;
  font-size: 16px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.why-card {
  background: #151834;
  border: 1px solid #2a2f55;
  padding: 40px 30px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: #8b5cf6;
}

/* Highlighted Card (3rd one) */
.why-card.active {
  border: 1px solid #8b5cf6;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.2);
}

/* Icon Box */
.why-icon {
  width: 55px;
  height: 55px;
  background: #1e2148;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 22px;
}

/* Title */
.why-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

/* Description */
.why-card p {
  color: #9aa4c7;
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 32px;
  }
}
/* ***** */
/* Section */
.open-positions {
  background: #0d1025;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.positions-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.positions-header {
  text-align: center;
  margin-bottom: 60px;
}

.positions-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.positions-header h2 span {
  background: linear-gradient(90deg, #8b5cf6, #6d28d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.positions-header p {
  color: #9aa4c7;
  font-size: 16px;
}

/* Job Cards */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.job-card {
  background: #151834;
  border: 1px solid #2a2f55;
  padding: 30px 35px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}

.job-card:hover {
  border-color: #8b5cf6;
  transform: translateY(-3px);
}

/* Highlighted Card */
.job-card.active {
  border: 1px solid #8b5cf6;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.15);
}

/* Left Side */
.job-left h3 {
  font-size: 20px;
  font-weight: 600;
  /* margin-bottom: 12px; */
}

.job-left h3 span {
  font-size: 16px;
  font-weight: 400;
  color: #9aa4c7;
}

.job-meta {
  display: flex;
  gap: 20px;
  color: #9aa4c7;
  font-size: 14px;
}

/* Button */
.apply-btn {
  background: linear-gradient(90deg, #8b5cf6, #6d28d9);
  padding: 12px 22px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.apply-btn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .job-right {
    width: 100%;
  }

  .apply-btn {
    display: inline-block;
  }
}
/* ***** */
/* Section */
.open-positions {
  background: #0d1025;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.positions-container {
  max-width: 710px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.positions-header {
  text-align: center;
  margin-bottom: 60px;
}

.positions-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.positions-header h2 span {
  background: #404de4;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.positions-header p {
  color: #9aa4c7;
  font-size: 16px;
}

/* Job Cards */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.job-card {
  background: #151834;
  border: 1px solid #4c4c4c;
  padding: 15px 35px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}

.job-card:hover {
  border-color: #404de4;
  transform: translateY(-3px);
}

/* Highlighted Card */
.job-card.active {
  border: 1px solid #404de4;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.15);
}

/* Left Side */
.job-left h3 {
  font-size: 16px;
  font-weight: 600;
  
}

.job-left h3 span {
  font-size: 16px;
  font-weight: 400;
  color: #9aa4c7;
}

.job-meta {
  display: flex;
  gap: 20px;
  color: #9aa4c7;
  font-size: 14px;
}

/* Button */
.apply-btn {
  background: #404de4;
  padding: 12px 22px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.apply-btn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .job-right {
    width: 100%;
  }

  .apply-btn {
    display: inline-block;
  }
}
/* ****** */
/* Section Background */
.quote-section {
  background: #fff;
  padding: 50px 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

/* Container */
.quote-container {
  max-width: 950px;
  margin: auto;
  padding: 0 20px;
}

/* Quote Icon */
.quote-icon {
  font-size: 50px;
  color: #6d28d9;
  margin-bottom: 30px;
  opacity: 0.8;
}

/* Quote Text */
.quote-text {
  font-size: 32px;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 35px;
  color: #000;
}

/* Highlighted Words */
.quote-text span {
  background: #404de4;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Author */
.quote-author {
  font-size: 15px;
  color: #373838;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-text {
    font-size: 22px;
  }

  .quote-icon {
    font-size: 40px;
  }
}
/* ***** */
/* Section Background */
.apply-section {
  background: #0d1025;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

/* Container Card */
.apply-container {
  max-width: 665px;
  margin: auto;
  background: #151834;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #2a2f55;
}

/* Form */
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Two Column Row */
.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

label {
  font-size: 14px;
  margin-bottom: 8px;
  color: #7e7e7e;
}

/* Inputs */
input,
select {
  background: #1c2045;
  border: 1px solid #2f3460;
  border-radius: 10px;
  padding: 14px 15px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

input::placeholder {
  color: #8c93b8;
}

select {
  appearance: none;
  cursor: pointer;
}

/* Focus Effect */
input:focus,
select:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

/* File Input */
input[type="file"] {
  padding: 10px;
  background: #1c2045;
}

/* Button */
.apply-btn {
  margin-top: 10px;
  background: #404de4;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .apply-container {
    padding: 35px 25px;
  }
}
/* Wrapper for custom arrow */
/* Custom Dropdown Arrow */
.select-group {
  position: relative;
}

.select-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 45px; /* space for arrow */
}

/* Arrow Icon */
.select-group::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 70%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%238b5cf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}

/* Optional: rotate arrow on focus */
.select-group select:focus + ::after {
  transform: translateY(-50%) rotate(180deg);
}
.container-contact {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.footer-logo img{
  width: 31%;
}
/* privacy */
.legal-section {
    padding: 80px 20px;
}

.container {
    max-width: 900px;
    margin: auto;
}

/* Header */
.legal-header .tag-1 {
    font-size: 15px;
    letter-spacing: 2px;
    color: #4f46e5;
    font-weight: 700;
    text-transform: uppercase;
}

.legal-header h1 {
    font-size: 35px;
    margin: 15px 0 10px;
    color: #000;
    font-weight: 600;
}
.legal-header {
    text-align: left;
}

.underline {
    width: 100px;
    height: 3px;
    background: #4f46e5;
    border-radius: 2px;
    margin-bottom: 40px;
}

/* Card */
.legal-card {
    text-align: left;
    background: linear-gradient(145deg, #0f172a, #0b1220);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79,70,229,0.2);
}

.legal-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 25px;
}
.legal-card h6{
  color: #ffffff;
    margin-bottom: 15px;
    font-size: 20px;
}

.legal-card p {
    font-size: 16px;
    line-height: 25px;
    color: #94a3b8;
}

.legal-card ul {
    padding-left: 18px;
}

.legal-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #94a3b8;
}

