/* Custom AOS blur effect */
  [data-aos="blur-up"] {
    opacity: 0;
    filter: blur(24px) translateY(40px);
    transition-property: opacity, filter, transform;
  }
  [data-aos="blur-up"].aos-animate {
    opacity: 1;
    filter: blur(0) translateY(0);
  }
  [data-aos="blur-right"] {
    opacity: 0;
    filter: blur(24px) translateX(-40px);
    transition-property: opacity, filter, transform;
  }
  [data-aos="blur-right"].aos-animate {
    opacity: 1;
    filter: blur(0) translateX(0);
  }
  [data-aos="blur-left"] {
    opacity: 0;
    filter: blur(24px) translateX(40px);
    transition-property: opacity, filter, transform;
  }
  [data-aos="blur-left"].aos-animate {
    opacity: 1;
    filter: blur(0) translateX(0);
  }
  /* Shine effect for call-to-action button */
  .shine-effect {
    position: relative;
    overflow: hidden;
  }
  .shine-effect .shine {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6) 60%, rgba(255,255,255,0.1) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: shine-move 1.8s cubic-bezier(0.4,0,0.2,1) infinite;
  }
  @keyframes shine-move {
    0% { left: -75%; }
    100% { left: 125%; }
  }
  /* 
    ============================================
    CSS VARIABLES - Customize here
    ============================================
    --cb-container-max-width: Main container max width
    --cb-gap: Left/right body gaps
    --cb-accent: Primary accent color
    --cb-muted: Muted text color
    --cb-border-radius: Card border radius
    */
    :root {
      --cb-container-max-width: 1400px;
      --cb-gap: 40px;
      --cb-top-gap: 12px;
      --cb-accent: #84cc16;
      --cb-muted: #6b7280;
      --cb-dark: #1f2937;
      --cb-light-bg: #f9fafb;
      --cb-white: #ffffff;
      --cb-border-radius: 16px;
      --cb-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
      --cb-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
      --cb-glass-bg: rgba(255, 255, 255, 0.95);
      --cb-transition: all 0.3s ease;
      --font-weight-medium: 400
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --font-parkinsans:"parkinsans", "parkinsans Fallback", system-ui, arial;
      --cb-container-max-width: 1400px;
      --cb-container2-max-width: 1400px;
      --cb-gap: 40px;
      --cb-top-gap: 12px;
      --cb-accent: #84cc16;
      --cb-muted: #6b7280;
      --cb-dark: #1f2937;
      --cb-light-bg: #f9fafb;
      --cb-white: #ffffff;
      --cb-border-radius: 16px;
      --cb-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
      --cb-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
      --cb-glass-bg: rgba(255, 255, 255, 0.95);
      --cb-transition: all 0.3s ease;
    }

    body {
      font-family: var(--font-parkinsans);
      background-color: var(--cb-light-bg);
      color: var(--cb-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

/* Default navbar: relative (not sticky) */


.cb-navbar-wrapper {
  position: relative; /* default: not sticky */
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 12px var(--cb-gap);
  transition: var(--cb-transition);
}

/* When scrolling */
.cb-navbar-wrapper.scrolled {
  position: fixed;  /* use fixed instead of sticky for guaranteed effect */
  top: 0;
  left: 0;
  width: 100%;
  padding: 6px var(--cb-gap);
  
  border-radius: 0 0 25px 25px;
 

  z-index: 9999;
}


    .cb-navbar-wrapper.scrolled {
      padding: 12px var(--cb-gap);

    }

   
    .cb-navbar-wrapper.scrolled {
      padding: 6px var(--cb-gap);
    }

    .cb-navbar-wrapper.scrolled .cb-navbar {
      max-width: 920px;
   
      margin: 0 auto;
      padding: 4px 0;
      align-items: center;
    }

    .cb-navbar-wrapper.scrolled .cb-logo img.logo-img {
      width: 9rem;
      transition: var(--cb-transition);
    }

    .cb-navbar-wrapper.scrolled .cb-logo {
      font-size: 17px;
    }

    .cb-navbar-wrapper.scrolled .cb-nav {
      gap: 6px;
    }

    .cb-navbar-wrapper.scrolled .cb-nav-link {
      padding: 6px 12px;
      font-size: 13px;
    }

    .cb-navbar-wrapper.scrolled .cb-btn-desktop {
      padding: 8px 18px;
      font-size: 13px;
    }

   
    .cb-navbar-wrapper.scrolled+.cb-content {
      padding-top: 28px;
      padding-bottom: 24px;
    }

    .cb-navbar,
    .cb-logo img.logo-img,
    .cb-nav-link,
    .cb-btn-desktop,
    .cb-content {
      transition: var(--cb-transition);
    }

    .cb-navbar {
      max-width: var(--cb-container-max-width);
      margin: 0 auto;
      display: flex;
      position: relative;
   
      justify-content: space-between;
      align-items: center;
      transition: var(--cb-transition);
    }
.cb-navbar-wrapper.scrolled .cb-navbar {
  background: rgba(255, 255, 255, 0.8); /* semi-transparent white */
  padding: 16px 32px;
  border-radius: 25px;
  box-shadow: var(--cb-shadow-sm);
  border: 1px solid rgba(223, 223, 223, 0.5); /* slightly transparent border */
  backdrop-filter: blur(10px); /* adds blur behind the navbar */
  -webkit-backdrop-filter: blur(10px); /* for Safari support */
}

    .cb-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 18px;
      font-weight: 600;
      color: var(--cb-dark);
      text-decoration: none;
      transition: var(--cb-transition);
    }

    .cb-logo:hover {
      color: var(--cb-accent);
    }

    .cb-logo-icon {
      width: 32px;
      height: 32px;
      background: var(--cb-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cb-white);
      font-size: 17px;
      transition: var(--cb-transition);
      position: relative;
    }

    .cb-logo-icon::before {
      content: '';
      position: absolute;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid transparent;
      transition: var(--cb-transition);
    }

    .cb-logo:hover .cb-logo-icon::before {
      border-color: rgba(107, 114, 128, 0.3);
    }

    .cb-nav {
      display: flex;
      gap: 2px;
     
      align-items: center;

      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .cb-nav-link {
      color: var(--cb-dark);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: var(--cb-transition);
      padding: 10px 20px;
      display: inline-block;

      border-radius: 50px;
      position: relative;
    }

    .cb-nav-link::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50px;
      border: 2px solid transparent;
      transition: var(--cb-transition);
    }

    .cb-nav-link:hover {
   
      color: #000000;
    }

    .cb-nav-link:hover::before {
   
      border-color: #dfdfdf;
    }

    .cb-nav-link.active,
    .cb-nav-link:active {
      color: black;
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.071);
    }

    .cb-nav-link.active::before,
    .cb-nav-link:active::before {
      border-color: rgb(216, 216, 216);
      border: 1px solid #dfdfdf;
    }

    .cb-nav-link:focus {

      outline: 1px solid #dfdfdf;
      outline-offset: 4px;
      border-radius: 50px;
    }

    .cb-btn-primary {
     color: #562cac;
    background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
      padding: 10px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: var(--cb-transition);
      border: none;
      cursor: pointer;
      position: relative;
    }

    .cb-btn-primary::before {
      
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50px;
      border: 2px solid transparent;
      transition: var(--cb-transition);
    }

    .cb-btn-primary:hover {
      background: linear-gradient(135deg, #3a53c4 0%, #a387c2 100%);
    
      transform: translateY(-2px);
    }

    .cb-btn-primary:hover::before {
      border-color: rgba(107, 114, 128, 0.3);
    }

    .cb-btn-primary:focus {
      outline: 1px solid #dfdfdf;
      outline-offset: 4px;
    }


    .cb-btn-desktop {
      display: inline-block;
    }

    .cb-btn-mobile {
      display: none;
    }

 
    .cb-menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: 50%;
      transition: var(--cb-transition);
      position: relative;
    }

    .cb-menu-toggle::before {
      content: '';
      position: absolute;
      width: 48px;
      height: 48px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 2px solid transparent;
      transition: var(--cb-transition);
    }

    .cb-menu-toggle:hover::before {
      border-color: rgba(107, 114, 128, 0.3);
    }

    .cb-menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--cb-dark);
      margin: 5px 0;
      transition: var(--cb-transition);
    }

    /* Main wrapper */
    .cb-wrapper {
      min-height: 100vh;
      /* remove top gap so container sits flush with the top */
      /* padding: 0 var(--cb-gap) var(--cb-gap); */
    }

    .cb-container {
      width: 100%;
      max-width: var(--cb-container-max-width);
      margin: 0 auto;
      background: oklch(98.46% .002 247.84);
      /* remove rounded corners per request */
      border-radius: 0;
      /* box-shadow: var(--cb-shadow); */
      /* allow sticky navbar to function and not be clipped */
      overflow: visible;
      animation: cb-fadeInUp 0.8s ease-out;

      /* add gray borders on left and right */
      border-left: 1px solid #dcdcdc;
      border-right: 1px solid #dcdcdc;
    }

    /* Content area */
    .cb-content {
      padding: 40px 20px;
    }

    /* Container variants */
    .cb-container {
      width: 100%;
      max-width: var(--cb-container-max-width);
      margin: 0 auto;
      background: var(--cb-white);
      border-radius: 0;
      /* box-shadow: var(--cb-shadow); */
      overflow: visible;
      animation: cb-fadeInUp 0.8s ease-out;
      position: relative;
    }

    /* Add red borders to cb-container */
    .cb-container::before,
    .cb-container::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 1px;
      background-color: #dedede;
    }

    .cb-container::before {
      left: -20px;
    }

    .cb-container::after {
      right: -20px;
    }

    /* Wider container variant */
    .cb-container2 {
      width: 100%;
      max-width: var(--cb-container2-max-width);
      margin: 0 auto;
      background: var(--cb-white);
      border-radius: 0;
      box-shadow: var(--cb-shadow);
      overflow: visible;
      animation: cb-fadeInUp 0.8s ease-out;
      position: relative;
    }

    /* Add red borders to cb-container2 */
    .cb-container2::before,
    .cb-container2::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 2px;
      background-color: #ff0000;
    }

    .cb-container2::before {
      left: -12px;
    }

    .cb-container2::after {
      right: -12px;
    }

    /* Hero section */
    .cb-hero {
      text-align: center;
      margin-bottom: 30px;
      padding-top: 10px;
      padding-bottom: 10px;
    }    .cb-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(132, 204, 22, 0.1);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 13px;
      color: var(--cb-dark);
      margin-bottom: 24px;
      border: 1px solid rgba(132, 204, 22, 0.2);
    }

    .cb-badge-icon {
      width: 16px;
      height: 16px;
      color: black;
    }

    .cb-hero-title {
      font-size: 36px;
      font-weight: var(--font-weight-medium);
      line-height: 1.2;
      margin-bottom: 20px;
      color: var(--cb-dark);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .cb-hero-subtitle {
      font-size: 17px;
      color: var(--cb-muted);
      max-width: 700px;
      margin: 0 auto 20px;
    }

    .cb-btn-cta {
         background: linear-gradient(135deg, #5469c9 0%, #cf5e6c 100%);
      color: var(--cb-white);
      padding: 8px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 17px;
      font-weight: 600;
      display: inline-block;
      transition: var(--cb-transition);
      border: none;
      cursor: pointer;
      position: relative;
    }

    .cb-btn-cta::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50px;
      border: 2px solid transparent;
      transition: var(--cb-transition);
    }

    .cb-btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(3, 42, 64, 0.18);
    }

    .cb-btn-cta:hover::before {
      border-color: rgba(255, 255, 255, 0.12);
    }

    .cb-btn-cta:focus {
      outline: 2px solid var(--cb-dark);
      outline-offset: 4px;
    }

    /* Book a call button (white with gray border) */
    .cb-btn-book {
      background: var(--cb-white);
      color: var(--cb-dark);
      padding: 8px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 17px;
      font-weight: 600;
      display: inline-block;
      transition: var(--cb-transition);
      border: 1px solid #dcdcdc;
      cursor: pointer;
      position: relative;
    }

    .cb-btn-book:hover {
      background: #fafafa;
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    }

    .cb-btn-book:focus {
      outline: 1px solid #dfdfdf;
      outline-offset: 4px;
    }

    .cb-social-proof {
      /* border variables */
      --border-bottom-width: 1px;
      --border-color: var(--token-9d64a123-47dc-41f5-b792-92186f48fc2d, rgba(31, 41, 55, 0.12));
      --border-left-width: 1px;
      --border-right-width: 1px;
      --border-style: solid;
      --border-top-width: 1px;

      align-content: center;
      align-items: center;
      /* slightly darker visible background */
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.06) 0%, rgba(255, 255, 255, 0) 60%);
      border-radius: 99px;
      display: flex;
      flex: none;
      flex-direction: row;
      flex-wrap: nowrap;
      gap: 16px;
      height: 40px;
      justify-content: center;
      overflow: hidden;
      padding: 4px 20px 4px 10px;
      position: relative;
      width: min-content;
      will-change: var(--framer-will-change-override, transform);
      margin: 48px auto 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    /* Partition lines between items (vertical separators) */
    .cb-social-proof>* {
      position: relative;
      padding: 0 12px;
      display: flex;
      align-items: center;
    }

    /* Prevent middle text from wrapping so '20k+ Trusted by 58k+ users' stays in one line */
    .cb-social-proof>span {
      white-space: nowrap;
      display: inline-block;
    }

    .cb-social-proof>*+*::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      bottom: 8px;
      width: 1px;
      background: rgba(31, 41, 55, 0.18);
      /* darker divider */
      border-radius: 1px;
    }

    .cb-avatars {
      display: flex;
      align-items: center;
    }

    .cb-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f59e0b, #ef4444);
      border: 2px solid var(--cb-white);
      margin-left: -8px;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .cb-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 50%;
    }

    .cb-avatar:first-child {
      margin-left: 0;
    }

    .cb-rating {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #000000;
    }

    /* Video Section - NEW */
