/* === Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #fff;
  color: #fff;
  overflow-x: hidden;
}

/* === Container === */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.containerr {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Navbar === */
header{
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 var(--nav-padding);
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: white;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      height: 65px;
    }
    #logo{
      display:flex;
      align-items:center;
      /*gap:8px;*/
      font-weight:700;
      font-size:20px;
      color:#274c77;
      margin-right: 32px;
    }
    .nav-left{
      display:flex;
      align-items:center;
      flex:1; /* push actions to far right */
      /*gap: 10px;*/
    }
    nav ul{
      list-style:none;
      display:flex;
      gap:10px;
      align-items:center;
      font-weight:300;
      color:black;
      font-size: 14px;
    }
    nav ul li{
      cursor:pointer;
      transition:color 0.2s ease;
    }
    nav ul li:hover{
      color: #0367ff;
    }

nav a {
  text-decoration: none;
  /* color: #333; */
  font-weight: 300;
  transition: color 0.3s;
  /* font-size: 12px; */
}

nav a:hover {
  color: #0367ff;
}
   .nav-actions{
      display:flex;
      gap:12px;
      align-items:center;
    }

    .nav-actions a{
        text-decoration: none;
  transition: color 0.3s;
    }
    .btn{
      padding:10px 16px;
      border-radius:3px;
      font-weight:600;
      font-size:14px;
      cursor:pointer;
      border:1px solid transparent;
      background:transparent;
      transition: all 0.2s ease;
    }
    .btn-primary{
      background:var(--primary-blue);
      color:white;
      box-shadow:0 6px 18px rgba(22,123,255,0.18);
    }
    .btn-primary:hover{
      background:#0f63d0;
    }
    
     .btn-primaryy{
      background:#215178;
      color:white;
      font-size: 12px;
      padding: 8px 13px;
      box-shadow:0 6px 18px rgba(22,123,255,0.18);
      border-radius:3px;
    }

    .btn-primaryy:hover{
      background:#61D1ED;
    }
    
    .btn.btn-primary{
        color:white;
    }

     .btnn-primaryy{
      background:var(--primary-blue);
      color:white;
      box-shadow:0 6px 18px rgba(22,123,255,0.18);
    }

    .btnn-primaryy:hover{
      background:#48cae4;
    }


/* === Buttons === */
.btnn-primary {
  background: #fff;
  color:#215178;
  padding: 10px 22px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btnn-primary:hover {
  background: #61D1ED;
  color: white
}


.btn-outline {
  border: 2px solid #fff;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}

/*.btn-outline:hover i{*/
/*  animation: bounceDown 1.6s infinite ease-in-out;*/

/*}*/

.btn-outline:hover {
  background: #61D1ED;
  color: #fff;
  border: 2px solid #61D1ED;
}


    .cta{
      margin-top:36px;
    }
    .cta-btn{
      padding:12px 20px;
      border-radius:10px;
      font-weight:700;
      font-size:16px;
      border:none;
      cursor:pointer;
      background:var(--primary-blue);
      color:white;
      box-shadow:0 8px 28px rgba(22,123,255,0.22);
      text-decoration:none;
      display:inline-block;
      transition: background 0.2s ease;
    }
    .cta-btn:hover{
      background:#0f63d0;
    }

  .nav-link {
  position: relative;
  text-decoration: none;
  color: #000;
  padding: 8px 14px;
  transition: color 0.3s ease;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
}

/* .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background: #2a7bff;
  transition: width 0.3s ease;
  width: 0;
}


.nav-link.active::after {
  width: calc(100% - 28px); 
} */

.nav-link.active {
  color: #4361ee;
  font-weight: 600;
}


 

    /* ---------- Hamburger + Mobile Menu ---------- */
    /* Hamburger Button */
.hamburger {
  display: none; /* show only on mobile with media queries */
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #274c77;
  z-index: 1600;
  position: relative;
}

/* Overlay behind mobile menu */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1400;
}

.mobile-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%; /* hidden by default */
  width: 100%; /* optional: adjust menu width */
  max-width: 400px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  z-index: 1500;
}

.mobile-menu.show {
  right: 0; /* slide in */
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}

/* Menu List */
.mobile-menu ul {
  list-style: none;
  padding: 60px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 18px;
  font-weight: 600;
  color: black;
}

/* Nav Links */
.mobile-menu .nav-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu .nav-link:hover {
  color:#48cae4;
}

/* Buttons inside mobile menu */
.mobile-menu .btn {
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* Close Button */
.close-btn {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 1600;
}

/* Optional: Media Queries */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}


    /* ---------- Responsive ---------- */
    @media (max-width:1024px){
      }
    @media (max-width:768px){
    nav{
        display:none;
    }
      
    .hamburger{
        display:block;
    }
      
   
      
    
    /* .hero{padding:calc(var(--nav-height) + 40px) 18px 80px;} */
    }
    @media (max-width:480px){
      
        
    }

       .mobile-break {
  display: none;
  
     
}
@media (max-width: 600px) {
  .mobile-break {
    display: block;
  }
}


/* === Hero Section === */
.hero {
  height: 90vh;
  background: linear-gradient(90deg, rgba(33, 81, 120, 1) 0%, rgba(33, 81, 120, 0.9) 50%, rgba(97, 209, 237, 0.3) 100%), url("assets/Makeover.png") no-repeat center center / cover;
  padding: 100px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  color: white;
  text-align: left;
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* margin-top: 90px; */
  max-width: 1200px;
  
}
.hero .text-content {
  flex: 1 1 550px;
  margin-top:50px;
}

.text-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.mobile-break {
  display: none;
}

/* Show it only on mobile */
@media (max-width: 767px) {
  .mobile-break {
    display: inline;
  }
  
}


.text-content p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  max-width: 600px;
}

.buttons {
  display: flex;
  gap: 16px;
}

@media(max-width:768px){
    .hero .text-content{
        padding-left: 12px;
        padding-right: 12px;
        text-align:center;
        margin-top:50px;
        
    }
}

/* === Logo Slider === */

/* === Logo Slider === */
.logo-slider {
  background: #ffffff;
   padding: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(17, 1, 118, 0.05);
  border-bottom: 1px solid rgba(17, 1, 118, 0.05);
}

.logo-slider .containers {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scroll 28s linear infinite;
  width: max-content;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-item img {
  height: 80px;
  object-fit: contain;
  margin-top:-25px;
  margin-bottom:-25px;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.logo-item:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* Infinite scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Side fade gradient for clean edges */
.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 60%, transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 60%, transparent);
}

/* Responsive Design */

@media (max-width: 992px) {
  .logo-track {
    gap: 30px;
  }

}

@media (max-width: 600px) {

  .logo-track {
    gap: 20px;
  }
}
/* === Responsive === */

/* Large Desktops */
@media (min-width: 1440px) {
  .containerr { max-width: 1400px; }
  .text-content h1 { font-size: 3rem; }
  .text-content p { font-size: 1.2rem; }
}

/* Laptops */
@media (max-width: 1439px) and (min-width: 1025px) {
  .containerr { max-width: 1200px; }
  .text-content h1 { font-size: 2.6rem; }
}

/* Tablets Landscape */
@media (max-width: 1024px) {
  .text-content h1 { font-size: 2.3rem; }
  .text-content p { font-size: 1rem; }
}

@media (max-width: 1024px) {
  .hero { height: auto; 
      margin-top:auto;
  }
}

/* Tablets Portrait */
@media (max-width: 768px) {
  .containerr { flex-direction: row; text-align: center; }
  .hero { height: auto; padding: 100px 0; }
  .text-content h1 { font-size: 2rem; }
  .text-content p { font-size: 1rem; margin: 0 auto 2rem; }
  .buttons { flex-direction: row; align-items: center; justify-content:center; }
}