/* Video Section - FIXED */
.cb-video-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible; /* allow background shape to show */
  z-index: 0; /* establish stacking context */
}

/* gradient shape behind the video container */
/* =============================
   VIDEO SECTION - DEBUG VERSION
   ============================= */
.cb-video-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  background: transparent; /* make sure background isn’t blocking it */
  z-index: 0;
}

/* background shape behind the video */
/* FORCE VISIBLE BACKGROUND TEST */
.cb-video-section {
  position: relative !important;
  z-index: 1 !important;
  overflow: visible !important;
  background: transparent !important;
}

/* big visible red shape for testing */
/* .cb-video-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 60%;
  border-radius: 2rem;
  background: linear-gradient(to top, #00c2ff 0%, #004c91 70%, transparent 100%);
  z-index: 0;
  filter: blur(10px);
  opacity: 1;
} */

/* main video container */
.cb-container {
    width: 100%;
    max-width: var(--cb-container-max-width);
    margin: 0 auto;
    background: var(--cb-white);
    border-radius: 0;
    overflow: hidden; /* clips anything outside */
    animation: cb-fadeInUp 0.8s ease-out;
    position: relative;
}

.cb-video-section {
    position: relative;
    z-index: 1;
    overflow: hidden; /* ensures glow stays inside section */
    border-radius: 1rem; /* match video container rounding */
}

.cb-video-section::before,
.cb-video-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px; /* wider glow */
    pointer-events: none;
    filter: blur(100px); /* stronger blur for softer, more visible glow */
    opacity: 0.8; /* slightly more intense */
}

.cb-video-section::before {
    left: -40px; /* slightly outside for more glow effect */
    background: linear-gradient(to right, rgb(104, 0, 194), transparent);
}

.cb-video-section::after {
    right: -40px; /* slightly outside for more glow effect */
    background: linear-gradient(to left,  rgb(93, 18, 255), transparent);
}

.cb-video-container {
    position: relative;
    width: 80%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    background: #000;
    z-index: 2;
    margin: 0 auto; /* center video container */
}


/* make sure video and overlay appear correctly */
.cb-video-player,
.cb-video-overlay-ui {
  position: relative;
  z-index: 3;
}


/* video container */
.cb-video-container {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--cb-shadow);
  background: #000;
  z-index: 2; /* make sure it's above the gradient */
}

/* ensure video and overlay UI are above everything */
.cb-video-player,
.cb-video-overlay-ui {
  position: relative;
  z-index: 3;
}


    

    .cb-video-player {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .cb-video-overlay-ui {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
      opacity: 0;
      transition: var(--cb-transition);
    }

    .cb-video-container:hover .cb-video-overlay-ui {
      opacity: 1;
    }

    .cb-video-controls {
      display: flex;
      align-items: center;
      gap: 16px;
      color: var(--cb-white);
    }

    .cb-video-play-btn {
       width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #b3b3b34f;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--cb-transition);
    position: relative;
    }

    .cb-video-play-btn::before {
      content: '';
      position: absolute;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 2px solid transparent;
      transition: var(--cb-transition);
    }

    .cb-video-play-btn:hover::before {
      border-color: rgba(255, 255, 255, 0.5);
    }

    .cb-video-play-btn:hover {
      transform: scale(1.1);
    }

    /* Main section with chatboard */
    .cb-main {
     
      gap: 32px;
      align-items: flex-start;
      margin-top: 60px;
    }

    /* Sidebar */
    .cb-sidebar-wrapper {
      width: 240px;
      flex-shrink: 0;
    }

    .cb-sidebar {
      background: var(--cb-light-bg);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
    }

    .cb-sidebar-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: 8px;
      cursor: pointer;
      transition: var(--cb-transition);
      color: var(--cb-dark);
      text-decoration: none;
      font-size: 14px;
      border: none;
      background: transparent;
      width: 100%;
      text-align: left;
    }

    .cb-sidebar-item:hover {
      background: rgba(0, 0, 0, 0.05);
    }

    .cb-sidebar-item.active {
      background: var(--cb-white);
      color: black;
      font-weight: 500;
      box-shadow: var(--cb-shadow-sm);
    }

    /* Usage metrics */
    .cb-usage {
      background: var(--cb-light-bg);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
    }

    .cb-usage-title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--cb-dark);
    }

    .cb-usage-bar {
      height: 8px;
      background: rgba(0, 0, 0, 0.1);
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 8px;
    }

    .cb-usage-fill {
      height: 100%;
      background: var(--cb-accent);
      border-radius: 4px;
      width: 0%;
      transition: width 1s ease-out;
    }

    .cb-usage-text {
      font-size: 12px;
      color: var(--cb-muted);
    }

    .cb-usage-limit {
      font-weight: 600;
      color: var(--cb-accent);
    }

    /* Chatboard */
    .cb-chatboard-wrapper {
      flex: 1;
      animation: cb-slideInRight 0.8s ease-out 0.3s both;
    }

    .cb-chatboard {
      background: var(--cb-white);
      border-radius: var(--cb-border-radius);
      box-shadow: var(--cb-shadow-sm);
      padding: 24px;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .cb-chatboard-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .cb-chatboard-title {
      font-size: 17px;
      font-weight: 600;
      color: var(--cb-dark);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cb-status-dot {
      width: 8px;
      height: 8px;
      background: var(--cb-accent);
      border-radius: 50%;
      animation: cb-pulse 2s infinite;
    }

    .cb-chatboard-actions {
      display: flex;
      gap: 8px;
    }

    .cb-icon-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: none;
      background: transparent;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--cb-transition);
      color: var(--cb-muted);
      position: relative;
    }

    .cb-icon-btn::before {
      content: '';
      position: absolute;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid transparent;
      transition: var(--cb-transition);
    }

    .cb-icon-btn:hover {
      background: rgba(0, 0, 0, 0.05);
    }

    .cb-icon-btn:hover::before {
      border-color: rgba(107, 114, 128, 0.2);
    }

    .cb-icon-btn:focus {
      outline: 2px solid var(--cb-accent);
      outline-offset: 2px;
    }

    /* Chat interface */
    .cb-chat-area {
      min-height: 300px;
      background: var(--cb-light-bg);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 16px;
    }

    .cb-chat-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      padding-bottom: 12px;
    }

    .cb-tab {
      padding: 8px 16px;
      border-radius: 8px;
      border: none;
      background: transparent;
      color: var(--cb-muted);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: var(--cb-transition);
    }

    .cb-tab.active {
      background: var(--cb-white);
      color: var(--cb-dark);
      box-shadow: var(--cb-shadow-sm);
    }

    .cb-tab:focus {
      outline: 2px solid var(--cb-accent);
      outline-offset: 2px;
    }

    .cb-chat-content {
      text-align: center;
      padding: 40px 20px;
    }

    .cb-upload-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 16px;
      background: var(--cb-white);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--cb-shadow-sm);
    }

    .cb-chat-placeholder {
      font-size: 14px;
      color: var(--cb-muted);
      margin-bottom: 8px;
    }

    .cb-chat-subtext {
      font-size: 12px;
      color: #9ca3af;
    }

    /* Input area */
    .cb-input-wrapper {
      position: relative;
    }

    .cb-input {
      width: 100%;
      padding: 14px 50px 14px 16px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      font-size: 14px;
      transition: var(--cb-transition);
      background: var(--cb-white);
    }

    .cb-input:focus {
      outline: none;
      border-color: var(--cb-accent);
      box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
    }

    .cb-input-btn {
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border: none;
      background: var(--cb-accent);
      border-radius: 8px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--cb-transition);
    }

    .cb-input-btn:hover {
      background: #73b814;
    }

    .cb-input-btn:focus {
      outline: 2px solid var(--cb-dark);
      outline-offset: 2px;
    }

    /* User menu */
    .cb-user-menu {
      background: var(--cb-light-bg);
      border-radius: 12px;
      padding: 16px;
    }

    .cb-user-info {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: 8px;
      margin-bottom: 8px;
    }

    .cb-user-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    }

    .cb-user-details {
      flex: 1;
    }

    .cb-user-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--cb-dark);
      margin-bottom: 2px;
    }

    .cb-user-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 12px;
      color: var(--cb-accent);
      background: rgba(132, 204, 22, 0.1);
      padding: 2px 8px;
      border-radius: 4px;
    }

    .cb-menu-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      border-radius: 8px;
      cursor: pointer;
      transition: var(--cb-transition);
      color: var(--cb-dark);
      font-size: 14px;
      border: none;
      background: transparent;
      width: 100%;
      text-align: left;
    }

    .cb-menu-item:hover {
      background: rgba(0, 0, 0, 0.05);
    }

    .cb-menu-item:focus {
      outline: 2px solid var(--cb-accent);
      outline-offset: -2px;
    }

    .cb-menu-icon {
      width: 18px;
      height: 18px;
      color: var(--cb-muted);
    }

    /* Animations */
    @keyframes cb-fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes cb-slideInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes cb-pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.5;
      }
    }

    /* Responsive */
    @media (max-width: 992px) {
      .cb-wrapper {
        /* remove top gap for responsive layouts as well */
        padding: 0 20px 20px;
      }

      /* On mobile make the centered nav part of the normal flow so mobile menu can expand */
      .cb-nav {
        position: static;
        left: auto;
        transform: none;
        justify-content: center;
      }

      /* swap CTA visibility: hide desktop CTA and show mobile CTA inside the opened menu */
      .cb-btn-desktop {
        display: none;
      }

      .cb-btn-mobile {
        display: inline-block;
      }

      .cb-content {
        padding: 40px 24px;
      }

      .cb-hero {
        padding-top: 30px;
        padding-bottom: 5px;
      }

      .cb-hero-title {
        font-size: 36px;
        line-height: 1.25;
      }

      .cb-main {
        flex-direction: column;
      }

      .cb-sidebar-wrapper {
        width: 100%;
      }

      .cb-nav {
        display: none;
      }

      .cb-nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cb-white);
        padding: 20px;
        border-radius: 16px;
        margin-top: 12px;
        box-shadow: var(--cb-shadow);
      }

      .cb-menu-toggle {
        display: block;
      }

      .cb-navbar-wrapper.scrolled .cb-navbar {
        padding: 12px 24px;
      }
    }

    @media (max-width: 768px) {
      :root {
        --cb-gap: 16px;
        --cb-top-gap: 8px;
      }

      .cb-navbar-wrapper {
        padding: 12px;
      }

      .cb-wrapper {
        padding: 0 16px 16px;
      }

      .cb-content {
        padding: 32px 20px;
      }

      .cb-hero-title {
        font-size: 30px;
        line-height: 1.3;
      }

      .cb-hero-subtitle {
        font-size: 17px;
      }

      .cb-social-proof {
        flex-direction: column;
        gap: 16px;
      }

      /* responsive adjustments to keep visual parity on small screens */
      /* Keep the social proof pill consistent on small screens */
      .cb-social-proof {
        width: auto;
        padding: 6px 10px;
        gap: 10px;
        height: 40px;
        justify-content: center;
      }

      /* Ensure separators remain visible on small screens as well */
      .cb-social-proof>*+*::before {
        display: block;
      }

      /* hide vertical separators on stacked layout */
      .cb-social-proof>*+*::before {
        display: none;
      }

      .cb-chatboard {
        padding: 16px;
      }

      .cb-video-section {
        margin: 60px 0;
      }

      .cb-navbar-wrapper.scrolled .cb-navbar {
        padding: 12px 20px;
        border-radius: 40px;
      }
    }

    @media (max-width: 576px) {
      .cb-hero-title {
        font-size: 24px;
        line-height: 1.35;
        max-width: 100%;
      }

      .cb-btn-primary {
        font-size: 13px;
        padding: 8px 20px;
      }

      .cb-logo {
        font-size: 17px;
      }

      .cb-logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
      }
    }

    .cb-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      gap: 0.5rem;
      /* space between image and text */
    }

    .cb-logo img.logo-img {
      height: auto;
      width: 12.0rem;
      /* scales with screen size */
      max-width: 100%;
    }

    .cb-logo span {
      font-size: 1.25rem;
      /* scales with user settings */
      color: #222;
      /* adjust as needed */
      font-weight: 600;
    }

    /* Make adjustments for smaller screens */
    @media (max-width: 600px) {
      .cb-logo img.logo-img {
        width: 2rem;
      }

      .cb-logo span {
        font-size: 1rem;
      }
    }