/* Large Mobile */
@media (max-width: 600px) {
  .text-content h1 { font-size: 1.8rem; }
  .text-content p { font-size: 0.95rem; }
  .btnn-primary, .btn-outline { padding: 8px 18px; font-size: 0.9rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .containerr { width: 92%; }
  .text-content h1 { font-size:2rem; }
  .text-content p { font-size: 0.95rem; }
  .buttons { gap: 10px; }
}

/* Tiny Devices */
@media (max-width: 360px) {
  .text-content h1 { font-size: 1.4rem; }
  .btnn-primary, .btn-outline { font-size: 0.8rem; padding: 6px 14px; }
}


/* ==== highlights ========== */

.services-section {
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  padding: 80px 5%;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.service-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 25px 20px 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.iconn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.service-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b4b4b;
  margin: 0;
}

@media (max-width: 768px) {
  .service-card {
    text-align: left;
  }
  
  .services-section {
  padding: 30px 5%;
}
}





/* ---------------------------------------------------------------- */


/* Site container consistent with site */
.site-container{
  /* width: var(--container-w); */
  /* max-width: var(--container-max); */
  margin: 0 auto;
 padding: 40px 0 80px;
 width: 90%;
  max-width: 1200px;
  align-items: center;
}

/* Header */
.solutions-header{ text-align:center; margin-bottom:22px; }
.solutions-header h2{ font-size:38px; margin:0 0 6px; font-weight:700; color: black;  }
.solutions-header .subtitle{ color:rgb(96, 95, 95); font-size:16px; margin:0 auto; max-width:820px; padding-bottom: 30px; }



/* Main tabs */
.main-tabs{
  display:flex;
  justify-content:center;
  gap:18px;
  margin:18px 0 28px;
  flex-wrap:wrap;
  color: black;
}
.main-tab{
  background: rgba(1, 87, 192, 0.06);
  border: 2px solid rgba(0,0,0,0);
  color:black;
  padding:10px 20px;
  border-radius:26px;
  font-weight:600;
  cursor:pointer;
  transition: all .15s ease;
  font-size:14px;
}
.main-tab:hover{ transform:translateY(-2px); }
.main-tab.active{
  background:#fff;
  color: #61D1ED;
  border-color: #215178;
  box-shadow: 0 2px 0 rgba(0,0,0,0.03) inset;
  /* color:var(--blue); */
}

/* Grid layout: left accordions, right collage */
.solutions-grid{
  display:flex;
  gap:28px;
  align-items:start;
  justify-content:space-between;
}

/* Left pane */
.left-pane{
  flex: 1 1 48%;
  max-width: 520px;
  border-top: 1.5px solid #111;
}

/* Accordion item */
.accordion-item{
  border-bottom:1px solid #274c77;
  padding: 16px 0;
}
.accordion-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
  font-weight:700;
  color: black;
  font-size:18px;
  padding-right:6px;
}


.accordion-header .arrow{
  font-size:18px;
  transition: transform .25s ease;
  color:#111;
}
.accordion-header.active .arrow{ transform: rotate(180deg); }

/* content area */
.accordion-body{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition: all .35s ease;
  margin-top: 8px;
  color:#374151;
  font-size:16px;
  line-height:1.5;
}
.accordion-body.open{
  opacity:1;
  max-height:420px; /* plenty for content */
}

/* tags/chips & link */
.accordion-chips{ margin-top:12px; display:flex; gap:10px; flex-wrap:wrap; }
.chip{
  background: rgba(1, 87, 192, 0.06);
  padding:4px 8px;
  border-radius:12px;
  color:#215178;
  font-size:13px;
  border:1px solid rgba(15,23,36,0.03);
}
.demo-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color: #215178;
  font-weight:600;
  margin-top:30px;
  text-decoration:none;
  font-size:18px;
}

/* Right pane — fixed collage */
.right-pane {
  flex: 1 1 48%;
  max-width: 560px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px; /* ensures collage area height */
}

.collage {
  position: relative;
  width: 100%;
  /*max-width: 520px;*/
  min-height: 320px;
  margin-top: 30px;
  pointer-events: none;
}

.collage .img {
  position: absolute;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.12);
  background: #f1f5f9;
  transition: transform 0.3s ease;
    pointer-events: none;
}

/* .collage .img:hover {
  transform: scale(1.03);
} */

/* refined overlap positions */
/*.collage .large {*/
/*  width: 85%;*/
/*  height: 250px;*/
/*  left: 0%;*/
/*  top: 10%;*/
/*  z-index: 4;*/
/*}*/
/*.collage .medium {*/
/*  width: 45%;*/
/*  height: 170px;*/
/*  right: 0%;*/
/*  bottom: 0%;*/
/*  z-index: 5;*/
/*}*/
/*.collage .small.top-right {*/
/*  width: 34%;*/
/*  height: 110px;*/
/*  right: 4%;*/
/*  top: -4%;*/
/*  z-index: 3;*/
/*}*/
/*.collage .small.bottom-left {*/
/*  width: 48%;*/
/*  height: 135px;*/
/*  left: 10%;*/
/*  bottom: 66%;*/
/*  z-index: 3;*/
/*}*/


.collage .large {
  width: 100%;
  /*height: 250px;*/
  left: 0%;
  top: -10%;
  z-index: 3;
}

/*.collage .small.top-right {*/
/*  width: 40%;*/
/*  height: 110px;*/
/*  right: 2%;*/
/*  top: -2%;*/
/*  z-index: 4;*/
/*}*/


@media (max-width: 980px){
  .solutions-grid{ flex-direction:column-reverse; align-items:center; gap:28px; }
  .left-pane{ max-width:100%; width:100%; }

  
}

/* Mobile tweaks */
@media (max-width:480px){
  .site-container{ padding-left:12px; padding-right:12px; }
  .solutions-header h2{ font-size:20px; }
  .main-tab{ padding:8px 12px; font-size:13px; }
  .accordion-header{ font-size:15px; }
  .accordion-body{ font-size:14px; }
  
}

@media (max-width: 981px) {
  .collage img:not(.large) {
    display: none !important;
  }

  .collage .large {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
  }
  .right-pane {
    min-height: auto !important;
    padding: 0 !important;
  }

  .collage {
    min-height: auto !important;
    height: auto !important;
    
  }

  
}

/* Ensure right pane uses column layout so CTA stays below collage */
.right-pane {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers the collage + CTA */
  justify-content: flex-start;
  gap: 20px; /* space between collage and button */
}

/* CTA below collage */
.collage-cta {
  margin-top: -7%;
  margin-left: 6%;
  text-align: start;
  width: 100%;
}

.ctaa-btnn {
  display: inline-block;
  color: #215178;
  border: 2px solid ;
  border-color:#215178;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(3, 103, 255, 0.1);
  transition: all 0.3s ease;

}

.ctaa-btnn:hover {
  background: #61D1ED;
  color: white;
  box-shadow: 0 6px 16px rgba(3, 103, 255, 0.4);
}

/* Responsive */
@media (max-width: 980px) {
  .right-pane {
    gap: 16px;
  }
  .ctaa-btnn {
    padding: 10px 26px;
    font-size: 14px;
    margin-top: 30px;
    margin-left: -2%;
  }
}

.ctaa-btnn:hover i {
  animation: bounceDown 1.6s infinite ease-in-out;
}

/* Arrow bounce animation */
@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

/* ==================-----------------------------========================== */

.present-container{
margin: 0 auto;
 padding: 40px 0 80px;
 width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
 
}

.presentation-magic {
  /* padding: 70px 0; */
  text-align: center;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}

/* .presentation-magic h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 0 6px;
} */

/* .presentation-magic .subtitle {
  color: #333;
  font-size: 13px;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
} */

/* ====== SLIDER CORE ====== */
.magic-slider {
    /* width: 90%;
  max-width: 1300px; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.navvv-btn {
  background: #fff;
  border: 1px solid #aeadad;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 24px;
  cursor: pointer;
  transition: 0.2s;
}

.navvv-btn:hover {
  background: #e0ecff;
  border-color: #61D1ED;
  color: #61D1ED;
}

.slides-group {
  display: none;
  width: 100%;
  /* max-width: 880px; */
  position: relative;
}

.slides-group.active {
  display: block;
}