/* Second Session starts */
  .features-section {
      min-height: 100vh;
      padding: 20px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background: #ffffff;
      border-top: 1px solid #dfdfdf;
      border-bottom: 1px solid #dfdfdf;
    }

    .features-container {
      max-width: 1400px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start; /* align items to top instead of center */
    }

    .left-content {
      padding: 40px;
      padding-top: 32px; /* match right side padding */
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 100%);
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
      margin-top: 0; /* remove top margin since parent has padding */
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      outline: 1px solid #dfdfdf;
    }

   

  

    .subtitle {
      font-size: 14px;
      line-height: 1.6;
      color: #666;
 
    }

    .right-content {
      position: relative;
      height: 600px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding-top: 32px; /* match left side padding */
    }

    .card-title {
      font-size: 32px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 40px;
      margin-top: 0; /* remove margin since parent has padding */
    }

    /* capability-item cards with gradients and overlap */
    .capability-item {
      position: relative;
      backdrop-filter: blur(10px);
      padding: 30px;
      border-radius: 16px;
      margin-bottom: -40px; /* overlap effect */
      width: 90%;
      opacity: 0;
      transform: translateY(60px);
      transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      border-left: none;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .capability-item::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 70%);
      background-size: 200% 100%;
      background-position: -100% 0;
      transition: background-position 0.8s ease-out;
      pointer-events: none;
    }

    .capability-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .capability-item.visible::after {
      background-position: 200% 0;
    }

    .capability-item:nth-child(1) {
      background: linear-gradient(
        135deg,
        var(--token-f73aa86e-6ee3-4d1f-b228-a0a0f1a9f1b2, rgb(246, 253, 230)) 0%,
        #f7fce5 100%
      );
      transform: rotate(-3deg);
      z-index: 6;
    }

    .capability-item:nth-child(2) {
      background: linear-gradient(
        135deg,
        var(--token-de68fadd-5a11-434c-a1fa-8c5b510a0722, rgb(255, 247, 239)) 0%,
        #fff1e6 100%
      );
      transform: rotate(2deg);
      z-index: 5;
    }

    .capability-item:nth-child(3) {
      background: linear-gradient(
        135deg,
        var(--token-f21ef071-70c8-492b-be44-4ec4ccd9027a, rgb(244, 242, 254)) 0%,
        #edeaff 100%
      );
      transform: rotate(-2deg);
      z-index: 4;
    }

    .capability-item:nth-child(4) {
      background: linear-gradient(
        135deg,
        var(--token-aaf6074a-1000-4cd8-9dc7-ba3131d80af6, rgb(238, 245, 254)) 0%,
        #e3f1ff 100%
      );
      transform: rotate(3deg);
      z-index: 3;
    }

    .capability-item:nth-child(5) {
      background: linear-gradient(
        135deg,
        var(--token-b2c6887e-9740-40b1-b01c-7af529d24614, rgb(235, 253, 254)) 0%,
        #e0f9fa 100%
      );
      transform: rotate(-3deg);
      z-index: 2;
    }

    .capability-item:nth-child(6) {
      background: linear-gradient(
        135deg,
        var(--token-99b32309-8535-4787-aa54-375d83b8349f, rgb(255, 243, 244)) 0%,
        #ffeef1 100%
      );
      transform: rotate(2deg);
      z-index: 1;
    }

    /* Decorative small circle in the top corner of each capability card */
    .capability-item {
      position: relative; /* ensure pseudo-element positions relative to card */
    }

    .capability-item::before {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      /* neutral fallback; per-item overrides below */
      background: radial-gradient(circle at 30% 30%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%);
      box-shadow: 0 4px 10px rgba(0,0,0,0.12), inset 0 -2px 4px rgba(255,255,255,0.05);
      top: 14px;
      right: 14px; /* default to top-right */
      z-index: 6; /* low relative to parent; parent z-index will control stacking */
      pointer-events: none;
      transform: translateZ(0);
    }

    /* Alternate position: even items show the dot on the left */
    .capability-item:nth-child(even)::before {
      left: 14px;
      right: auto;
    }

    /* Per-item circle colors (use the exact colors requested) */
    .capability-item:nth-child(1)::before {
      background: radial-gradient(circle at 30% 30%, #7a3a08 0%, rgba(122,58,8,0.65) 60%);
      width: 20px;
      height: 20px;
      top: 12px;
      right: 12px;
      box-shadow: 0 6px 14px rgba(122,58,8,0.22), inset 0 -3px 6px rgba(255,255,255,0.03);
    }

    .capability-item:nth-child(2)::before {
      background: radial-gradient(circle at 30% 30%, #220f94 0%, rgba(34,15,148,0.65) 60%);
    }

    .capability-item:nth-child(3)::before {
      background: radial-gradient(circle at 30% 30%, #063767 0%, rgba(6,55,103,0.65) 60%);
    }

    .capability-item:nth-child(4)::before {
      background: radial-gradient(circle at 30% 30%, #085255 0%, rgba(8,82,85,0.65) 60%);
    }

    .capability-item:nth-child(5)::before {
      background: radial-gradient(circle at 30% 30%, #8d1e32 0%, rgba(141,30,50,0.65) 60%);
    }

    .capability-item:nth-child(6)::before {
      /* fallback/extra color for a sixth item */
      background: radial-gradient(circle at 30% 30%, #063767 0%, rgba(6,55,103,0.6) 60%);
    }

    /* Make sure pseudo-elements don't crowd on small screens */
    @media (max-width: 768px) {
      .capability-item::before {
        width: 14px;
        height: 14px;
        top: 12px;
        right: 12px;
        z-index: 6;
      }
      .capability-item:nth-child(1)::before {
        width: 16px;
        height: 16px;
      }
    }

    .capability-title {
      font-size: 20px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 1px;
    }

    .capability-desc {
      font-size: 14px;
      color: #666;
      line-height: 1.5;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      opacity: 0.6;
    }

    .scroll-indicator::before {
      content: '';
      display: block;
      width: 2px;
      height: 40px;
      background: linear-gradient(to bottom, transparent, #333);
      margin: 0 auto 10px;
      animation: scrollDown 2s infinite;
    }

    @keyframes scrollDown {
      0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
      }
      50% {
        transform: translateY(10px);
        opacity: 1;
      }
    }

    @media (max-width: 1024px) {
      .features-container {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      h1 {
        font-size: 42px;
      }

      .right-content {
        height: auto;
      }
    }

    @media (max-width: 768px) {
      .features-section {
        padding: 60px 20px;
      }

      h1 {
        font-size: 36px;
      }

      .subtitle {
        font-size: 18px;
      }

      .card-title {
        font-size: 26px;
      }

      .capability-item {
        width: 100%;
        margin-bottom: -30px;
      }

      .capability-title {
        font-size: 18px;
      }

      .capability-desc {
        font-size: 14px;
      }
    }
/* Second Session end */



/* new section css start */
  .insights-wrapper {
    
       border-top: 1px solid #dfdfdf;
    margin-top: 51px;
    border-bottom: 1px solid #dfdfdf;
padding: 30px 20px 60px 20px;
    max-width: 1400px;
        }

        .insights-header-zone {
            text-align: center;
            margin-bottom: 22px;
            animation: slideDownFade 0.8s ease-out;
        }

        @keyframes slideDownFade {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .insights-main-title {
           font-size: 30px;
 
font-weight: var(--font-weight-medium);
    line-height: 1.2;
            color: #1a1a1a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .insights-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4f46e5, #06b6d4);
            border-radius: 2px;
        }

        .insights-subtitle-text {
          font-size: 17px;
    color: var(--cb-muted);
    line-height: 1.8;
    margin-top: 16px;
            
            margin: 15px auto 0;
            line-height: 1.6;
        }

        .filter-nav-bar {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .filter-button-item {
            padding: 12px 28px;
            border: 2px solid #e5e7eb;
            background: white;
            color: #4b5563;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .filter-button-item::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
               background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
            z-index: 0;
        }

        .filter-button-item:hover::before,
        .filter-button-item.active-filter::before {
            width: 300px;
            height: 300px;
        }

        .filter-button-item span {
            position: relative;
            z-index: 1;
        }

        .filter-button-item:hover,
        .filter-button-item.active-filter {
           color: #562cac;
           border-color: #f6f6f6;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(80, 80, 80, 0.2);
        }

        .content-grid-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .story-card-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }

        .story-card-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #4f46e5, #06b6d4, #10b981);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .story-card-container:hover::before {
            transform: scaleX(1);
        }

        .story-card-container:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card-image-holder {
            width: 100%;
            height: 240px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .card-image-holder::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .story-card-container:hover .card-image-holder::after {
            opacity: 1;
        }

        .floating-icon-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            animation: floatBounce 3s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes floatBounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .category-label-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.95);
            color: #4f46e5;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .card-content-body {
            padding: 30px;
        }

        .story-title-heading {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .story-card-container:hover .story-title-heading {
            color: #4f46e5;
        }

        .story-description-snippet {
            font-size: 17px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .card-footer-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e5e7eb;
        }

        .publish-date-info {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #9ca3af;
            font-size: 0.9rem;
        }

        .read-more-arrow {
            color: #4f46e5;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

        .story-card-container:hover .read-more-arrow {
            gap: 12px;
        }

        .gradient-bg-one {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .gradient-bg-two {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .gradient-bg-three {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .gradient-bg-four {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .gradient-bg-five {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .gradient-bg-six {
            background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
        }

        @media (max-width: 1024px) {
            .content-grid-layout {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .insights-main-title {
                font-size: 2rem;
            }

            .content-grid-layout {
                grid-template-columns: 1fr;
            }

            .insights-wrapper {
                padding: 50px 15px;
            }
        }


/* new section css end */


/* new section 2 starts */

        .tech-advantage-container {
          border-bottom: 1px solid #dfdfdf;
            max-width: 1400px;
            margin: 0 auto;
        }

        .header-section {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInDown 0.8s ease-out;
        }

        .main-heading {
              /* margin-top: 70px; */
            font-size: 48px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .sub-description {
            font-size: 18px;
            color: #718096;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 70px;
        }

        .advantage-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 35px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out backwards;
        }

        .advantage-card:nth-child(1) { animation-delay: 0.1s; }
        .advantage-card:nth-child(2) { animation-delay: 0.2s; }
        .advantage-card:nth-child(3) { animation-delay: 0.3s; }
        .advantage-card:nth-child(4) { animation-delay: 0.4s; }
        .advantage-card:nth-child(5) { animation-delay: 0.5s; }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
         
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .advantage-card:hover::before {
            transform: scaleX(1);
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        }

        .icon-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            transition: all 0.4s ease;
        }

        .advantage-card:hover .icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .icon-wrapper::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 18px;
            opacity: 0.2;
            animation: pulse 2s ease-in-out infinite;
        }

        .icon-purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .icon-purple::after { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

        .icon-blue { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
        .icon-blue::after { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

        .icon-green { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
        .icon-green::after { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

        .icon-orange { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
        .icon-orange::after { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

        .icon-teal { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
        .icon-teal::after { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

        .icon-svg {
            width: 36px;
            height: 36px;
            fill: white;
            position: relative;
            z-index: 1;
        }

        .card-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .advantage-card:hover .card-title {
            color: #667eea;
        }

        .card-description {
            font-size: 15px;
            color: #718096;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .feature-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: #667eea;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .feature-link:hover {
            gap: 12px;
            color: #764ba2;
        }

        .arrow-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .feature-link:hover .arrow-icon {
            transform: translateX(4px);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.2;
            }
            50% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .main-heading {
                font-size: 36px;
            }

            .advantage-grid {
                grid-template-columns: 1fr;
            }

            .advantage-card {
                padding: 30px 25px;
            }
        }


 /* new section 2  end */




/* contact us start */

        .contact-container {
            max-width: 1100px;
    margin: 30px auto;

        }

        .contact-header {
            text-align: center;
            margin-bottom: 40px;
            animation: fadeInDown 0.8s ease;
        }

        .contact-header h1 {
            font-size: 2.5rem;
            font-weight: var(--font-weight-medium);
            /* font-weight: 700; */
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            -webkit-background-clip: text;
            /* -webkit-text-fill-color: transparent; */
            margin-bottom: 12px;
            letter-spacing: -1px;
        }

        .contact-header p {
            font-size: 1rem;
            color: #6c757d;
            font-weight: 400;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            animation: fadeInUp 0.8s ease;
        }

        .left-section {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .left-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
       background: linear-gradient(135deg, #5469c9 0%, #cf5e6c 100%);
        }

        .section-title {
            font-size: 1.5rem;
            /* font-weight: 700; */
            font-weight: var(--font-weight-medium);
            color: #212529;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 0.875rem;
            color: #6c757d;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
               padding: 10px 14px;
            background: #f8f9fa;
            border-radius: 14px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .info-item:hover {
            background: #f0f3ff;
            transform: translateX(8px);
        }

        .info-icon {
            width: 40px;
            height: 40px;
            color: #562cac;
    background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
           /* background: linear-gradient(135deg, #5469c9 0%, #cf5e6c 100%); */
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* color: white; */
            font-size: 1rem;
            flex-shrink: 0;
            box-shadow: 0 8px 16px rgba(23, 27, 43, 0.3);
        }

        .info-content h3 {
            font-size: 0.75rem;
            font-weight: 600;
            color: #667eea;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }

        .info-content p, .info-content a {
            font-size: 0.875rem;
            color: #495057;
            text-decoration: none;
            line-height: 1.6;
        }

        .info-content a:hover {
            color: #667eea;
        }

        .map-container {
            margin-top: 25px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 250px;
            position: relative;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            position: relative;
        }

        .map-pin {
            position: absolute;
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            left: 50%;
            top: 50%;
            margin-left: -20px;
            margin-top: -40px;
            animation: bounce 2s infinite;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .map-pin::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #667eea;
            border-radius: 50%;
            top: 10px;
            left: 10px;
        }

        .right-section {
            background: white;
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .required {
            color: #667eea;
        }

        .form-control {
            width: 100%;
           padding: 8px 13px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            color: #212529;
            transition: all 0.3s ease;
            background: #f8f9fa;
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }

        .form-control::placeholder {
            color: #adb5bd;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: rotate(-45deg) translateY(0);
            }
            50% {
                transform: rotate(-45deg) translateY(-10px);
            }
        }

        @media (max-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr;
            }

            .contact-header h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 20px 15px;
            }

            .left-section, .right-section {
                padding: 30px;
            }

            .contact-header h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .info-item {
                padding: 15px;
            }

            .map-container {
                height: 250px;
            }
        }

/* contact us end*/



/* --- BODY CSS SECTION ONLY --- */


.main-content-section {
    flex-grow: 1;
    padding: 40px 20px; /* Increased padding */
    text-align: center;
}
/* --- END BODY CSS SECTION --- */


/* --- FOOTER CSS --- */
#it-company-footer {
    background-color: #ffffff; /* White Background */
    color: #343a40; /* Darker text for better contrast */
    padding: 50px 20px 25px; /* More padding top/bottom */
    border-top: 2px solid #f0f0f0; /* Thicker primary color separator */
    
    position: relative; /* For potential future additions */
    overflow: hidden; /* To contain any absolute elements */
}

/* Subtle background pattern (optional, for extra attractiveness) */
#it-company-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 123, 255, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(40, 167, 69, 0.03) 0%, transparent 40%);
    opacity: 0.8;
    z-index: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px; /* Increased gap */
    padding-bottom: 40px;
    border-bottom: 1px solid #e9ecef; /* Lighter border */
    position: relative; /* To bring content above the ::before pseudo-element */
    z-index: 1;
}

.footer-col {
    /* Base styling for all columns */
}

/* Logo and Info Styling */
.footer-logo-link {
    text-decoration: none;
    display: inline-flex; /* Use flex for logo to align icon and text */
    align-items: center;
    margin-bottom: 20px;
}

.logo-text {
    font-size: 2rem; /* Larger logo text */
    font-weight: 800; /* Bolder */
    color: #007bff;
    text-transform: uppercase; /* For a modern, strong look */
    letter-spacing: 1px;
}

.fa-microchip {
    color: #28a745;
    margin-left: 10px; /* More space for the icon */
    font-size: 1.8rem; /* Larger chip icon */
    transform: rotate(90deg); /* Rotate for a dynamic look */
}

.company-tagline {
    font-size: 1rem; /* Slightly larger tagline */
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Heading Styling */
.footer-heading {
    font-size: 1.25rem; /* Larger headings */
    /* font-weight: 700; */
    font-weight: var(--font-weight-medium);
   color: #1f1f1f;
    margin-bottom: 20px; /* More space below heading */
    position: relative;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 40px; /* Longer underline */
    height: 4px; /* Thicker underline */
background: linear-gradient(135deg, #5469c9 0%, #cf5e6c 100%);
    margin-top: 10px; /* More space from heading */
    border-radius: 2px; /* Soften edges */
}

/* List Styling */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px; /* More space between list items */
}

.footer-link {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem; /* Slightly larger links */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition */
    display: block;
    padding-left: 0;
    position: relative; /* For subtle arrow icon */
}

.footer-link:hover {
    color: #007bff;
    transform: translateX(5px); /* Slide effect on hover */
}

/* Add a subtle arrow on hover */
.footer-link::before {
    content: '\203A'; /* Unicode right arrow */
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) scale(0); /* Start hidden and small */
    color: #007bff;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.footer-link:hover::before {
    transform: translateY(-50%) scale(1); /* Reveal arrow on hover */
}


.new-badge {
    background-color: #dc3545;
    color: white;
    font-size: 0.75rem; /* Slightly larger badge */
    padding: 3px 7px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: normal;
    vertical-align: middle; /* Align better with text */
}

/* Contact and Icon Styling - IMPROVED ALIGNMENT */
.contact-item {
    display: flex; /* Use flex to align icon and text */
    align-items: flex-start; /* Align icon and text at the top */
    margin-bottom: 15px; /* More space between contact items */
    font-size: 0.95rem;
    line-height: 1.5; /* Improve readability */
}

.contact-icon {
    color: #252525;
    margin-right: 12px; /* More space between icon and text */
    font-size: 1.1rem; /* Slightly larger icons */
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: 2px; /* Fine-tune vertical alignment */
}

/* Social Icons - NO UNDERLINE & MORE ATTRACTIVE */
.social-icons {
    display: flex;
    gap: 18px; /* More space between icons */
    margin-bottom: 25px; /* More space below social icons */
}

.social-icon {
    font-size: 1.6rem; /* Larger social icons */
    width: 40px; /* Larger hit area */
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e9ecef; /* Slightly thicker, lighter border */
    text-decoration: none; /* Crucial: Remove underline */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Subtle shadow */
}

/* Unique Social Icon Classes for different colors */
.facebook-class { color: #3b5998; }
.twitter-class { color: #1da1f2; }
.linkedin-class { color: #0077b5; }
.github-class { color: #333; }

.social-icon:hover {
    color: white !important;
    background-color: #007bff; /* Primary blue on hover */
    border-color: #007bff;
    transform: translateY(-3px) scale(1.05); /* Lift and slightly enlarge */
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3); /* More prominent shadow on hover */
}

/* Bottom Footer */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem; /* Slightly larger text */
    color: #6c757d;
    border-top: 1px solid #eee; /* Light border on top of bottom section */
    position: relative;
    z-index: 1;
}

.copyright {
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.legal-links {
    margin: 0;
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center;     /* Centers content vertically */
}
.legal-links a {
    color: #6c757d;
    text-decoration: none;
    padding: 0 12px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #007bff;
    text-decoration: underline; /* Underline legal links on hover */
}

.separator {
    color: #ccc;
}

/* --- RESPONSIVENESS (Mobile First Approach) --- */

/* Tablet and Smaller Desktops (max-width: 992px) */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .logo-info-col {
        grid-column: span 2;
        text-align: center; /* Center content in logo column */
    }

    .footer-logo-link {
        justify-content: center; /* Center logo in its column */
    }

    .company-tagline {
        padding: 0 20px; /* Add some padding for better look on tablet */
    }

    /* Center headings and their underlines */
    .footer-heading {
        text-align: center;
    }
    .footer-heading::after {
        margin-left: auto;
        margin-right: auto;
    }

    /* Center social and contact info */
    .social-icons {
        justify-content: center;
    }
    .contact-item {
        justify-content: center;
    }
    .footer-link::before { /* Hide arrows on smaller screens for cleaner look */
        display: none;
    }
}

/* Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
    #it-company-footer {
        padding: 40px 15px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px; /* Consistent gap */
        text-align: center;
    }
    
    .logo-info-col {
        grid-column: span 1;
    }
    
    .footer-logo-link {
        justify-content: center;
    }
    
    .footer-heading::after {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
        gap: 15px; /* Slightly smaller gap on mobile */
    }

    .contact-item {
        justify-content: center;
        align-items: center; /* Center align icon and text on mobile */
    }
    
    .contact-icon {
        margin-right: 8px; /* Adjust margin for smaller screens */
    }

    .legal-links a {
        padding: 0 8px;
        display: block; /* Stack legal links vertically */
        margin-bottom: 5px;
    }

    .separator {
        display: none;
    }
    .footer-list li {
        margin-bottom: 8px;
    }
}


.footer-logo-link .logo-image {
  width: 60%;       /* Scales with container width */
  max-width: 700px; /* Prevents it from getting too large */
  height: auto;
}
/* footer css end*/





/* faq start  */
/* FAQ Section Styles */
.faq-section {
  border-bottom: 1px solid #dfdfdf;
  background-color: #ffffff;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}

.faq-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left image box with custom height */
.faq-image-box {
  position: relative;
  flex: 1 1 42%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-overlay {
  position: absolute;
  inset: 0;

  opacity: 0.85;
}

.faq-image-text {
  position: absolute;
  bottom: 15%;
  left: 10%;
  color: #fff;
  z-index: 2;
}

.faq-image-text h2 {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 80%;
}

/* Right FAQ content (different height) */
.faq-content {
  flex: 1 1 50%;
  /* min-height: 620px; */
  background: #fff;
  border-radius: 20px;
  padding: 20px;
 
}

.faq-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.faq-subtitle {
  color: #666;
  margin-bottom: 30px;
}

/* Accordion styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
background: linear-gradient(to right, #f9f9f9, #f2f2f2);
  border: none;
  outline: none;
  padding: 7px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12); /* soft drop shadow */
}

.faq-question:hover {
  background: linear-gradient(to right, #ffffff, #e8e8e8); /* slightly darker gray on hover */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.faq-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #5469c9 0%, #cf5e6c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.35s ease;
  background: #fff;
  
}

 


.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
  }
  .faq-image-box {
    height: 400px;
  }
  .faq-content {
    padding: 35px 25px;
    min-height: auto;
  }
}




/* faq end */

.location-text {
  margin-bottom: 0rem;
}


.contact-location-section {
    text-align: center;
    margin-top: 2rem;
}

.contact-heading {
    font-size: 1.0rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.contact-gif img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  
}

/* 
Explore Our Products start  */
    .healthcare-showcase-container {
            padding: 10px 15px 15px 15px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .showcase-header {
            text-align: center;
            margin-bottom: 1.5rem;
            color: #1f2937;
        }

        .showcase-title {
          font-weight: var(--font-weight-medium);
            font-size: 30px;
            /* font-weight: bold; */
            margin-bottom: 38px;
            line-height: 40px;
        }

        .showcase-subtitle {
            font-size: 1rem;
            opacity: 0.7;
            color: #4b5563;
        }

        .product-nav-pills {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 2.2rem;
            flex-wrap: wrap;
        }

        .nav-pill {
            padding: 0.5rem 1.25rem;
            border-radius: 9999px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .nav-pill:hover {
            transform: scale(1.05);
        }

        .nav-pill.active {
            font-size: 17px;
          color: #562cac;
    background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .nav-pill:not(.active) {
          font-size: 17px;
            background: white;
            color: #374151;
            border: 2px solid #e5e7eb;
        }

        .product-showcase-card {
            background: transparent;
            border-radius: 1.5rem;
            overflow: visible;
            position: relative;
        }

        .product-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            min-height: 420px;
            align-items: stretch;
        }

        .product-image-section {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            height: 100%;
            min-height: 380px;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .product-image-section::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .image-content {
            position: relative;
            z-index: 2;
            color: white;
        }

        .image-title {
            font-size: 1.75rem;
            font-weight: bold;
            line-height: 1.2;
        }

        .product-info-section {

            display: flex;
            flex-direction: column;
            justify-content: center;
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .info-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f3f4f6;
        }

        .info-icon-wrapper {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.75rem;
      
    background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon-wrapper svg {
            width: 1.8rem;
            height: 1.8rem;
            color: #562cac;
   
        }

        .info-header-text h3 {
            font-size: 1.4rem;
           font-weight: var(--font-weight-medium);
            color: #1f2937;
            margin-bottom: 0.125rem;
        }

        .info-header-text p {
            font-size: 0.8rem;
            color: #6b7280;
        }

        .info-description {
            color: #4b5563;
     font-size: 17px;
            line-height: 1.4;
            margin-bottom: 1.25rem;
        }

        .info-features {
          
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-item {
          
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-radius: 0.5rem;
            font-size: 17px;
            color: #374151;
        font-weight: var(--font-weight-medium);
        }

        .feature-item svg {
            width: 1rem;
            height: 1rem;
            flex-shrink: 0;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-weight: 600;
        
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            width: 100%;
              color: #562cac;
    background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .dots-indicator {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .dot {
            height: 0.4rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .dot.active {
            width: 1.5rem;
            background: linear-gradient(90deg, #5469c9 0%, #cf5e6c 100%);
        }

        .dot:not(.active) {
            width: 0.4rem;
            background: #d1d5db;
        }

        @media (max-width: 768px) {
            .product-content-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .product-image-section {
                min-height: 250px;
            }

            .product-info-section {
                padding: 1.5rem;
            }

            .image-title {
                font-size: 1.5rem;
            }

            .showcase-title {
                font-size: 1.5rem;
            }
        }
 
/* Explore Our Products end  */


/* Why CareAI start */
   
        .whycareai-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .whycareai-section-wrapper {
          margin-top: 40px;
          border-top: 1px solid #dfdfdf;
            /* background: white; */
     
            padding: 45px 45px;
            /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); */
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid #dfdfdf;
        }

        /* .whycareai-section-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        } */
        
        .whycareai-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: stretch;
        }
        
        .whycareai-text-content {
            animation: fadeInLeft 0.8s ease-out;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .whycareai-heading {
            font-size: 36px;
            font-weight: 700;
            font-weight: var(--font-weight-medium);
            /* margin-bottom: 16px; */
            color: #1a1a1a;
            position: relative;
            padding-bottom: 12px;
            letter-spacing: -0.5px;
        }
        
        .whycareai-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
            animation: expandWidth 0.8s ease-out 0.3s both;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 80px; }
        }
        
        .whycareai-paragraph {
            font-size: 17px;
            color: #5a5a5a;
            line-height: 1.4;
            margin-top: 20px;
        }

        /* .whycareai-highlight {
            display: inline-block;
            background: linear-gradient(120deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 500;
            color: #667eea;
        }
         */
        .whycareai-image-wrapper {
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            /* box-shadow: 0 25px 50px rgba(102, 126, 234, 0.25); */
            animation: fadeInRight 0.8s ease-out;
        }

        .whycareai-gif {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }
        
        .whycareai-image-wrapper::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        .whycareai-image-placeholder {
            position: relative;
            z-index: 1;
            font-size: 20px;
            font-weight: 600;
            color: white;
            text-align: center;
            padding: 20px;
        }
        
        @keyframes pulse {
            0%, 100% { 
                transform: scale(1) rotate(0deg); 
                opacity: 0.5; 
            }
            50% { 
                transform: scale(1.1) rotate(10deg); 
                opacity: 0.8; 
            }
        }

        .whycareai-benefits {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 5px;
            margin-top: 10px;
        }

        .whycareai-benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 5px;
            border-radius: 12px;
            background: white;
            transition: all 0.3s ease;
        }

        .whycareai-benefit-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .whycareai-benefit-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 12px;
            color: #562cac;
    background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
            /* background: linear-gradient(135deg, #5469c9 0%, #cf5e6c 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            /* color: white; */
            font-size: 20px;
        }

        .whycareai-benefit-text {
            font-size: 17px;
            color: #333;
            font-weight: 600;
            line-height: 1.5;
        }
        
        @media (max-width: 968px) {
            .whycareai-content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .whycareai-section-wrapper {
                padding: 50px 30px;
            }
            
            .whycareai-heading {
                font-size: 34px;
            }

            .whycareai-paragraph {
                font-size: 15px;
            }
            
            .whycareai-image-wrapper {
                height: 350px;
            }

            .whycareai-stats {
                grid-template-columns: 1fr;
            }

            .whycareai-image-wrapper {
                min-height: 350px;
            }
        }
        
        @media (max-width: 640px) {
            body {
                padding: 40px 0;
            }

            .whycareai-container {
                padding: 0 16px;
            }
            
            .whycareai-section-wrapper {
                padding: 40px 24px;
                border-radius: 16px;
            }
            
            .whycareai-heading {
                font-size: 28px;
            }
            
            .whycareai-paragraph {
                font-size: 14px;
                line-height: 1.7;
            }
            
            .whycareai-image-wrapper {
                height: 280px;
            }

            .whycareai-stat-number {
                font-size: 28px;
            }

            .whycareai-stat-label {
                font-size: 13px;
            }

            .whycareai-image-wrapper {
                min-height: 280px;
            }

            .whycareai-benefits {
                grid-template-columns: 1fr;
            }
        }
     
/* Why CareAI end*/


/* benefits start */
       .benefits-container {
            max-width: 1400px;
          margin: 0 auto 20px;
       border-top: 1px solid #dfdfdf;
            /* border-radius: 24px; */
          padding: 40px;
padding-bottom: 80px; /* or any value you want */

     border-bottom: 1px solid #dfdfdf;
            position: relative;
            overflow: hidden;

        }

        .benefits-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
           
        }

        .section-header {
              margin-top: 15px;
            text-align: center;
            margin-bottom: 35px;
        }

        .section-header h2 {
            font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--cb-dark);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
        }

        .section-header p {
            font-size: 1.05rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            position: relative;
        }

       

        @media (min-width: 769px) {
            .benefits-grid::before {
                display: block;
            }
        }

        .benefit-item {
            background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
            padding: 24px;
            border-radius: 16px;
           border-color: rgba(102, 126, 234, 0.3);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
            background: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .benefit-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;

            transform: scaleY(0);
            transition: transform 0.4s ease;
        }

        /* Connection node */
  

        .dots-pattern {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 60px;
            height: 60px;
            opacity: 0.05;
            background-image: radial-gradient(circle, #667eea 2px, transparent 2px);
            background-size: 12px 12px;
            transition: opacity 0.4s ease;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            border-color: rgba(102, 126, 234, 0.3);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
            background: white;
        }

        .benefit-item:hover::before {
            transform: scaleY(1);
        }

        .benefit-item:hover::after {
            opacity: 1;
            box-shadow: 0 0 0 6px rgba(102, 126, 234, 0.2);
        }

        .benefit-item:hover .dots-pattern {
            opacity: 0.12;
        }

        .benefit-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 14px;
            margin-bottom: 10px;
        }

        .benefit-icon {
            width: 52px;
            height: 52px;
background: linear-gradient(135deg, #5469c9 0%, #cf5e6c 100%);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 5px 14px rgba(102, 126, 234, 0.25);
            transition: all 0.4s ease;
            position: relative;
        }

        .benefit-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            border-radius: inherit;
            opacity: 0.3;
            filter: blur(10px);
            z-index: -1;
        }

        .benefit-item:hover .benefit-icon {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 7px 18px rgba(102, 126, 234, 0.35);
        }

        .benefit-icon svg {
            width: 32px;
            height: 32px;
            stroke: white;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .benefit-item h3 {
            font-size: 1.08rem;
            color: #1a1a2e;
            font-weight: 700;
            letter-spacing: -0.2px;
            line-height: 1.3;
            text-align: center;
        }

        .benefit-item p {
            color: #6c757d;
            font-size: 0.92rem;
            line-height: 1.6;
            text-align: center;
        }

        @media (max-width: 1024px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .benefits-container {
                padding: 30px 22px;
            }

            .section-header h2 {
                font-size: 1.9rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .benefit-item {
                padding: 20px;
            }

            .benefit-item p {
                text-align: center;
                margin-top: 10px;
            }

            body {
                padding: 25px 15px;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 1.7rem;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            .benefit-item h3 {
                font-size: 1rem;
            }

            .benefit-icon {
                width: 42px;
                height: 42px;
            }

            .benefit-icon svg {
                width: 20px;
                height: 20px;
            }
        }


/* benefits end */



/* hero demo section start */
  .hero-demo-section {
    border-radius: 20px;
    margin-top: 40px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    position: relative;

    /* Background image + gradient overlay */
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0) 0%, rgba(22, 33, 62, 0) 100%),
        url('../images/Demobg.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


  .hero-demo-section2 {
    border-radius: 20px;
    margin-top: 40px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    position: relative;

    /* Background image + gradient overlay */
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0) 0%, rgba(22, 33, 62, 0) 100%),
        url('../images/demobg2.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}






        .demo-container {
            width: 1400px;
            max-width: 100%;
            margin: 0 auto;
            text-align: left;
            padding: 50px;
        }

        .demo-content-wrapper {
            position: relative;
            z-index: 2;
        }

        .main-heading {
          line-height: 45px;
            font-size: clamp(2rem, 5vw, 2.1rem);
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
            animation: fadeInDown 0.8s ease-out;
        }

.democontactbutton {
    display: inline-block;
    padding: 12px 45px;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 78, 143, 0.3);
    margin-bottom: 10px;
    animation: 
        fadeInUp 0.8s ease-out 0.2s backwards,
        bgshine 6s ease-in-out 3s infinite,
        pulse 2s ease-in-out infinite; /* Added pulse animation */

    /* Enhanced gradient for richer shine */
    background: linear-gradient(
        135deg,
        rgb(84, 105, 201),
        rgb(117, 135, 220),
        rgb(207, 94, 108),
        rgb(147, 76, 100),
        rgb(84, 105, 201)
    );
    background-size: 400% 400%; /* wider movement for smoother shine */
}

/* Hover effect */
.democontactbutton:hover {
    transform: translateY(-3px) scale(1.05); /* Slight pop on hover */
    box-shadow: 0 15px 40px rgba(233, 78, 143, 0.5);
}

/* Active click */
.democontactbutton:active {
    transform: translateY(-1px);
}

/* Smooth background shine animation */
@keyframes bgshine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Gentle pulse popup animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}


        .tagline-text {
          margin-bottom: 22px;
          font-size: 17px;
            color: #e0e0e0;
            max-width: 700px;
            /* margin: 5px auto; */
            line-height: 1.4;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .tagline-highlight {
            color: #e94e8f;
            font-weight: 600;
        }

        /* Decorative elements */
        .accent-circle {
            display: none;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) scale(1);
            }
            50% {
                transform: translateY(-20px) scale(1.05);
            }
        }

        @media (max-width: 1400px) {
            .demo-container {
                padding: 0 30px;
            }
        }

        @media (max-width: 1024px) {
            .demo-container {
                padding: 0 30px;
            }

            .hero-demo-section {
                padding: 50px 30px;
            }
        }

        @media (max-width: 768px) {
            .hero-demo-section {
                padding: 40px 20px;
                min-height: 45vh;
            }

            .main-heading {
                margin-bottom: 30px;
            }

            .democontactbutton {
                padding: 15px 35px;
                font-size: 1.1rem;
                margin-bottom: 35px;
            }

            .tagline-text {
                max-width: 100%;
                padding: 0 10px;
            }
        }

        @media (max-width: 480px) {
            .hero-demo-section {
                padding: 30px 15px;
            }

            .democontactbutton {
                padding: 14px 30px;
                font-size: 1rem;
                margin-bottom: 30px;
            }
        }
/* hero demo section end */




/* Who We Serve start */

        .who-we-serve-full {
            padding: 46px 0px 35px 0px;
            margin-top: 0;
            margin-bottom: 0;
            background: #ffffff;
            position: relative;
        }

        .who-we-serve-container {
            border-top: 1px solid rgb(223, 223, 223);
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            border-bottom: 1px solid rgb(223, 223, 223);
            background-image: url('../images/dotsbg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .who-we-serve-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
            justify-content: center;
        }

        .who-we-serve-col {
            width: 100%;
            padding: 0 15px;
        }

        .who-we-serve-title {
            font-size: 14px;
            float: left;
            width: 100%;
            margin-bottom: 35px;
            color: var(--cb-muted);
            text-align: center;
            opacity: 0;
            animation: fadeInDown 0.8s ease-out 0.2s forwards;
        }

        .who-we-serve-title h2 {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 10px;
            color: var(--cb-dark);
            display: block;
            color: #274160;
        }

        .who-we-serve-title p {
            margin-bottom: 0px;
            display: inline-block;
            width: 65%;
            color: #666;
        }

        .who-we-serve-title i {
            font-size: 22px;
        }

        .who-we-serve-list,
        .who-we-serve-wrap {
            float: left;
            width: 100%;
        }

        .who-we-serve-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .who-we-serve-list ul li {
            list-style: none;
        }

        .who-we-serve-list > ul > li {
            float: none;
            display: inline-block;
            margin: 0px 0px 30px 0px;
            vertical-align: top;
            width: calc(20% - 16px);
            margin-right: 20px;
            opacity: 0;
            animation: slideInUp 0.8s ease-out forwards;
        }

        .who-we-serve-list > ul > li:nth-child(1) { animation-delay: 0.3s; }
        .who-we-serve-list > ul > li:nth-child(2) { animation-delay: 0.4s; }
        .who-we-serve-list > ul > li:nth-child(3) { animation-delay: 0.5s; }
        .who-we-serve-list > ul > li:nth-child(4) { animation-delay: 0.6s; }
        .who-we-serve-list > ul > li:nth-child(5) { animation-delay: 0.7s; }
        .who-we-serve-list > ul > li:nth-child(6) { animation-delay: 0.8s; }

        .who-we-serve-list > ul > li:nth-child(5n) {
            margin-right: 0;
        }

        .who-we-serve-wrap {
            box-shadow: 0px 8px 30px rgba(0,0,0,0.1);
            padding: 35px 20px 30px 20px;
            border-radius: 15px;
            position: relative;
            background: linear-gradient(135deg, #5469c9 0%, #cf5e6c 100%);
            border: 1px solid #8e0909;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .who-we-serve-wrap:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(84, 105, 201, 0.35);
            background: linear-gradient(135deg, #5469c9 0%, #cf5e6c 100%);
            border-color: transparent;
        }

        .who-we-serve-wrap:hover a,
        .who-we-serve-wrap:hover small {
            color: #ffffff;
        }

       .who-we-serve-list i {
    position: relative;
    left: 0;
    top: 0;
    font-size: 38px;
    color: #5469c9;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
    margin: 0 auto 20px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3), 
                0 0 0 8px rgba(255, 255, 255, 0.15),
                0 0 20px rgba(255, 255, 255, 0.4),
                0 0 30px rgba(255, 255, 255, 0.2),
                0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Add animation */
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3), 
                    0 0 0 8px rgba(255, 255, 255, 0.15),
                    0 0 20px rgba(255, 255, 255, 0.4),
                    0 0 30px rgba(255, 255, 255, 0.2),
                    0 8px 20px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 10px 6px rgba(255, 255, 255, 0.6), 
                    0 0 0 12px rgba(255, 255, 255, 0.3),
                    0 0 30px rgba(255, 255, 255, 0.6),
                    0 0 40px rgba(255, 255, 255, 0.4),
                    0 8px 20px rgba(0, 0, 0, 0.2);
    }
}


        .who-we-serve-list li:hover i {
            transform: scale(1.15) rotate(8deg);
            background: rgba(255, 255, 255, 1);
            color: #582dab;
            border-color: rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.4), 
                        0 0 0 12px rgba(255, 255, 255, 0.2),
                        0 0 30px rgba(255, 255, 255, 0.6),
                        0 0 50px rgba(255, 255, 255, 0.3),
                        0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .who-we-serve-list a {
            display: block;
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 0px;
            color: #ffffff;
            transition: color 0.3s ease;
            text-decoration: none;
            line-height: 1.4;
            position: relative;
            z-index: 2;
        }

        .who-we-serve-list li:hover a {
            color: #ffffff;
        }

        .who-we-serve-list small {
            font-size: 13px;
            color: #666;
            transition: color 0.3s ease;
        }

        .who-we-serve-list span {
            position: absolute;
            right: 15px;
            bottom: 15px;
            font-size: 40px;
            font-weight: 700;
            color: #5469c9;
            opacity: 0.08;
            line-height: 1;
            transition: all 0.4s ease;
        }

        .who-we-serve-list li:hover span {
            opacity: 0.2;
            transform: scale(1.1);
            color: #ffffff;
        }

        .who-we-serve-btn-wrapper {
            float: left;
            width: 100%;
            text-align: center;
            margin: 30px 0px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.9s forwards;
        }

        .who-we-serve-btn {
            display: inline-block;
            line-height: 1;
            padding: 18px 45px;
            color: #ffffff;
            border-radius: 40px;
            font-size: 17px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s ease-in-out;
            background-color: #fb236a;
            box-shadow: 0 10px 30px rgba(251, 35, 106, 0.3);
        }

        .who-we-serve-btn:hover {
            background-color: #274160;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(39, 65, 96, 0.4);
        }

        .who-we-serve-spacer {
            float: left;
            width: 100%;
            margin: 10px 0px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 992px) {
            .who-we-serve-list > ul > li {
                width: calc(50% - 15px);
                margin-right: 30px;
            }

            .who-we-serve-list > ul > li:nth-child(5n) {
                margin-right: 30px;
            }

            .who-we-serve-list > ul > li:nth-child(2n) {
                margin-right: 0;
            }
        }

        @media (max-width: 768px) {
            .who-we-serve-title h2 {
                font-size: 32px;
            }

            .who-we-serve-title p {
                width: 90%;
            }

            .who-we-serve-list > ul > li {
                width: 100%;
                margin-right: 0;
            }

            .who-we-serve-wrap {
                padding: 30px 25px 30px 25px;
            }

            .who-we-serve-list span {
                font-size: 50px;
            }
        }

/* Who We Serve end */




/* feedback start */
   /* Define keyframes for the top-to-bottom scroll animation */
        @keyframes clientfeedbacks-scroll-top-to-bottom {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-50%);
            }
        }

        /* Define keyframes for the bottom-to-top scroll animation */
        @keyframes clientfeedbacks-scroll-bottom-to-top {
            0% {
                transform: translateY(-50%);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* Class to apply the top-to-bottom animation */
        .clientfeedbacks-animate-scroll-t2b {
            animation: clientfeedbacks-scroll-top-to-bottom 60s linear infinite;
        }

        /* Class to apply the bottom-to-top animation */
        .clientfeedbacks-animate-scroll-b2t {
            animation: clientfeedbacks-scroll-bottom-to-top 60s linear infinite;
        }

        /* Utility class to pause the animation on hover */
        .clientfeedbacks-group:hover .clientfeedbacks-group-hover-pause {
            animation-play-state: paused;
        }


        .customer-heading {
       font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--cb-dark);
    display: block;
    color: #274160}
/* feedback end */



.cb-btn-cta {
  /* outline: solid rgb(212, 212, 212); */
    position: relative;
    display: inline-block;
    padding: 12px 40px;
    font-size: 17px;
    font-weight: 600;
 color: #562cac;
    background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(84, 105, 201, 0.4);
    animation: pulse 2s infinite;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }
}

/* Shine effect */
.cb-btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 2s infinite;
    pointer-events: none;
}

/* Shine animation from left to right */
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}





/* terms and uses start */

        .terms-of-use-container {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .terms-of-use-header {
            background: white;
            color: #333;
            padding: 40px 40px;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }

        .terms-of-use-title {
            font-size: 32px;
      
font-weight: var(--font-weight-medium);
            margin-bottom: 8px;
            color: #333;
        }

        .terms-of-use-subtitle {
            font-size: 20px;
            opacity: 0.95;
            font-weight: 300;
        }

        .terms-of-use-content {
            padding: 25px 80px;
        }

        .terms-of-use-intro {
            font-size: 17px;
            color: #555;
            margin-bottom: 22px;
            padding: 15px 25px;
            background: #f8f9fa;
            /* border-left: 4px solid #667eea; */
            border-radius: 8px;
        }

        .terms-of-use-section {
           margin-bottom: 20px;
    padding-bottom: 10px;
            border-bottom: 1px solid #e0e0e0;
        }

        .terms-of-use-section:last-child {
            border-bottom: none;
        }

        .terms-of-use-section-title {
          
            font-size: 20px;
            color: #000;
            margin-bottom: 5px;
            
font-weight: var(--font-weight-medium);
            /* font-weight: 600; */
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .terms-of-use-section-number {
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white; */
            color: #272727;
    background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .terms-of-use-paragraph {
            font-size: 16px;
            color: #555;
            margin-bottom: 5px;
            text-align: justify;
        }

        .terms-of-use-list {
            list-style: none;
            padding-left: 0;
            margin: 20px 0;
        }

        .terms-of-use-list-item {
            font-size: 16px;
            color: #555;
margin-bottom: 5px;
            padding-left: 35px;
            position: relative;
        }

        .terms-of-use-list-item:before {
            content: "•";
            color: #667eea;
            font-size: 24px;
            font-weight: bold;
            position: absolute;
            left: 10px;
            top: -2px;
        }

        .terms-of-use-highlight {
            background: #fff3cd;
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #ffc107;
            margin: 25px 0;
        }

    .terms-of-use-contact {
    background: url('../images/mailbg.jpg') center/cover no-repeat;
    color: #333;
    padding: 40px 40px;
    border-radius: 15px;
    /* text-align: center; */
    margin-top: 40px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

        .terms-of-use-contact-title {
            font-size: 28px;
            margin-bottom: 8px;
            font-weight: 600;
            color: #ffffff;
        }

        .terms-of-use-contact-text {
            font-size: 17px;
            margin-bottom: 10px;
               color: #ffffff;
        }

        .terms-of-use-email {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            text-decoration: none;
            padding: 8px 20px;
          background: linear-gradient(135deg, rgb(84, 105, 201) 0%, rgb(207, 94, 108) 100%);
            border: 2px solid #667eea;
            border-radius: 8px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .terms-of-use-email:hover {
            background: #667eea;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
        }

        .terms-of-use-footer {
            background: #f8f9fa;
            padding: 30px;
            text-align: center;
            color: #666;
            font-size: 15px;
        }

        @media (max-width: 1440px) {
            .terms-of-use-content {
                padding: 50px 60px;
            }
        }

        @media (max-width: 1024px) {
            .terms-of-use-content {
                padding: 40px 50px;
            }

            .terms-of-use-title {
                font-size: 40px;
            }

            .terms-of-use-section-title {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .terms-of-use-content {
                padding: 30px 30px;
            }

            .terms-of-use-header {
                padding: 40px 30px;
            }

            .terms-of-use-title {
                font-size: 32px;
            }

            .terms-of-use-subtitle {
                font-size: 17px;
            }

            .terms-of-use-section-title {
                font-size: 22px;
                gap: 10px;
            }

            .terms-of-use-section-number {
                width: 35px;
                height: 35px;
                font-size: 17px;
            }

            .terms-of-use-paragraph,
            .terms-of-use-list-item,
            .terms-of-use-intro {
                font-size: 17px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }

            .terms-of-use-content {
                padding: 25px 20px;
            }

            .terms-of-use-header {
                padding: 30px 20px;
            }

            .terms-of-use-title {
                font-size: 28px;
            }

            .terms-of-use-section-title {
                font-size: 20px;
                flex-direction: column;
                align-items: flex-start;
            }

            .terms-of-use-contact-title {
                font-size: 24px;
            }

            .terms-of-use-email {
                font-size: 18px;
                padding: 12px 25px;
            }
        }

/* terms and uses end*/








/* privacy policy */
  .privacy-policy-container {
            max-width: 1400px;
            margin: 0 auto;
  
            border-radius: 20px;
        
            overflow: hidden;
        }

        .privacy-policy-header {
            background: white;
            color: #333;
            padding: 40px 40px;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }

        .privacy-policy-title {
            font-size: 32px;
            font-weight: var(--font-weight-medium);
            /* font-weight: 600; */
            margin-bottom: 8px;
            color: #333;
        }

        .privacy-policy-subtitle {
            font-size: 20px;
            opacity: 0.95;
            font-weight: 300;
        }

        .privacy-policy-content {
            padding: 40px 80px;
        }

        .privacy-policy-intro {
            font-size: 17px;
            color: #555;
            margin-bottom: 30px;
            padding: 25px;
            background: #f8f9fa;
            /* border-left: 4px solid #667eea; */
            border-radius: 8px;
        }

        .privacy-policy-section {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
        }

        .privacy-policy-section:last-child {
            border-bottom: none;
        }

        .privacy-policy-section-title {
            font-size: 22px;
            color: #000;
            margin-bottom: 15px;
            /* font-weight: 600; */
            font-weight: var(--font-weight-medium);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .privacy-policy-section-number {
          color: #000000;
    background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white; */
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .privacy-policy-subsection-title {
            font-size: 19px;
            color: #000;
            margin: 20px 0 12px 0;
            font-weight: var(--font-weight-medium);
            /* font-weight: 600; */
        }

        .privacy-policy-paragraph {
            font-size: 17px;
            color: #555;
            margin-bottom: 20px;
            text-align: justify;
        }

        .privacy-policy-list {
            list-style: none;
            padding-left: 0;
            margin: 10px 0;
        }

        .privacy-policy-list-item {
            font-size: 17px;
            color: #555;
            margin-bottom: 2px;
            padding-left: 35px;
            position: relative;
        }

        .privacy-policy-list-item:before {
            content: "•";
            color: #667eea;
            font-size: 24px;
            font-weight: bold;
            position: absolute;
            left: 10px;
            top: -2px;
        }

        .privacy-policy-highlight {
            background: #fff3cd;
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #ffc107;
            margin: 25px 0;
        }

        .privacy-policy-contact {
            background: url(../images/mailbg.jpg) center / cover no-repeat;
    color: #333;
    padding: 40px 40px;
    border-radius: 15px;
    /* text-align: center; */
    margin-top: 10px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .privacy-policy-contact-title {
            font-size: 28px;
            margin-bottom: 8px;
            font-weight: 600;
            color: #ffffff;
        }

        .privacy-policy-contact-text {
            font-size: 17px;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .privacy-policy-email {
        font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgb(84, 105, 201) 0%, rgb(207, 94, 108) 100%);
    border: 2px solid #667eea;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s 
ease;
        }

        .privacy-policy-email:hover {
            background: #667eea;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
        }

        .privacy-policy-footer {
            background: #f8f9fa;
            padding: 30px;
            text-align: center;
            color: #666;
            font-size: 15px;
        }

        @media (max-width: 1440px) {
            .privacy-policy-content {
                padding: 50px 60px;
            }
        }

        @media (max-width: 1024px) {
            .privacy-policy-content {
                padding: 40px 50px;
            }

            .privacy-policy-title {
                font-size: 28px;
            }

            .privacy-policy-section-title {
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .privacy-policy-content {
                padding: 30px 30px;
            }

            .privacy-policy-header {
                padding: 40px 30px;
            }

            .privacy-policy-title {
                font-size: 28px;
            }

            .privacy-policy-subtitle {
                font-size: 17px;
            }

            .privacy-policy-section-title {
                font-size: 20px;
                gap: 10px;
            }

            .privacy-policy-section-number {
                width: 35px;
                height: 35px;
                font-size: 17px;
            }

            .privacy-policy-paragraph,
            .privacy-policy-list-item,
            .privacy-policy-intro {
                font-size: 17px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }

            .privacy-policy-content {
                padding: 25px 20px;
            }

            .privacy-policy-header {
                padding: 30px 20px;
            }

            .privacy-policy-title {
                font-size: 24px;
            }

            .privacy-policy-section-title {
                font-size: 18px;
                flex-direction: column;
                align-items: flex-start;
            }

            .privacy-policy-contact-title {
                font-size: 24px;
            }

            .privacy-policy-email {
                font-size: 18px;
                padding: 12px 25px;
            }
        }

/* privacy policy */



/* NEXT GENERATION START */
   .nextgen-patient-container {
            max-width: 1400px;
            width: 100%;
         margin: 40px auto;
        }

        .nextgen-patient-wrapper {
         border-top: 1px solid #dfdfdf;
          
                border-bottom: 1px solid #dfdfdf;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            min-height: 600px;
            padding: 40px;
        }

        .nextgen-patient-image {
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }

        .nextgen-patient-image::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -100px;
            left: -100px;
        }

        .nextgen-patient-image::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            bottom: -50px;
            right: -50px;
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            font-size: 18px;
            text-align: center;
            z-index: 1;
            position: relative;
        }

        .image-placeholder svg {
            width: 200px;
            height: 200px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .nextgen-patient-content {
            padding: 20px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .nextgen-patient-heading {
          font-size: 36px;
    /* font-weight: 700; */
    line-height: 1.2;
         font-weight: var(--font-weight-medium);
            color: #1a202c;
            margin-bottom: 20px;
            line-height: 1.3;
            background: linear-gradient(135deg, #121212 0%, #000000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nextgen-patient-description {
            font-size: 17px;
            color: #4a5568;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .nextgen-patient-highlight {
            font-size: 17px;
              color: rgb(74, 85, 104);
            line-height: 1.4;
            margin-bottom: 15px;
            /* font-weight: 500; */
        }

        .nextgen-patient-features {
            list-style: none;
            margin-bottom: 0;
        }

        .nextgen-patient-features li {
            font-size: 17px;
            color: #4a5568;
            line-height: 1.8;
            padding-left: 30px;
            position: relative;
  margin-bottom: 2px;
        }

        .nextgen-patient-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
            font-size: 20px;
        }

        @media (max-width: 1024px) {
            .nextgen-patient-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 15px 30px;
            }

            .nextgen-patient-image {
                min-height: 400px;
            }

            .nextgen-patient-content {
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .nextgen-patient-heading {
                font-size: 28px;
            }

            .nextgen-patient-wrapper {
                padding: 25px;
                gap: 25px;
            }

            .nextgen-patient-content {
                padding: 15px;
            }

            .nextgen-patient-image {
                min-height: 300px;
            }

            .image-placeholder svg {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }

            .nextgen-patient-heading {
                font-size: 24px;
            }

            .nextgen-patient-description,
            .nextgen-patient-highlight,
            .nextgen-patient-features li {
                font-size: 17px;
            }

            .nextgen-patient-wrapper {
                padding: 20px;
                gap: 20px;
            }

            .nextgen-patient-content {
                padding: 10px;
            }
        }


/* NEXT GENERATION END */


.cb-animate-on-scroll {
  overflow: hidden; /* hide overflow for smooth animation */
  position: relative;
}

.cb-animate-item {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(80px) scale(0.95);
  transition: opacity 1s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              filter 1s ease-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cb-animate-on-scroll.visible .cb-animate-item {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}


/* Dropdown Wrapper */
.cb-dropdown {
    position: relative;
    display: inline-block;
}

/* Toggle Link */
.cb-dropdown-toggle {
    cursor: pointer;
}

/* Dropdown Menu */
.cb-dropdown-menu {
    display: none;
    position: absolute;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 240px;
    z-index: 999;
    padding: 10px 0;
}

/* Dropdown Items */
.cb-dropdown-item {
    padding: 10px 18px;
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

.cb-dropdown-item:hover {
    background: #f3f4f6;
    color: #007bff;
}

/* Desktop: Show on Hover */
@media (min-width: 1024px) {
    .cb-dropdown:hover .cb-dropdown-menu {
        display: block;
    }
}

/* Mobile: Show when menu is open */
@media (max-width: 1023px) {
    .cb-dropdown-menu {
        position: relative;
        box-shadow: none;
        background: transparent;
        padding-left: 15px;
    }

    .cb-dropdown-item {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        background: transparent;
    }
}
.cb-dropdown-item {
    padding: 10px 18px;
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
    border-bottom: 1px solid #e5e5e5;   /* ADD LINE */
}

/* Remove last item line */
.cb-dropdown-item:last-child {
    border-bottom: none;
}
/* JavaScript for mobile click toggle */






/* price section start */

        .pricing-container {
            max-width: 1400px;
            margin: 0 auto;
          padding: 0 40px 30px;
            border-bottom: 1px solid #dfdfdf;
        }

        /* Top Pricing Hero Section */
        .pricing-hero-section {
          /* border-bottom: 1px solid #dfdfdf; */
        padding: 20px 0 50px 0;
          
        }

        .pricing-hero-grid {
            display: grid;
            grid-template-columns: 500px 1fr;
            gap: 80px;
            align-items: center;
        }
.pricing-hero-image {
    width: 100%;
    height: clamp(220px, 40vw, 400px); /* responsive height */
    border-radius: 24px;
       box-shadow: 0 20px 60px rgb(131 131 132 / 29%);
    position: relative;
    overflow: hidden;
}

.pricing-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills container on all screens */
    display: block;
}


        .pricing-hero-image::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .pricing-hero-image i {
            font-size: 140px;
            color: white;
            opacity: 0.5;
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }

        .pricing-hero-content {
            padding: 20px 0;
        }

        .pricing-hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 10px 28px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.2px;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        .pricing-hero-title {
               font-size: 36px;
    font-weight: var(--font-weight-medium);
       
            color: #1a202c;
            margin-bottom: 28px;
            line-height: 1.2;
        }

        .pricing-hero-text {
           font-size: 17px;
              color: #4a5568;
    line-height: 1.4;
            margin-bottom: 24px;
            line-height: 1.4;
        }

    

        .pricing-hero-highlight p {
              font-size: 17px;
    color: rgb(74, 85, 104);
    margin-bottom: 24px;
    line-height: 1.4;
        }


.pricing-features-section {
    padding: 40px 0;
    background: #ffffff;
}

.pricing-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-section-title {
    font-size: 36px;
    font-weight: var(--font-weight-medium);
    color: #1a202c;
    margin-bottom: 10px;
}

.pricing-section-subtitle {
    font-size: 16px;
    color: #6c7a93;
    max-width: 650px;
    margin: 0 auto;
}

/* GRID */
.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    justify-content: center;   /* ⭐ centers cards inside the grid */
}

/* CARDS */
.pricing-feature-card {
    background: white;
   padding: 18px 24px 12px 24px;
    border-radius: 14px;
    border: 1px solid #e3e8f6;
    transition: 0.3s ease;
}

.pricing-feature-inner {
    display: flex;
    gap: 18px;
}

.pricing-feature-card:hover {
    border-color: #5a73ea;
    box-shadow: 0 10px 32px rgba(90, 115, 234, 0.12);
    transform: translateY(-4px);
}

/* ICON */
.pricing-feature-icon {
       width: 141px;
    height: 74px;
    background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #562cac;
    transition: 0.3s 
ease;
}

.pricing-feature-card:hover .pricing-feature-icon {
 
    color: black;
    transform: scale(1.08);
}

.pricing-feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 6px;
}

.pricing-feature-content p {
    font-size: 15px;
    color: #6c7a93;
    line-height: 1.6;
}

/* BOTTOM BANNER */
.pricing-closing-text {
        text-align: center;
   font-size: 17px;
    color: #4a5568;
    /* padding: 28px 40px; */
    /* background: #f8f9ff; */
    border-radius: 14px;
    max-width: 850px;
    margin: 0 auto;

}









     

        /* Pricing CTA Section */
        .pricing-cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .pricing-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        .pricing-cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: white;
        }

        .pricing-cta-title {
            font-size: 44px;
            font-weight: 800;
            margin-bottom: 24px;
        }

        .pricing-cta-text {
            font-size: 19px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .pricing-email-container {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: white;
            padding: 24px 60px;
            border-radius: 16px;
            margin-bottom: 50px;
            transition: all 0.3s ease;
        }

        .pricing-email-container:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        }

        .pricing-email-container i {
            font-size: 26px;
            color: #667eea;
        }

        .pricing-email-link {
            color: #667eea;
            font-weight: 700;
            text-decoration: none;
            font-size: 24px;
            transition: color 0.3s ease;
        }

        .pricing-email-link:hover {
            color: #764ba2;
        }

        .pricing-divider {
            display: flex;
            align-items: center;
            margin: 50px 0;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-divider-line {
            flex: 1;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
        }

        .pricing-divider-text {
            padding: 0 30px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-form-intro {
            font-size: 18px;
            margin-bottom: 50px;
            opacity: 0.95;
        }

        .pricing-demo-form {
            max-width: 800px;
            margin: 0 auto;
        }

        .pricing-form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 24px;
        }

        .pricing-form-group {
            text-align: left;
        }

        .pricing-form-group.pricing-full-width {
            grid-column: 1 / -1;
        }

        .pricing-form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-form-input,
        .pricing-form-select,
        .pricing-form-textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.95);
            color: #1a202c;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .pricing-form-input:focus,
        .pricing-form-select:focus,
        .pricing-form-textarea:focus {
            outline: none;
            border-color: white;
            background: white;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
        }

        .pricing-form-textarea {
            resize: vertical;
            min-height: 130px;
        }

        .pricing-submit-btn {
            background: white;
            color: #667eea;
            padding: 20px 80px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .pricing-submit-btn:hover {
            background: #f8f9ff;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .pricing-form-note {
            margin-top: 30px;
            font-size: 15px;
            opacity: 0.9;
        }

        /* Pricing Footer Section */
        .pricing-footer-section {
            padding: 80px 0;
            background: white;
            text-align: center;
        }

        .pricing-footer-title {
            font-size: 38px;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 20px;
        }

        .pricing-footer-text {
            font-size: 18px;
            color: #4a5568;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 16px;
        }

        .pricing-footer-closing {
            font-size: 17px;
            color: #718096;
            font-style: italic;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .pricing-hero-grid {
                grid-template-columns: 400px 1fr;
                gap: 60px;
            }

            .pricing-hero-image {
                height: 500px;
            }

            .pricing-features-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 968px) {
            .pricing-hero-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .pricing-hero-image {
                height: 400px;
                order: -1;
            }

            .pricing-hero-title {
                font-size: 42px;
            }

            .pricing-section-title {
                font-size: 36px;
            }

            .pricing-form-grid {
                grid-template-columns: 1fr;
            }

            .pricing-container {
                padding: 0 20px;
            }
        }

        @media (max-width: 640px) {
            .pricing-hero-section,
            .pricing-features-section,
            .pricing-cta-section,
            .pricing-footer-section {
                padding: 60px 0;
            }

            .pricing-hero-title {
                font-size: 32px;
            }

            .pricing-hero-text,
            .pricing-hero-highlight p {
                font-size: 16px;
            }

            .pricing-section-title {
                font-size: 28px;
            }

            .pricing-cta-title {
                font-size: 32px;
            }

            .pricing-email-container {
                padding: 20px 40px;
            }

            .pricing-email-link {
                font-size: 18px;
            }

            .pricing-submit-btn {
                padding: 18px 50px;
                width: 100%;
            }

            .pricing-closing-text {
                padding: 30px 30px;
            }
        }
/* price section end*/

  .productcontact-container {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
          
            overflow: hidden;

        }

    .productcontact-header {
   /* background: linear-gradient(135deg, rgb(102 126 234 / 0%), rgb(118 75 162 / 0%)), url(../images/mailbg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
padding: 10px 40px 15px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

        .productcontact-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: productcontact-pulse 15s ease-in-out infinite;
        }

        @keyframes productcontact-pulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }

        .productcontact-header h1 {
            color: black;
              font-size: 36px;
    font-weight: var(--font-weight-medium);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .productcontact-header p {
        color: #6c7a93;
                font-size: 17px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .productcontact-content {
            padding: 5px 40px;
        }

        .productcontact-info {
                font-weight: var(--font-weight-medium);
            text-align: center;
            margin-bottom: 50px;
        }

        .productcontact-info h2 {
                font-weight: var(--font-weight-medium);
            font-size: 1.5rem;
            color: #2d3748;
            margin-bottom: 20px;
        }

        .productcontact-email-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
         color: #562cac;
    background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;

        }

        .productcontact-email-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .productcontact-divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 50px 0;
            color: #a0aec0;
        }

        .productcontact-divider::before,
        .productcontact-divider::after {
            content: '';
            flex: 1;
            border-bottom: 2px solid #e2e8f0;
        }

        .productcontact-divider span {
            padding: 0 20px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .productcontact-form-section {
            max-width: 800px;
            margin: 0 auto;
        }

        .productcontact-form-section h3 {
            font-weight: var(--font-weight-medium);
            font-size: 36px;
            color:#171717;
            margin-bottom: 12px;
            text-align: center;
        }

        .productcontact-form-subtitle {
            text-align: center;
            color: #718096;
            margin-bottom: 40px;
            font-size: 1.05rem;
        }

        .productcontact-form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 24px;
        }

        .productcontact-form-group {
            display: flex;
            flex-direction: column;
        }

        .productcontact-form-group.productcontact-full-width {
            grid-column: 1 / -1;
        }

        .productcontact-label {
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .productcontact-input, .productcontact-textarea, .productcontact-select {
            padding: 14px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .productcontact-input:focus, .productcontact-textarea:focus, .productcontact-select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .productcontact-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .productcontact-submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 16px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .productcontact-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .productcontact-footer-message {
               margin-top: 45px;
    padding: 33px;
    background: linear-gradient(135deg, #f7fafcd1 0%, #edf2f7b0 100%);
    border-radius: 16px;
    text-align: center;
        }

        .productcontact-footer-message h4 {
            font-size: 1.6rem;
            color: #2d3748;
            margin-bottom: 8px;
        }

        .productcontact-footer-message p {
    color: #6c7a93;
    font-size: 17px;
            line-height: 1.4;
           
            max-width: 800px;
            margin: 0 auto;
        }

        .productcontact-highlight {
            color:  #000000;
      font-weight: var(--font-weight-medium);
        }

        @media (max-width: 768px) {
            .productcontact-header h1 {
                font-size: 1.8rem;
            }

            .productcontact-header p {
                font-size: 1rem;
            }

            .productcontact-content {
                padding: 40px 24px;
            }

            .productcontact-form-grid {
                grid-template-columns: 1fr;
            }
        }







.popup-overlay {
    display: none; /* hidden by default */
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    align-items: center; justify-content: center;
    z-index: 9999;
}

.popup-box {
    background: #fff; padding: 30px; border-radius: 12px;
    text-align: center; width: 90%; max-width: 380px;
    animation: popupScale 0.4s ease;
}

.popup-icon i { font-size: 60px; color: #22c55e; margin-bottom: 15px; }
.popup-box h3 { margin: 10px 0; font-size: 24px; }
.popup-box p { font-size: 15px; color: #555; margin-bottom: 20px; }
.popup-box button {
    background: #22c55e; color: #fff; border: none;
    padding: 10px 25px; border-radius: 6px; cursor: pointer;
}
.popup-box button:hover { background: #16a34a; }

@keyframes popupScale {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}









/* Style for all inputs and selects to match */


/* Your existing Select2 styling */
/* Your existing form control styles */
.form-control,
.leadform-field-select {
    width: 100% !important;
    padding: 8px 13px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    color: #212529 !important;
    transition: all 0.3s ease !important;
    background: #f8f9fa !important;
    font-family: inherit !important;
    height: 45px !important;
    box-sizing: border-box !important;
}

.form-control:focus,
.leadform-field-select:focus {
    outline: none !important;
    border-color: #007bff !important;
    background: #fff !important;
}

textarea.form-control {
    height: 120px !important;
    resize: vertical !important;
}

.leadform-field-select {
    width: 85px !important;
    min-width: 85px !important;
    margin-right: 10px !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
}

/* ========== SELECT2 STYLING TO MATCH FORM CONTROLS ========== */

/* Select2 Container - Set width and spacing */

/* Select2 Selection Box - Match your form control styling exactly */
.select2-container--default .select2-selection--single {
    padding: 8px 13px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    color: #212529 !important;
    transition: all 0.3s ease !important;
    background: #f8f9fa !important;
    font-family: inherit !important;
    height: 45px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
}

/* Select2 Arrow positioning */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px !important;
    top: 1px !important;
    right: 8px !important;
}

/* Select2 Rendered content (flags + text) */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #212529 !important;
    line-height: 27px !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
    display: flex !important;
    align-items: center !important;
}

/* Preserve flag icons if they exist */
.select2-selection__rendered img,
.select2-results__option img {
    margin-right: 5px !important;
    vertical-align: middle !important;
}

/* Select2 Placeholder styling */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d !important;
}

/* Select2 Focus State - Match form control focus */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    outline: none !important;
    border-color: #007bff !important;
    background: #fff !important;
}

/* Select2 Dropdown styling */
.select2-dropdown {
    border: 2px solid #007bff !important;
    border-radius: 12px !important;
    background: #fff !important;
    margin-top: 4px !important;
}

/* Select2 Search Input inside dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
    font-size: 0.95rem !important;
    margin: 8px !important;
}

/* Select2 Results/Options */
.select2-container--default .select2-results__option {
    padding: 8px 13px !important;
    font-size: 1rem !important;
}

/* Highlighted option (hover) */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #007bff !important;
    color: white !important;
}

/* Selected option */
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e9ecef !important;
    color: #212529 !important;
}

/* Remove default Select2 background on selected */
.select2-container--default .select2-results__option--selected {
    background-color: #e9ecef !important;
}

.d-flex {
    display: flex !important;
    align-items: stretch !important;
}

.d-flex .form-control {
    flex: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-group.row {
        flex-direction: column !important;
    }
    
    .form-group.row .col {
        margin-right: 0 !important;
        margin-bottom: 15px !important;
        width: 100% !important;
    }
    
    .form-group.row .col:last-child {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .form-control,
    .leadform-field-select {
        font-size: 0.9rem !important;
        padding: 6px 10px !important;
        height: 42px !important;
    }
    
    .leadform-field-select,
    .select2-container {
        width: 60px !important;
        min-width: 65px !important;
        margin-right: 8px !important;
    }
    
    .select2-container--default .select2-selection--single {
        font-size: 0.85rem !important;
        padding: 6px 10px !important;
        height: 42px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 40px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 24px !important;
    }
    
    textarea.form-control {
        height: 100px !important;
    }
}


     .phone-input-wrapper {
            display: flex;
            align-items: stretch;
            gap: 10px;
        }

        .form-control {
            width: 100%;
            padding: 8px 13px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            color: #212529;
            transition: all 0.3s ease;
            background: #f8f9fa;
            font-family: inherit;
            height: 45px;
            box-sizing: border-box;
        }

        .form-control:focus {
            outline: none;
            border-color: #007bff;
            background: #fff;
        }

        textarea.form-control {
            height: 120px;
            resize: vertical;
        }

        /* ========== SELECT2 CONTAINER ========== */
        .select2-container {
            margin-right: 5px !important;
            width: 60px !important;
            min-width: 65px !important;
            flex-shrink: 0;
        }

        /* ========== SELECT2 SELECTION BOX (CLOSED STATE) ========== */
        .select2-container--default .select2-selection--single {
            padding: 8px 10px !important;
            border: 2px solid #e9ecef !important;
            border-radius: 12px !important;
            font-size: 1rem !important;
            color: #212529 !important;
            transition: all 0.3s ease !important;
            background: #f8f9fa !important;
            height: 45px !important;
            box-sizing: border-box !important;
            display: flex !important;
            align-items: center !important;
        }

        .select2-container--default .select2-selection--single .select2-selection__rendered {
            color: #212529 !important;
            line-height: 27px !important;
            padding-left: 0 !important;
            padding-right: 20px !important;
            display: flex !important;
            align-items: center !important;
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 43px !important;
            top: 1px !important;
            right: 5px !important;
        }

        /* Focus State */
        .select2-container--default.select2-container--focus .select2-selection--single,
        .select2-container--default.select2-container--open .select2-selection--single {
            outline: none !important;
            border-color: #007bff !important;
            background: #fff !important;
        }

        /* ========== SELECT2 DROPDOWN (OPENED STATE) - 200PX WIDTH ========== */
        .select2-dropdown {
            border: 2px solid #007bff !important;
            border-radius: 12px !important;
            background: #fff !important;
            margin-top: 4px !important;
            width: 200px !important;
            min-width: 200px !important;
        }

        /* Custom class to force 200px width */
        .country-dropdown-wide {
            width: 200px !important;
            min-width: 200px !important;
        }

        /* Search Input inside dropdown */
        .select2-container--default .select2-search--dropdown .select2-search__field {
            border: 2px solid #e9ecef !important;
            border-radius: 8px !important;
            padding: 6px 10px !important;
            font-size: 0.95rem !important;
            margin: 8px !important;
            width: calc(100% - 16px) !important;
        }

        /* Results/Options */
        .select2-container--default .select2-results__option {
            padding: 8px 13px !important;
            font-size: 0.95rem !important;
        }

        /* Highlighted option (hover) */
        .select2-container--default .select2-results__option--highlighted[aria-selected] {
            background-color: #007bff !important;
            color: white !important;
        }

        /* Selected option */
        .select2-container--default .select2-results__option[aria-selected=true] {
            background-color: #e9ecef !important;
            color: #212529 !important;
        }

        .btn-submit {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 10px;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 480px) {
            body {
                padding: 20px;
            }

            .form-container {
                padding: 20px;
            }

            .form-control,
            .select2-container--default .select2-selection--single {
                font-size: 0.9rem;
                padding: 6px 10px;
                height: 42px;
            }

            .select2-container {
                width: 75px !important;
                min-width: 75px !important;
            }

            /* Dropdown stays 200px even on mobile */
            .select2-dropdown,
            .country-dropdown-wide {
                width: 200px !important;
                min-width: 200px !important;
            }
        }








audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle;
}

img {
    display: inline-block !important;
}