.slide {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slide.active {
  display: block;
  opacity: 1;
}

/* ====== BEFORE & AFTER ====== */
.before-after {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.before, .after {
  flex: 1 1 45%;
  text-align: center;
}

.before img, .after img {
  width: 100%;
  /* max-width: 380px; */
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000;
  text-align: start;
}

/* ====== DOT INDICATORS ====== */
.dots-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #215178;
}

/* ===============================
   RESPONSIVE MEDIA QUERIES
   =============================== */

/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .presentation-magic {
    padding: 60px 0;
  }

  .presentation-magic h2 {
    font-size: 24px;
  }

  .presentation-magic .subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .before-after {
    gap: 20px;
  }

  .before img, .after img {
    max-width: 320px;
  }

  .navv-btn {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}

/* Tablets & Small Laptops */
@media (max-width: 900px) {
  .magic-slider {
    flex-direction: column;
  }

  .navv-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .navv-btn.prev {
    left: -10px;
  }

  .navv-btn.next {
    right: -10px;
  }
}

/* Small tablets & large phones */
@media (max-width: 768px) {
  .before-after {
    flex-direction: column;
    align-items: center;
  }

  .before, .after {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .before img, .after img {
    max-width: 100%;
  }

  .presentation-magic h2 {
    font-size: 22px;
  }

  .navv-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .dots-container {
    margin-top: 16px;
  }

  .dot {
    width: 7px;
    height: 7px;
  }
}

/* Phones (portrait mode) */
@media (max-width: 480px) {
  .presentation-magic {
    padding: 50px 0;
  }

  .presentation-magic h2 {
    font-size: 20px;
  }

  .presentation-magic .subtitle {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .navv-btn {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .before img, .after img {
    border-radius: 8px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }
}

/* Extra small screens (under 360px) */
@media (max-width: 360px) {
  .presentation-magic h2 {
    font-size: 18px;
  }

  .presentation-magic .subtitle {
    font-size: 12px;
  }

  .before-after {
    gap: 16px;
  }

  .dot {
    width: 5px;
    height: 5px;
  }
}


/* ================================================================= */


.unique-section {
  padding: 20px 0;
  text-align: center;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}



.unique-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.unique-card {
  position: relative;
  background:  #215178;
  color: #fff;
  padding: 30px 25px;
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/*.unique-card:hover{*/
/*    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);*/
/*    background: #4361ee;*/
/*}*/

.unique-card .icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.unique-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.unique-card p {
  font-size: 13px;
  line-height: 1.5;
  color:rgb(224, 224, 224);
}

/* === Animated Circles === */
/* === Animated Circles === */
.bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  background: radial-gradient(circle, #fff 0%, rgba(255,255,255,0.4) 70%);
  animation: float 10s ease-in-out infinite;
}

/* Default circle sizes */
.circle1 {
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.circle2 {
  width: 160px;
  height: 160px;
  animation-delay: 4s;
}

/* Unique placements for each card */
.unique-card:nth-child(1) .circle1 {
  top: -10px;
  right: -20px;
}

.unique-card:nth-child(1) .circle2 {
  bottom: -30px;
  left: -30px;
}

.unique-card:nth-child(2) .circle1 {
  top: -80px;
  left: -50px;
}

.unique-card:nth-child(2) .circle2 {
  bottom: 60px;
  right: 90px;
}

.unique-card:nth-child(3) .circle1 {
  top: -40px;
  right: 100px;
}

.unique-card:nth-child(3) .circle2 {
  bottom: -100px;
  left: -60px;
}

.unique-card:nth-child(4) .circle1 {
  top: 20px;
  left: 30px;
}

.unique-card:nth-child(4) .circle2 {
  bottom: -60px;
  right: -70px;
}

/* Animation for soft floating motion */
@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(15px, -10px) scale(1.05); }
  50% { transform: translate(-10px, 10px) scale(1.1); }
  75% { transform: translate(-15px, -10px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}


@media (max-width: 1024px) {
  .unique-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .unique-card {
    padding: 25px 20px;
  }
}

/* Small screens (mobiles) — 1 card */
@media (max-width: 600px) {
  .unique-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .unique-section {
    padding: 60px 0;
  }


  .unique-card h3 {
    font-size: 16px;
  }

  .unique-card p {
    font-size: 13px;
  }

  .bg-circle {
    opacity: 0.25;
  }
}


/* =========================================================== */



.creative-slide-gallery {
  /* background: #fff; */
  padding: 0px 0;
  text-align: center;
  background:#fff;
}

.creative-slide-heading {
  font-size: 35px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}

.creative-slide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.creative-slide-item {
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}

.creative-slide-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.creative-slide-subtext {
  color: #555;
  font-size: 15px;
  margin-top: 40px;
}

/* === Lightbox === */
.creative-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2000;
  overflow: hidden;
}

.creative-lightbox.active {
  display: flex;
}

.creative-lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease;
}

.creative-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.3s;
}

.creative-lightbox-close:hover {
  color: #ddd;
}

.creative-lightbox-navv {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.creative-lightbox-navv:hover {
  background: rgba(255,255,255,0.4);
}

.creative-lightbox-prev { left: 40px; }
.creative-lightbox-next { right: 40px; }

/* === Dots === */
.creative-lightbox-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.creative-lightbox-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #aaa;
  cursor: pointer;
  transition: background 0.3s ease;
}

.creative-lightbox-dot.active {
  background: #0069e3;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .creative-lightbox-navv {
    font-size: 32px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .creative-lightbox-img {
    max-width: 95%;
    max-height: 70vh;
  }
}

/* ========================================================================= */




/* Subtle floating animated gradient blobs */
/* .experts-section::before,
.experts-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  z-index: 0;
}
.experts-section::before {
  width: 300px;
  height: 300px;
  background: #0069e3;
  top: -100px;
  left: -100px;
  animation: floatBlob 8s ease-in-out infinite alternate;
}
.experts-section::after {
  width: 250px;
  height: 250px;
  background: #00bcd4;
  bottom: -80px;
  right: -80px;
  animation: floatBlob 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatBlob {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(20px, -20px) scale(1.1); }
} */

/* Title */

/* Layout */

.experts-section {
  /* background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%); */
  text-align: center;
  position: relative;
  overflow: hidden;
}
.experts-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

/* Circle Orbit */
.experts-graphic {
  flex: 1 1 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Outer dashed circle rotates slowly */
.outer-circle {
  position: relative;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(97, 209, 237, 1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  
}

 .outer-circle::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed rgba(97, 209, 237, 1);
  border-radius: 50%;
  animation: rotate 80s linear infinite;
} 

/* Only the outline rotates, not its children */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Center circle */
.center-circle {
  position: absolute;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at top left, #274c77, #0367ff);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 3;
}

.center-circle img {
  width: 40px;
  margin-bottom: 5px;
  /* animation: float 3s ease-in-out infinite alternate; */
}

.center-circle p {
  margin: 0;
  line-height: 18px;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

/* Orbiting items */
.expert-item {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #215178;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #222;
  text-align: center;
  transition: all 0.4s ease;
  transform: rotate(var(--angle)) translate(150px) rotate(calc(-1 * var(--angle)));
}

/* .expert-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 80px; 
  background: #a5c8f0;
  transform-origin: top center;
 transform: rotate(var(--angle)) translateY(-75px);; 
  z-index: 0;
} */




.expert-item img {
  width: 35px;
  margin-bottom: 5px;
  transition: transform 0.4s ease;
  /* animation: float 3s ease-in-out infinite alternate; */
}

.expert-item:hover {
  border-color: #0367ff;
  /* transform: rotate(var(--angle)) translate(165px) rotate(calc(-1 * var(--angle))) scale(1.1); */
  background: #f0f7ff;
}

.expert-item:hover img {
  transform: scale(1.15);
}


/* Right content area */
.experts-text {
  flex: 1 1 45%;
  text-align: left;
  z-index: 2;
}

.experts-desc {
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.7;
}

.experts-list {
  list-style: none;
  padding: 0;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-align: start;
}

.experts-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: black;
  display: flex;
  /* align-items: center; */
  gap: 8px;
}

.experts-list li::before {
  /*content: "✔";*/
  color: black;
  font-weight: 700;
}

/* CTA */
.experts-btn {
  background: #215178;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 3px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,105,227,0.25);
}

.experts-btn:hover {
  /* transform: translateY(-2px); */
  background-color: #61D1ED;
  /* box-shadow: 0 8px 18px rgba(0,105,227,0.35); */
}

/* Responsive */
@media (max-width: 992px) {
  .experts-layout {
    flex-direction: column;
  }
  .experts-text {
    text-align: center;
  }
  .outer-circle {
    width: 300px;
    height: 300px;
  }
  .expert-item {
    width: 90px;
    height: 90px;
    transform: rotate(var(--angle)) translate(140px) rotate(calc(-1 * var(--angle)));
  }
}

/* ========================================================================== */


.callback{
      background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
      margin: 0;
      /* padding: 60px 0; */
      display: flex;
      justify-content: center;
}

.callback-section {
      background: #fff;
      border-radius: 4px;
      padding: 15px 20px;
      /* max-width: 950px;
      width: 90%; */
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
    }

    .callback-section h2 {
      font-size: 1.3rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 40px;
    }

    form {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .form-group {
      flex: 1;
      min-width: 180px;
      text-align: left;
    }

    label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin-bottom: 5px;
    }

    input, select {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #6a8aae;
      border-radius: 3px;
      outline: none;
      font-size: 13px;
      transition: all 0.2s;
      background: #f8faff;
    }

    input:focus, select:focus {
      border-color: #007bff;
      background: #fff;
    }

    .btn-callback {
      background: #3a0ca3;
      color: white;
      border: none;
      border-radius: 3px;
      padding: 10px 22px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      /* height: 42px; */
      align-self: flex-end;
      box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
    }

    .btn-callback:hover {
      background: #4361ee;
    }

    #response {
      margin-top: 15px;
      font-weight: 500;
      font-size: 15px;
    }

    .success {
      color: #008c3c;
    }

    .error {
      color: #d93025;
    }

    #slidesSelect {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #6a8aae;
      border-radius: 3px;
      outline: none;
      font-size: 13px;
      transition: all 0.2s;
      background: #f8faff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.25s ease;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

/* Hover + focus states */
/* #slidesSelect:hover {
  border-color: #a5b8ff;
  background-color: #f0f5ff;
} */

#slidesSelect:focus {
  border-color: #0367ff;
      background: #fff;
}

/* Dropdown options */
#slidesSelect option {
  font-size: 13px;
  color:black;
  background-color: #fff;
  padding: 20px;
  
}

/* Modern highlight effect in supported browsers */
#slidesSelect option:hover,
#slidesSelect option:checked {
  background-color: #f3f6fd;
  color: #0367ff;
  
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #slidesSelect {
    font-size: 15px;
    padding: 12px;
  }
}

    @media (max-width: 768px) {
      form {
        flex-direction: column;
        align-items: stretch;
      }

      /* button {
        width: 100%;
      } */
    }
    
    /* ========================================================================= */
    
 .contact-section {
  background:  linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  padding: 90px 5%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.contact-container {
  width: 100%;
  max-width: 1200px; /* Aligns with previous sections */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* -------- Top Row -------- */
.contact-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 60px;
  /* flex-wrap: wrap; */
}

/* .contact-left {
  flex: 1 1 480px;
} */

.contact-left h2 {
  font-size: 38px;
  /* font-weight: 700; */
  color: #111;
  margin-bottom: 15px;
  margin-top: 70px;
}

.contact-left p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 470px;
}

.contact-right {
  /* flex: 1 1 480px; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  /* max-width: 520px; */
  z-index: 2;
  position: relative;
  /* animation: float 4s ease-in-out infinite; */
}

/* .dot-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(#c7dbff 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  border-radius: 50%;
  top: 0;
  right: 0;
  transform: translate(50px, -30px);
  opacity: 0.5;
  z-index: 1;
} */

/* Floating animation */
/* @keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
} */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
  padding: 20px 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  /* transform: translate(5px);  */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0);
  /* cursor: pointer; */
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 25px;
  /* display: flex; */
  align-items: center;
  gap: 10px;
  text-align: center;
}

.contact-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.toll-free{
  font-size: 2px;
}

/* .chat-buttons{
  display: block;
  gap: 20px;
} */

.email-link {
  color: #4361ee;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

/* Buttons */
.butn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.45);
  background: #fff;
}

.butn.messenger {
  /* background-color: #f0f4ff; */
  color: #1a56db;
  margin-bottom: 10px;
}

.butn.messenger:hover {
  background-color: #d8e4ff;
}

.butn.online {
  /* background-color: #eafaf2; */
  color: #1b8a5a;
}

.butn.online:hover {
  background-color: #d7f4e2;
}

.butn.request {
  /* background-color: #f8f9ff; */
  color: #111;
}

.butn.request:hover {
  background-color: #e3e7ff;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-top {
    flex-direction: column;
    text-align: center;
  }

  .contact-left p {
    margin: 0 auto;
  }

  .dot-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    transform: translate(20px, -20px);
  }
.contact-cards {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:10px;
}

}

@media (min-width:1024px){
  .contact-cards {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}

/* @media (min-width: 767px) {
    .contact-cards {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
} */






    /* ========================================================================= */

     
.footer {
  background: #215178;
  color: #333;
  padding: 90px 5% 40px;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.footer-left img.footer-logo {
  width: 120px;
  margin-bottom: 18px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  color: rgb(204, 204, 204);
  max-width: 280px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #004aad;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #4361ee;
  color: #fff;
}

/* Footer links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgb(204, 204, 204);
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #4361ee;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Contact Section */
.footer-contact h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  color: rgb(204, 204, 204);
  margin-bottom: 8px;
  /*max-width: 320px;*/
}

.footer-contact strong {
  font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgb(204, 204, 204);
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-left p {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
    /* text-align: center; */
  }

  .social-icons {
    justify-content: center;
  }

  .footer-contact p {
    max-width: 100%;
    margin: 0 auto 8px;
  }
}


/*===================================================================================*/


  /* Overlay background */
.calendly-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Popup box */
.calendly-popup {
  background: #fff;
  border-radius: 4px;
  padding: 0;
  width: 40%;
  max-width: 700px;
  max-height: 50vh;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeInUp 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Header area for close button */
.popup-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  background: #f9fafc;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  z-index: 10000;
}

.close-btn:hover {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

.success-message {
  display: none;
  margin-top: 25px;
  color: #d4edda;
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid #28a745;
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  animation: fadeIn 0.5s ease;
}

/* Fade animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


/* Calendly iframe area */
.calendly-inline-widget {
  border: none;
  flex-grow: 1;
  height: 630px !important;
}

/* Disable background scroll */
body.no-scroll {
  overflow: hidden;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================= */
/* 📱 RESPONSIVE MEDIA QUERIES */
/* ============================= */

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .calendly-popup {
    width: 90%;
    max-height: 60vh;
    border-radius: 4px;
  }
  .popup-header {
    padding: 8px 12px;
  }
  .close-btn {
    font-size: 24px;
  }
  .calendly-inline-widget {
    height: 550px !important;
  }
}

/* Mobile Landscape (max-width: 600px) */
@media (max-width: 600px) {
  .calendly-popup {
    width: 90%;
    border-radius: 4px;
  }
  .close-btn {
    font-size: 24px;
  }
  .calendly-inline-widget {
    height: 520px !important;
  }
}

/* Small Mobiles (max-width: 480px) */
@media (max-width: 480px) {
  .calendly-popup {
    width: 90%;
    border-radius: 4px;
    max-height: 40vh;
  }
  .popup-header {
    padding: 6px 10px;
  }
  .close-btn {
    font-size: 22px;
  }
  .calendly-inline-widget {
    height: 500px !important;
  }
}

/* Extra Small Mobiles (max-width: 360px) */
@media (max-width: 360px) {
  .calendly-popup {
    width: 90%;
    border-radius: 4px;
  }
  .close-btn {
    font-size: 20px;
  }
  .calendly-inline-widget {
    height: 480px !important;
  }
}









