/* FLOATING CONTACT BUTTONS */
.floating-btns {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10000;
  animation: slideInRight 0.6s ease-out;
}

.f-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.f-btn:nth-child(2) {
  animation-delay: 0.5s;
}

.f-btn:hover {
  transform: translateY(-4px) scale(1.08) rotate(5deg);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.whatsapp {
  background: #7cbb00;
}

.linkedin {
  background: #2166ac;
}
  :root {
    --deep: #ffffff;
    --navy: #f8f9fb;
    --accent: #2166ac;
    --sky: #2166ac;
    --purple: #2166ac;
    --green: #7cbb00;
    --paper: #1a1a24;
    --muted: #808080;
    --border: rgba(0,0,0,0.08);
  }

  *, *::before, *::after { 
    box-sizing: border-box;
     margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Sora', sans-serif;
    background: var(--deep);
    color: var(--paper);
    overflow-x: hidden;
    font-weight: 300;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }

  .learning_dev_icons{
    max-width: 40%;
  }
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.005'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 64px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    animation: slideDown 0.5s ease-out;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .logo img {
    object-fit: contain;
  }

  .logo-mark {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--purple), var(--accent));
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; font-weight: 700; font-size: 15px; color: white;
  }

  .logo-text { display: none; }
  


  .nav-links { 
    display: flex; 
    align-items: center;    
    gap: 4px; 
    list-style: none; 
    margin: 0; 
    padding: 0;
  }

  .nav-links li {
    animation: fadeInDown 0.5s ease-out backwards;
    display: flex;          
    align-items: center;
  }

  .nav-links li:nth-child(1) { animation-delay: 0.1s; }
  .nav-links li:nth-child(2) { animation-delay: 0.2s; }
  .nav-links li:nth-child(3) { animation-delay: 0.3s; }
  .nav-links li:nth-child(4) { animation-delay: 0.4s; }
  .nav-links li:nth-child(5) { animation-delay: 0.5s; }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13.5px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
    display: inline-block;
    text-align: center;     
    line-height: 1.35;      
    vertical-align: middle;
  }

  
  .nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  .nav-links a:hover::before,
  .nav-links a.active::before {
    width: 80%;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--paper);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
  }
  .nav-cta {
    background: var(--accent) !important;
    color: white !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 12px rgba(21,101,192,0.2);
  }
  .nav-cta:hover {
    background: #1d4fd8 !important;
    box-shadow: 0 6px 20px rgba(21,101,192,0.35);
    transform: translateY(-3px) !important;
  }

  /* HERO CAROUSEL */
  .hero-carousel {
    position: relative;
    width: 100%;
    height: 80vh; /* 80 percent of the total screen height */
    overflow: hidden;
    background-color: #0b0f19; /* dark premium background for transitions */
    margin-top: 80px; /* Push carousel down to start after fixed navbar */
  }

  .carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    /* overflow-x: auto; */
    overflow: hidden; /* Hide overflow to prevent scrollbars */
    scroll-snap-type: none; /* Enables horizontal snapping */
    scroll-behavior: smooth;     /* Ensures smooth scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth momentum scrolling for iOS */
    touch-action: auto;
    cursor: grab;
    user-select: none;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: none;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    will-change: transform;
  }

  .carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  /* Anchor slide background alignment to prevent text clipping */
  .carousel-slide:nth-child(1) {
    background-position: left center;
  }
  .carousel-slide:nth-child(2) {
    background-position: left center;
  }
  .carousel-slide:nth-child(3) {
    background-position: left center;
  }
  .carousel-slide:nth-child(4) {
    background-position: left center;
  }

  .slide-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    cursor: pointer;
  }

  /* Carousel Text Overlay */
  .carousel-text-overlay {
    position: absolute;
    top: 50%;
    /* left: 6%; */
    transform: translateY(-50%);

    width: 48%;
    max-width: 650px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 20px;
    z-index: 5;

    /* Creates a subtle glow behind the text */
    border-radius: 12px;
    background: radial-gradient(
        ellipse at center,
        rgba(255,255,255,0.75) 0%,
        rgba(255,255,255,0.55) 25%,
        rgba(255,255,255,0.30) 55%,
        rgba(255,255,255,0.10) 80%,
        rgba(255,255,255,0.00) 100%
    );
  }

  /* Ensure headings and subtext wrap to the left side of the image */
  .carousel-slide{
    background-position: left center !important;
  }

  .carousel-heading,
  .carousel-subtext {
    text-align: left;
    word-wrap: break-word;
  }

  .carousel-heading {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #1a1a24;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform, filter;
  }

  .carousel-heading .text-accent-green {
    color: #7BBA06;
  }

  /* Targeted blue emphasis inside carousel headings */
  .carousel-heading .text-accent-blue {
    color: #0251A1;
  }

  .carousel-subtext {
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.6;
    color: #1a1a24;
    font-weight: 300;
    opacity: 0;
    /* transform: translateY(30px); */
    filter: blur(10px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, filter 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
    will-change: opacity, transform, filter;
  }

  .carousel-slide.active .carousel-heading,
  .carousel-slide.active .carousel-subtext {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  .carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
  }

  .carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .carousel-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.85);
    transform: scale(1.2);
  }

  .carousel-dots .dot.active {
    background-color: #FFFFFF; /* Intellismith premium blue brand accent */
    width: 32px;
    border-radius: 6px;
    border-color: rgba(21, 101, 192, 0.2);
    box-shadow: 0 0 10px rgba(21, 101, 192, 0.5);
  }


  .ld-center-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: clamp(14px, 3vw, 24px);
  }

  .ld-logo {
    width: clamp(80px, 15vw, 120px); 
    height: auto;
    margin-bottom: clamp(10px, 2vw, 16px);
    display: block;
    object-fit: contain;
  }

  .ld-tag { 
    font-size: clamp(10px, 1.2vw, 12px); 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    margin-bottom: 8px;
    font-weight: 600;
  }

  .ld-title { 
    font-size: clamp(18px, 2.5vw, 24px); 
    font-weight: 700; 
    letter-spacing: -0.4px; 
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .ld-subtitle {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 600;
    color: #984ea3;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
    line-height: 1.3;
  }

  @media (min-width: 769px) {
    .ld-features {
      overflow: visible !important;
    }

    .ld-feat.accordion-feat {
      position: relative !important;
      overflow: visible !important;
      height: fit-content !important;
    }

    .ld-feat.accordion-feat[open] {
      z-index: 9999 !important; 
    }

    .ld-feat[open] .ld-feat-content {
      position: absolute !important;
      top: 100% !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      z-index: 10000 !important; 
      
      background: #ffffff !important; 
      background-color: #ffffff !important;
      opacity: 1 !important; 
      
      border: 1px solid #e2e8f0 !important;
      border-top: none !important;
      border-radius: 0 0 8px 8px !important;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
      padding: 15px !important;
    }

    .ld-feat[open]:hover .ld-feat-content,
    .ld-feat[open]:focus .ld-feat-content,
    .ld-feat[open]:focus-within .ld-feat-content {
      background: #ffffff !important;
      background-color: #ffffff !important;
      opacity: 1 !important;
    }
  }
  /* Responsive styling for tablet and mobile screens */
  @media (max-width: 992px) {
    .hero-carousel {
      height: 80vh; /* 80 percent of the total screen height */
    }
    
    /* Tablet: Adjust text overlay positioning and sizing */
    .carousel-text-overlay {
      left: 10px;
      right: auto;
      max-width: 50%;
    }
    
    .carousel-heading {
      font-size: clamp(24px, 3.8vw, 36px);
      margin-bottom: 15px;
    }
    
    .carousel-subtext {
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: 700;
    }
  }

  @media (max-width: 768px) {
    .hero-carousel {
      height: auto;
      aspect-ratio: 1024/571; /* Match the exact aspect ratio of the images */
      min-height: 360px; /* Ensure a minimum height for smaller screens */
      margin-top: 70px; /* Offset for fixed header */
      background-color: transparent; /* Remove dark background for mobile */
      /* Prevent any overflow issues */
    }
    
    /* Mobile: Further adjust text overlay for smaller screens */
    .carousel-text-overlay{
        position:absolute;
        left:10px;
        right:20px;
        top:50%;
        transform:translateY(-50%);
        max-width:58%;
        z-index:5;
        padding:20px;

        background:linear-gradient(
            90deg,
            rgba(255,255,255,.95) 0%,
            rgba(255,255,255,.82) 35%,
            rgba(255,255,255,.45) 65%,
            rgba(255,255,255,0) 100%
        );

        backdrop-filter:blur(5px);
        border-radius:18px;
    }

    .carousel-heading{
        font-size:2rem;
        line-height:1.12;
        font-weight:700;
        color:#111;

        text-shadow:
            0 0 8px rgba(255,255,255,.95),
            0 0 18px rgba(255,255,255,.85),
            0 0 30px rgba(255,255,255,.75);
    }

    .carousel-subtext{
        margin-top:16px;
        font-size:1rem;
        line-height:1.7;
        color:#222;

        text-shadow:
            0 0 6px rgba(255,255,255,.95),
            0 0 14px rgba(255,255,255,.8);

        font-weight: 700;

    }
    
    .carousel-dots {
      bottom: 20px;
      gap: 8px;
    }
    .carousel-dots .dot {
      width: 8px;
      height: 8px;
    }
    .carousel-dots .dot.active {
      width: 20px;
    }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 16px;
      font-size: 30px; letter-spacing: 2px; text-transform: uppercase;
      color: black; margin-bottom: 16px; font-weight: 700;
    }
    .eyebrow::before, .eyebrow::after { content: ''; width: 50px; height: 2px; background: black; opacity: 0.5; }
   

    #talent{

        padding:60px 20px;

    }

    #talent .section-title{

        font-size:1.5rem !important;
        text-align:center;

    }

    #talent .section-sub{

        font-size:1rem;
        line-height:1.8;
        text-align:center;

        max-width:100%;

    }

    .talent-card-wrap{

        width:100%;
        margin-top:40px;

    }

    .talent-flip-card{

        width:100%;
        min-height:980px;

    }

    .talent-card-face{

        padding:30px 22px;

    }

    .talent-img-wrap{

        display:flex;
        justify-content:center;

    }

    .talent-img-wrap img{

        width:100%;
        max-width:260px;
        height:auto;

    }

    .talent-card-heading{

        font-size:1.8rem;
        text-align:center;

    }

    .talent-card-text{

        font-size:15px;
        line-height:1.8;
        text-align:center;

    }

    .highlight-box{

        padding:18px;

    }

    .highlight-box p{

        font-size:15px;

    }

    .process-steps{

        gap:18px;

    }

    .proc-step{

        align-items:flex-start;

    }

    .proc-num{

        width:42px;
        height:42px;
        min-width:42px;

        font-size:18px;

    }

    .proc-content h4{

        font-size:16px;

    }

    .proc-content p{

        font-size:14px;
        line-height:1.6;

    }

    .talent-flip-btn{

        width:100%;
        max-width:260px;

    }
  }
  
  /* Small Mobile: Extra adjustments for very small screens */
  @media (max-width: 480px) {
    .hero-carousel {
      min-height: 320px; /* Ensure a minimum height for smaller screens */
    }
    .carousel-text-overlay {
      left: 10px;
      max-width: 58%;
    }
    
    .carousel-heading {
      font-size: 18px; /* 70% of 18px */
      margin-bottom: 8px;
      letter-spacing: -0.3px;
    }
    
    .carousel-subtext {
      font-size: 12px; /* 70% of 11px */
      line-height: 1.4;
      font-weight: 700;
    }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 16px;
      font-size: 30px; letter-spacing: 2px; text-transform: uppercase;
      color: black; margin-bottom: 16px; font-weight: 700;
    }
    .eyebrow::before, .eyebrow::after { content: ''; width: 50px; height: 2px; background: black; opacity: 0.5; }
  }

  .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    box-shadow: 0 4px 16px rgba(21,101,192,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }
  .btn-primary:hover::before {
    width: 300px;
    height: 300px;
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #06b6d4 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(21,101,192,0.35);
  }

  .btn-outline {
    background: transparent;
    color: var(--paper);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-outline::after {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .btn-outline:hover::after {
    opacity: 1;
    right: 15px;
  }
  .btn-outline:hover {
    border-color: rgba(21,101,192,0.4);
    background: rgba(21,101,192,0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21,101,192,0.15);
  }

  /* SECTIONS */
  .section { padding: 100px 64px; }
  .section-center { text-align: center; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 16px;
    font-size: 30px; letter-spacing: 2px; text-transform: uppercase;
    color: black; margin-bottom: 16px; font-weight: 700;
  }
  .eyebrow::before, .eyebrow::after { content: ''; width: 50px; height: 2px; background: black; opacity: 0.5; }

  .eyebrow-dash {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14.5px; letter-spacing: 2px; text-transform: uppercase;
    color: #984ea3; margin-bottom: 16px; font-weight: 500;
  }
  .eyebrow-dash::before, .eyebrow-dash::after { content: ''; width: 24px; height: 2px; background: #984ea3; opacity: 0.5; }
  .section-title { font-size: clamp(34px, 3.5vw, 52px); font-weight: 700; letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px; }
  .section-title em { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; color: black; }
  .section-sub { font-size: 15.5px; color: var(--muted); line-height: 1.75; max-width: 560px; margin: 0 auto; }

  /* PILLARS */
  /* .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; } */

  .pillars { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 24px; 
    margin-top: 64px; 
  }


  .pillar {
    background: transparent; 
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    align-items: center;      
    text-align: center;       
    
    transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  
  .pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(21,101,192,0.05), transparent);
    transition: left 0.6s ease;
  }

  .pillar:hover::before {
    left: 100%;
  }

  .pillar:hover {
    border-color: var(--border) !important; 
  
    transform: none !important;     
    box-shadow: none !important;
  }

  

  .pillar-icon {
  width: 48px;              
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.4s ease;
  flex-shrink: 0;
  
  margin-right: 0px;        
  margin-bottom: 18px;      
  vertical-align: unset;
  margin-top: 0px;
}

.pillar-icon img {
  width: 35px;
  height: 35px;
}
  .pillar:hover .pillar-icon {
    transform: scale(1.1);
  }
  .icon-blue { background: #FFFFFF; }
  .icon-sky { background: #FFFFFF;}
  .icon-gold { background: #FFFFFF; }

  .pillar-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    display: block;
    max-width: 100%;          
    width: 100%;
  }
  .pillar-desc { font-size: 14px; line-height: 1.75; color: var(--muted); margin-bottom: 0px; text-align: center; width:100%;}
  .pillar-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;}
  .ptag { font-size: 11px; padding: 4px 10px; border: 1px solid var(--border); border-radius: 100px; color: var(--muted); }

  /* TECH GRID */
  .bg-alt { background: #f8f9fb; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

  .tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }

  /* Card Flip Container */
  .tech-card-flip {
    perspective: 1000px;
    height: 400px;
  }

  .tech-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }

  .tech-card-flip.flipped .tech-card-inner {
    transform: rotateY(180deg);
  }

  .tech-card-front,
  .tech-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .tech-card-front {
    justify-content: space-between;
  }

  .tech-card-back {
    transform: rotateY(180deg);
  }

  /* Know More Button */
  .know-more-btn {
    align-self: flex-end;
    margin-top: auto;
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(21,101,192,0.15);
  }

  .know-more-btn:hover {
    background: #2166ac;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21,101,192,0.25);
  }

  .know-more-btn.back-btn {
    background: #5a6b7d;
  }

  .know-more-btn.back-btn:hover {
    background: #4a5b6d;
  }

  /* Legacy tech-card for other pages */
  .tech-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  .tech-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(21,101,192,0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .tech-card:hover::after {
    opacity: 1;
  }
  .tech-card:hover {
    border-color: rgba(21,101,192,0.3);
    box-shadow: 0 12px 32px rgba(21,101,192,0.12);
    transform: translateY(-4px);
  }

  .tech-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }
  .tech-icon {
    font-size: 26px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(21,101,192,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
  }
  .tech-card:hover .tech-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(21,101,192,0.15);
  }
  .tech-card-title { font-size: 15.5px; font-weight: 600; letter-spacing: -0.2px; }
  .tech-card-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

  .bullet-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
  .bullet-list li { font-size: 12.5px; color: var(--muted); padding-left: 16px; position: relative; }
  .bullet-list li::marker { content: ""; }
  .bullet-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 11px; }

  /* TALENT */
  .talent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }

  .process-steps { display: flex; flex-direction: column; gap: 16px; }
  .proc-step {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #f8f9fb;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  /* .proc-step:hover {
    border-color: rgba(21,101,192,0.35);
    background: rgba(21,101,192,0.06);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(21,101,192,0.1);
  } */
  .proc-num {
    min-width: 30px;
    height: 30px;
    background: rgba(21,101,192,0.12);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
  }
  /* .proc-step:hover .proc-num {
    transform: scale(1.15) rotate(5deg);
    background: rgba(21,101,192,0.2);
  } */
  .proc-content h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
  .proc-content p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

  .talent-right { text-align: center; }
  .talent-right h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 20px; line-height: 1.25; }
  .talent-right p { font-size: 14.5px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

  .highlight-box { background: #ffffff; border: 1px solid rgba(21, 101, 192, 0.08); border-radius: 16px; padding: 24px 28px; margin-top: 24px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); }
  .highlight-box p { font-size: 14.5px; font-style: italic; color: #1565c0; margin: 0; line-height: 1.7; text-align: center; }

  .chip-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
  .chip { font-size: 12px; padding: 6px 14px; border: 1px solid var(--border); border-radius: 100px; color: var(--muted); }
  .chip.a { border-color: rgba(21,101,192,0.25); color: var(--accent); background: rgba(21,101,192,0.06); }

  /* L&D */
  .ld-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; width: 100%;}

  .ld-card { border-radius: 14px; padding: 36px; }
  .ld-main { background: linear-gradient(135deg, rgba(21,101,192,0.08), rgba(21,101,192,0.03)); border: 1px solid rgba(21,101,192,0.2); grid-column: 1 / -1; }
  .ld-sm { background: #ffffff; border: 1px solid var(--border); transition: border-color 0.25s; }
  .ld-sm:hover { border-color: rgba(142,36,170,0.2); }
  .ld-tag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
  .ld-title { font-size: 21px; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 14px; }
  .ld-sm .ld-title { font-size: 17px; }
  .ld-desc { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 22px;  }

  .ld-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 16px; margin-bottom: 28px; align-items: start; }
  .ld-feat { display: flex; flex-direction: column; gap: 6px; padding: 14px 16px; background: rgba(255,255,255,0.6); border: 1px solid rgba(21,101,192,0.1); border-radius: 10px; transition: all 0.25s ease; }
  .ld-feat:hover { background: rgba(255,255,255,0.9); border-color: rgba(21,101,192,0.2); transform: translateX(4px); }
  .ld-feat-header { display: flex; gap: 10px; align-items: center; }
  .ld-feat-icon { font-size: 18px; flex-shrink: 0; }
  .ld-feat-title { font-size: 13.5px; font-weight: 600; color: var(--paper); }
  .ld-feat-desc { font-size: 12.5px; color: var(--muted); line-height: 1.55; padding-left: 28px; }
  .ld-feat-bullets { display: flex; flex-direction: column; gap: 3px; padding-left: 28px; margin-top: 2px; }
  .ld-feat-bullets li { font-size: 12px; color: var(--muted); list-style: none; padding-left: 12px; position: relative; line-height: 1.5; }
  .ld-feat-bullets li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

  .ld-enroll { margin-top: 20px; margin-bottom: 24px; background: rgba(21,101,192,0.06); border: 1px solid rgba(21,101,192,0.15); border-radius: 10px; padding: 14px 16px; }
  .ld-enroll-title { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #960CBB; margin-bottom: 8px; }
  .ld-enroll-list { display: flex; flex-wrap: wrap; gap: 6px; }
  .ld-enroll-chip { font-size: 11.5px; padding: 4px 12px; background: rgba(21,101,192,0.08); border: 1px solid rgba(21,101,192,0.2); border-radius: 100px; color: var(--accent); font-weight: 500; }

  /* STORY */
  .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .story-left h2 { font-size: clamp(30px, 3vw, 46px); font-weight: 700; letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; }
  .story-left p { font-size: 14.5px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
  /* About Section Toggle */
  .about-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
  }

  .about-expandable.expanded {
    max-height: 2000px;
    opacity: 1;
    margin-top: 16px;
  }

  .about-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 8px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .about-toggle-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
  }

  .about-toggle-btn .toggle-icon {
    transition: transform 0.3s ease;
    font-size: 12px;
  }

  .about-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
  }

  .about-toggle-btn.active .toggle-text::after {
    content: ' Less';
  }

  .about-toggle-btn:not(.active) .toggle-text::after {
    content: '';
  }


  .metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .metric-box { background: #ffffff; border: 1px solid var(--border); border-radius: 12px; padding: 28px 22px; text-align: center; }
  .metric-box.accent { background: linear-gradient(135deg, rgba(21,101,192,0.08), rgba(21,101,192,0.03)); border-color: rgba(21,101,192,0.2); }
  .metric-box.span2 { grid-column: 1/3; }
  .metric-val { font-size: 34px; font-weight: 700; letter-spacing: -1px; background: linear-gradient(90deg, var(--accent), #1d4fd8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
  .metric-label { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.4; }

  /* JOURNEY TIMELINE */
  .timeline-container {
    position: relative;
    padding-left: 54px;
    margin-top: 10px;
  }

  .timeline-line {
    position: absolute;
    left: 26px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(21, 101, 192, 0.1) 0%, var(--accent) 30%, var(--accent) 70%, rgba(21, 101, 192, 0.1) 100%);
    opacity: 0.8;
  }

  .timeline-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
  }

  .timeline-badge {
    position: absolute;
    left: -54px;
    top: 4px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(21, 101, 192, 0.08);
    border: 1.5px solid rgba(21, 101, 192, 0.2);
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .timeline-item:hover .timeline-badge {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 14px rgba(21, 101, 192, 0.45);
  }

  .timeline-content {
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  }

  .timeline-item:hover .timeline-content {
    border-color: rgba(21, 101, 192, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 101, 192, 0.08);
  }

  .timeline-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--paper);
  }

  .timeline-year {
    color: var(--accent);
    font-weight: 700;
  }

  .timeline-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
  }

  /* LEADERS */
  .leaders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
  .leader-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }
  .leader-card:hover {
    border-color: rgba(21,101,192,0.3);
    box-shadow: 0 12px 32px rgba(21,101,192,0.15);
  }
  .leader-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 auto 18px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Individual avatar adjustments for different image padding */
  .leader-avatar-arvind {
    padding: 0px;
    border-radius: 50%;
  }
  
  .leader-avatar-ajay {
    padding: 0px;
  }
  
  .leader-avatar-anushka {
    padding: 0px;
  }
  
  .leader-avatar-arvind img,
  .leader-avatar-anushka img {
    object-fit: cover;
  }
  
  .leader-avatar-ajay img {
    object-fit: cover;
    width: 90%;
    height: 100%;
  }
  .leader-name { font-size: 15.5px; font-weight: 600; margin-bottom: 5px; }
  .leader-role { font-size: 11.5px; color: var(--accent); letter-spacing: 0.5px; margin-bottom: 14px; text-transform: uppercase; }
  .leader-bio { font-size: 13px; color: var(--muted); line-height: 1.7; }

  /* ===== Enhanced CTA Card ===== */

.cta-wrap {
  display: flex;
  justify-content: center;
  padding: 100px 20px;
}

.cta-box {
  max-width: 1100px;
  width: 100%;
  background: linear-gradient(145deg, #f4f7fb, #e9eff6);
  padding: 70px 60px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.cta-header {
  text-align: center;
  margin-bottom: 60px;
}

.cta-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-header em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.cta-header p {
  color: #6c7a89;
  font-size: 17px;
}

/* Layout */
.cta-content {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.cta-left,
.cta-right {
  flex: 1;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

/* Address */
.addr-item {
  margin-bottom: 30px;
}

.addr-item h4 {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #222;
}

.addr-item p {
  color: #5e6b78;
  line-height: 1.6;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #dcdfe5;
  font-size: 15px;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2166ac;
  box-shadow: 0 0 0 3px rgba(33, 102, 172, 0.1);
  outline: none;
}

.contact-form button {
  padding: 16px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(90deg,#2166ac,#06b6d4);
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .cta-box {
    padding: 50px 30px;
  }

  .cta-content {
    flex-direction: column;
    gap: 50px;
  }
}
  /* FOOTER */
  footer { border-top: 1px solid var(--border); padding: 60px 64px 36px; background: #f8f9fb; }
  .footer-top { display: grid; grid-template-columns: 200px 1fr auto; gap: 72px; margin-bottom: 48px; align-items: end; }
  .footer-brand { display: flex; flex-direction: column; }
  .footer-brand p { font-size: 12.5px; color: var(--muted); line-height: 1.7; margin-top: 12px; }
  .partner-badges { display: flex; gap: 10px; margin-top: auto; }
  .badge-partner { font-size: 10.5px; letter-spacing: 1px; padding: 4px 11px; border: 1px solid var(--border); border-radius: 100px; color: var(--muted); }
  .ibm-partner-logo { height: 170px; width: 180px; display: block; }
  .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .footer-col h4 { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--paper); margin-bottom: 16px; font-weight: 500; }
  .footer-col a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 9px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--paper); }
  .footer-contact p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 7px; }
  .footer-contact a { color: var(--accent); text-decoration: none; }
  /* Footer Social Icons Section - Above the line */
  .footer-social-top {
    display: flex;
    justify-content: flex-end;
    padding: 24px 0;   
  }
  
  .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: black;
  }
  
  /* Footer Social Icons */
  .footer-social { display: flex; gap: 12px; align-items: center; }
  .social-icon { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
  .social-icon:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
  .linkedin-icon { background: #0077B5; }
  .linkedin-icon:hover { background: #005885; }
  .facebook-icon { background: #1877F2; }
  .facebook-icon:hover { background: #0d5dbf; }
  .instagram-icon { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
  .instagram-icon:hover { opacity: 0.9; }
  .whatsapp-icon { background: #25D366; }
  .whatsapp-icon:hover { background: #1da851; }
  .youtube-icon { background: #FF0000; }
  .youtube-icon:hover { background: #cc0000; }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes pdot { 0%,100% { opacity:1; } 50% { opacity:0.35; } }

  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .d1 { transition-delay: 0.1s; }
  .d2 { transition-delay: 0.2s; }
  .d3 { transition-delay: 0.3s; }
  .d4 { transition-delay: 0.4s; }
  .d5 { transition-delay: 0.5s; }
  .d6 { transition-delay: 0.6s; }
  .d7 { transition-delay: 0.7s; }
  /* ===== CTA TWO COLUMN LAYOUT ===== */

.cta-header {
  text-align: center;
  margin-bottom: 50px;
}

.cta-content {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
}

.cta-left {
  flex: 1;
}

.cta-right {
  flex: 1;
}

/* Contact Form Styling */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 12px;
  border: 1.5px solid #e0e7ff;
  font-size: 15px;
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fafbff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a0aec0;
  font-weight: 300;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #c7d2fe;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6366f1;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 4px 16px rgba(99, 102, 241, 0.15);
}

.contact-form button {
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #06b6d4 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.contact-form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.contact-form button:hover::before {
  left: 100%;
}

.contact-form button:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
}

.contact-form button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2), 0 12px 32px rgba(99, 102, 241, 0.4);

/* Form Message Styles */
.contact-form .form-message {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 500;
  animation: slideDown 0.3s ease-out;
  text-align: center;
}

.contact-form .form-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.contact-form .form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
}

/* Address Styling */

.address-item {
  margin-top: 25px;
}

.address-item h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Responsive */

@media (max-width: 992px) {
  .cta-content {
    flex-direction: column;
  }
}

/* Made with Bob */

  /* Additional Keyframe Animations */
  @keyframes slideDown {
    from { 
      opacity: 0; 
      transform: translateY(-100%); 
    }
    to { 
      opacity: 1; 
      transform: translateY(0); 
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }

  @keyframes shimmer {
    0% {
      background-position: -1000px 0;
    }
    100% {
      background-position: 1000px 0;
    }
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }

  @keyframes glow {
    0%, 100% {
      box-shadow: 0 0 5px rgba(21,101,192,0.2);
    }
    50% {
      box-shadow: 0 0 20px rgba(21,101,192,0.4);
    }
  }

/* ===== RESPONSIVE DESIGN ===== */

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--paper);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
  /* Navigation */
  nav {
    padding: 16px 32px;
  }

  /* Sections */
  .section {
    padding: 80px 32px;
  }

  .hero {
    padding: 100px 32px 60px;
  }

  /* Grids */
  .pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .talent-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ld-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .metrics-grid {
    gap: 12px;
  }

  /* Footer */
  footer {
    padding: 50px 32px 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Mobile Styles (< 768px) */
@media (max-width: 768px) {
  /* Navigation */

  nav {
    padding: 14px 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 100;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    margin: 0;
    animation: none;
  }

  .nav-links a {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 8px;
    margin-bottom: 4px;
  }

  .nav-cta {
    margin-top: 10px;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 100px 20px 50px;
  }

  .hero-h1 {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 32px;
    margin-top: 50px;
    padding-top: 40px;
  }

  .stat-val {
    font-size: 32px;
  }

  /* Sections */
  .section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-sub {
    font-size: 14px;
  }

  /* Pillars */
  .pillars {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .pillar {
    padding: 32px 28px;
  }

  /* Tech Grid */
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .tech-card {
    padding: 28px 24px;
  }

  /* Talent Section */
  /* .talent-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .proc-step {
    padding: 16px 18px;
  }

  .proc-num {
    min-width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .proc-content h4 {
    font-size: 13px;
  }

  .proc-content p {
    font-size: 12px;
  }

  .talent-right h3 {
    font-size: 22px;
    margin-bottom: 16px;
    text-align: center;
  }

  .talent-right p {
    font-size: 14px;
  } */


    #talent{

        padding:60px 20px;

    }

    #talent .section-title{

        font-size:1.5rem !important;
        text-align:center;

    }

    #talent .section-sub{

        font-size:1rem;
        line-height:1.8;
        text-align:center;

        max-width:100%;

    }

    .talent-card-wrap{

        width:100%;
        margin-top:40px;

    }

    .talent-flip-card{

        width:100%;
        min-height:980px;

    }

    .talent-card-face{

        padding:30px 22px;

    }

    .talent-img-wrap{

        display:flex;
        justify-content:center;

    }

    .talent-img-wrap img{

        width:100%;
        max-width:260px;
        height:auto;

    }

    .talent-card-heading{

        font-size:1.8rem;
        text-align:center;

    }

    .talent-card-text{

        font-size:15px;
        line-height:1.8;
        text-align:center;

    }

    .highlight-box{

        padding:18px;

    }

    .highlight-box p{

        font-size:15px;

    }

    .process-steps{

        gap:18px;

    }

    .proc-step{

        align-items:flex-start;

    }

    .proc-num{

        width:42px;
        height:42px;
        min-width:42px;

        font-size:18px;

    }

    .proc-content h4{

        font-size:16px;

    }

    .proc-content p{

        font-size:14px;
        line-height:1.6;

    }

    .talent-flip-btn{

        width:100%;
        max-width:260px;

    }

  .chip-group {
    gap: 8px;
  }

  .chip {
    font-size: 11px;
    padding: 5px 12px;
  }

  /* Learning & Development */
  .ld-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  
  .ld-features { 
     display: grid; 
     gap: 16px; 
     margin-bottom: 28px; 
     align-items: start; }

  .ld-card {
    padding: 28px;
  }

  .ld-main {
    grid-row: auto;
  }

  .ld-title {
    font-size: 18px;
  }

  .ld-sm .ld-title {
    font-size: 16px;
  }

  /* Story/About Section */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-left h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .story-left p {
    font-size: 14px;

  .about-toggle-btn {
    font-size: 13px;
    padding: 8px 20px;
  }
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Responsive Timeline */
  .timeline-container {
    padding-left: 40px;
  }

  .timeline-line {
    left: 17px;
  }

  .timeline-badge {
    left: -40px;
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .timeline-content {
    padding: 14px 18px;
  }

  .timeline-title {
    font-size: 14px;
  }

  .timeline-text {
    font-size: 12.5px;
  }

  .metric-box.span2 {
    grid-column: 1;
  }

  .metric-val {
    font-size: 28px;
  }

  /* Leaders */
  .leaders-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .leader-card {
    padding: 32px 24px;
  }

  .leader-avatar {
    width: 100px;
    height: 100px;
  }

  .leader-name {
    font-size: 15px;
  }

  .leader-bio {
    font-size: 12.5px;
  }

  /* CTA/Contact Section */
  .cta-wrap {
    padding: 60px 20px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-header h2 {
    font-size: 28px;
  }

  .cta-header p {
    font-size: 15px;
  }

  .cta-content {
    flex-direction: column;
    gap: 40px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 14px 16px;
  }

  .contact-form button {
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Footer */
  footer {
    padding: 40px 20px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-social {
    order: -1;
    gap: 12px;
    text-align: center;
  }

  /* Floating Buttons */
  .floating-btns {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .f-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 16px;
    font-size: 30px; letter-spacing: 2px; text-transform: uppercase;
    color: black; margin-bottom: 16px; font-weight: 700;
  }
  .eyebrow::before, .eyebrow::after { content: ''; width: 50px; height: 2px; background: black; opacity: 0.5; }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
  .hero-h1 {
    font-size: 30px;
  }

  .section-title {
    font-size: 23px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 16px;
    font-size: 23px; letter-spacing: 1px; text-transform: uppercase;
    color: black; margin-bottom: 16px; font-weight: 700;
  }
  .eyebrow::before, .eyebrow::after { content: ''; width: 50px; height: 2px; background: black; opacity: 0.5; }

  .pillar-icon {
    display: inline-flex;
    margin-right: 12px;
    margin-top: 0;
    vertical-align: middle;
  }

  .pillar-title {
    font-size: 17px;
    display: inline;
    max-width: none;
    line-height: 1.4;
    vertical-align: middle;
  }

  .pillar-desc {
    text-align: left;
  }

  .tech-card-title {
    font-size: 14px;
  }

  .bullet-list li {
    font-size: 12px;
  }

  .nav-links {
    width: 100%;
    right: -100%;
  }

  .nav-links.active {
    right: 0;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 20px 40px;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 16px;
    font-size: 30px; letter-spacing: 1px; text-transform: uppercase;
    color: black; margin-bottom: 16px; font-weight: 700;
  }
  .eyebrow::before, .eyebrow::after { content: ''; width: 50px; height: 2px; background: black; opacity: 0.5; }
}

/* Print Styles */
@media print {
  .floating-btns,
  .hamburger,
  nav {
    display: none;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* ===== PRIVACY POLICY PAGE ===== */

/* Hero */
.privacy-hero {
  margin-top: 80px;
  padding: 80px 64px 60px;
  background: linear-gradient(135deg, #f0f4fa 0%, #e8edf5 50%, #f4f7fb 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.privacy-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(142, 36, 170, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.privacy-hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.privacy-hero .section-title {
  margin-bottom: 16px;
}

.privacy-hero .section-sub {
  margin: 0 0 16px;
  max-width: 560px;
}

.privacy-updated {
  font-size: 13px;
  /* color: var(--accent); */
  font-weight: 500;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  /* background: rgba(21, 101, 192, 0.08);
  border: 1px solid rgba(21, 101, 192, 0.15);
  border-radius: 100px; */
}

/* Content Layout */
.privacy-content {
  padding: 60px 64px 100px;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Table of Contents */
.privacy-toc {
  position: sticky;
  top: 110px;
}

.toc-card {
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}

.toc-card h3 {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
  font-weight: 600;
}

.toc-card nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-card nav a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.25s ease;
  line-height: 1.45;
}

.toc-card nav a:hover {
  color: var(--accent);
  background: rgba(21, 101, 192, 0.06);
  border-left-color: var(--accent);
  /* transform: translateX(4px); */
  transform: none;
}

/* Main Content */
.privacy-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Privacy Cards */
.privacy-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  transition: all 0.3s ease;
}

.privacy-card:hover {
  border-color: rgba(21, 101, 192, 0.15);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.06);
}

.privacy-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.privacy-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(21, 101, 192, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.privacy-card:hover .privacy-card-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(21, 101, 192, 0.14);
}

.privacy-card h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--paper);
}

.privacy-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--paper);
  letter-spacing: -0.2px;
}

.privacy-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--paper);
}

.privacy-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

/* Privacy Lists */
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-list li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.7;
}

.privacy-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.privacy-list.styled li {
  padding: 12px 16px 12px 22px;
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.25s ease;
}

.privacy-list.styled li:hover {
  border-color: rgba(21, 101, 192, 0.2);
  background: rgba(21, 101, 192, 0.03);
  transform: translateX(4px);
}

.privacy-list.styled li::before {
  top: 14px;
}

/* Definition Grid */
.definition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.definition-item {
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.3s ease;
}

.definition-item:hover {
  border-color: rgba(21, 101, 192, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.08);
}

.definition-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: -0.1px;
}

.definition-item span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.definition-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.definition-item a:hover {
  text-decoration: underline;
}

/* Tracking Cards */
.tracking-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.tracking-card {
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.tracking-card:hover {
  border-color: rgba(21, 101, 192, 0.2);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.08);
}

.tracking-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(21, 101, 192, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 14px;
}

.tracking-card h4 {
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--paper);
}

.tracking-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Cookie Type Cards */
.cookie-types {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.cookie-type-card {
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  transition: all 0.3s ease;
}

.cookie-type-card:hover {
  border-color: rgba(21, 101, 192, 0.2);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.06);
}

.cookie-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.cookie-badge.essential {
  background: rgba(21, 101, 192, 0.1);
  color: var(--accent);
  border: 1px solid rgba(21, 101, 192, 0.2);
}

.cookie-badge.notice {
  background: rgba(21, 101, 192, 0.08);
  color: var(--purple);
  border: 1px solid rgba(21, 101, 192, 0.2);
}

.cookie-badge.functionality {
  background: rgba(124, 179, 66, 0.1);
  color: #558b2f;
  border: 1px solid rgba(124, 179, 66, 0.25);
}

.cookie-type-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--paper);
}

.cookie-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}

.cookie-meta span {
  font-size: 12.5px;
  color: var(--muted);
}

.cookie-meta strong {
  color: var(--paper);
}

.cookie-type-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Privacy Note */
.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(21, 101, 192, 0.06);
  border: 1px solid rgba(21, 101, 192, 0.15);
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 20px;
}

.privacy-note i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.privacy-note p {
  font-size: 13.5px;
  color: var(--accent);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

/* Contact Card */
.privacy-contact-card {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.06), rgba(21, 101, 192, 0.02));
  border-color: rgba(21, 101, 192, 0.15);
}

.privacy-contact-info {
  margin-top: 16px;
}

.privacy-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.2);
}

.privacy-contact-link:hover {
  background: #1d4fd8;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.35);
}

.privacy-contact-link i {
  font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .privacy-hero {
    padding: 60px 32px 48px;
  }

  .privacy-content {
    padding: 40px 32px 80px;
  }

  .privacy-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .privacy-toc {
    position: static;
  }

  .toc-card nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .toc-card nav a {
    font-size: 12px;
    padding: 5px 10px;
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 6px;
  }

  .toc-card nav a:hover {
    transform: translateY(-2px);
    border-left: none;
    border-bottom-color: var(--accent);
  }

  .definition-grid {
    grid-template-columns: 1fr;
  }

  .tracking-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .privacy-hero {
    padding: 48px 20px 36px;
    margin-top: 70px;
  }

  .privacy-content {
    padding: 28px 20px 60px;
  }

  .privacy-card {
    padding: 24px 22px;
    border-radius: 12px;
  }

  .privacy-card h2 {
    font-size: 18px;
  }

  .privacy-card-header {
    gap: 12px;
  }

  .privacy-card-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .cookie-meta {
    flex-direction: column;
    gap: 4px;
  }

  .privacy-list.styled li {
    padding: 10px 14px 10px 20px;
  }

    #talent{

        padding:60px 20px;

    }

    #talent .section-title{

        font-size:1.5rem !important;
        text-align:center;

    }

    #talent .section-sub{

        font-size:1rem;
        line-height:1.8;
        text-align:center;

        max-width:100%;

    }

    .talent-card-wrap{

        width:100%;
        margin-top:40px;

    }

    .talent-flip-card{

        width:100%;
        min-height:980px;

    }

    .talent-card-face{

        padding:30px 22px;

    }

    .talent-img-wrap{

        display:flex;
        justify-content:center;

    }

    .talent-img-wrap img{

        width:100%;
        max-width:260px;
        height:auto;

    }

    .talent-card-heading{

        font-size:1.8rem;
        text-align:center;

    }

    .talent-card-text{

        font-size:15px;
        line-height:1.8;
        text-align:center;

    }

    .highlight-box{

        padding:18px;

    }

    .highlight-box p{

        font-size:15px;

    }

    .process-steps{

        gap:18px;

    }

    .proc-step{

        align-items:flex-start;

    }

    .proc-num{

        width:42px;
        height:42px;
        min-width:42px;

        font-size:18px;

    }

    .proc-content h4{

        font-size:16px;

    }

    .proc-content p{

        font-size:14px;
        line-height:1.6;

    }

    .talent-flip-btn{

        width:100%;
        max-width:260px;

    }

}

/* Accordion styles for learning section */
details.accordion-feat {
  display: block;
  padding: 0;
  overflow: hidden;
}
details.accordion-feat > summary.ld-feat-header {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  position: relative;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
details.accordion-feat[open] > summary.ld-feat-header {
  border-bottom-color: rgba(21,101,192,0.1);
}
details.accordion-feat > summary.ld-feat-header::-webkit-details-marker {
  display: none;
}
.accordion-chevron {
  margin-left: auto;
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}
details.accordion-feat[open] > summary.ld-feat-header .accordion-chevron {
  transform: rotate(180deg);
}
.ld-feat-content {
  padding: 6px 16px 14px;
}

/* Hover Reveal Tech Cards */
.tc-hover-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.tc-hover-card:hover {
  box-shadow: 0 16px 48px rgba(37,99,235,0.12);
  transform: translateY(-4px);
}

/* Text swap area */
.tc-text-area {
  position: relative;
  min-height: 80px;
  margin-bottom: 16px;
}
.tc-text-default,
.tc-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.tc-text-default {
  opacity: 1;
  transform: translateY(0);
}
.tc-text-hover {
  opacity: 0;
  transform: translateY(6px);
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.tc-hover-card:hover .tc-text-default {
  opacity: 0;
  transform: translateY(-6px);
}
.tc-hover-card:hover .tc-text-hover {
  opacity: 1;
  transform: translateY(0);
}
/* .tc-hover-card:hover .tc-text-default {
  opacity: 0;
  transform: translateY(-6px);
} */
/* .tc-hover-card:hover .tc-text-hover {
  opacity: 1;
  transform: translateY(0);
} */
.tc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.read-more-text {
    display: inline-block;
    margin-left: 16px;   /* Horizontal gap from paragraph text */
    color: #0A84FF;      /* Blue color */
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more-text:hover {
    color: #0066CC;
}

.tc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-icon-wrap img {
  width: 24px;
  height: 24px;
}
.tc-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.tc-desc {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: auto;
}
.tc-icons-row {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 20px;
}
.tc-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1;
}
.tc-small-icon {
  width: 36px;
  height: 36px;
  background: #eef2ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}
.tc-small-icon svg {
  width: 18px;
  height: 18px;
}
.tc-icon-item span {
  font-size: 11.5px;
  font-weight: 600;
  color: #374151;
  line-height: 1.3;
}
.tc-image-wrap {
  position: relative;
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  height: 170px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
}
.tc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tech-card-modern:hover .tc-image-wrap img {
  transform: scale(1.05);
}
.tc-btn-overlap {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.eyebrow-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #195CA5;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow-line::before,
.eyebrow-line::after {
  content: "";
  display: block;
  width: 50px; 
  height: 2px;
  background: rgba(25, 92, 165, 0.4);
}

/* Talent Section Flip Card */
.talent-card-wrap {
  display: flex;
  justify-content: center;
  padding: 0 24px;
  margin-top: 48px;
}
.talent-flip-card {
  perspective: 1200px;
  width: 70%;
  max-width: 100%;
}
.talent-card-inner {
  position: relative;
  width: 100%;
  display: grid;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}
.talent-flip-card.flipped .talent-card-inner {
  transform: rotateY(180deg);
}
.talent-card-face {
  grid-area: 1 / 1;
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: linear-gradient(145deg, #f4f7fb, #e9eff6);
  border: none;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.talent-card-back {
  transform: rotateY(180deg);
}
.talent-card-heading {
  font-size: 40px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  word-spacing: 9px;
  text-align: center;
}
.talent-card-text {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 12px;
}
.talent-img-wrap {
  margin-top: 0;
  margin-bottom: 24px;
  border-radius: 14px;
  /* overflow: hidden; */
  aspect-ratio: 1915 / 821;
  border: 1px solid rgba(0,0,0,0.05);
}
.talent-img-wrap img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}
.talent-flip-btn {
  padding: 11px 28px;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 600;
}

/* Talent Flip Card â€” Tablet */
@media (max-width: 1024px) {
  .talent-flip-card {
    width: 90%;
  }
  .talent-card-face {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  /* .talent-card-wrap {
    padding: 0 16px;
    margin-top: 32px;
  }
  .talent-flip-card {
    width: 100%;
  }
  .talent-card-face {
    padding: 24px;
    border-radius: 18px;
  }
  .talent-card-heading {
    font-size: 40px;
    word-spacing: 4px;
    margin-bottom: 12px;
  }
  .talent-card-text {
    font-size: 13.5px;
    line-height: 1.65;
  }
  .talent-img-wrap {
    margin-bottom: 16px;
  }
  .highlight-box {
    padding: 18px 20px;
  }
  .talent-flip-btn {
    padding: 10px 22px;
    font-size: 13px;
  } */

    #talent{

        padding:60px 20px;

    }

    #talent .section-title{

        font-size:1.5rem !important;
        text-align:center;

    }

    #talent .section-sub{

        font-size:1rem;
        line-height:1.8;
        text-align:center;

        max-width:100%;

    }

    .talent-card-wrap{

        width:100%;
        margin-top:40px;

    }

    .talent-flip-card{

        width:100%;
        min-height:980px;

    }

    .talent-card-face{

        padding:30px 22px;

    }

    .talent-img-wrap{

        display:flex;
        justify-content:center;

    }

    .talent-img-wrap img{

        width:100%;
        max-width:260px;
        height:auto;

    }

    .talent-card-heading{

        font-size:1.8rem;
        text-align:center;

    }

    .talent-card-text{

        font-size:15px;
        line-height:1.8;
        text-align:center;

    }

    .highlight-box{

        padding:18px;

    }

    .highlight-box p{

        font-size:15px;

    }

    .process-steps{

        gap:18px;

    }

    .proc-step{

        align-items:flex-start;

    }

    .proc-num{

        width:42px;
        height:42px;
        min-width:42px;

        font-size:18px;

    }

    .proc-content h4{

        font-size:16px;

    }

    .proc-content p{

        font-size:14px;
        line-height:1.6;

    }

    .talent-flip-btn{

        width:100%;
        max-width:260px;

    }

}

/* Talent Flip Card â€” Mobile */
@media (max-width: 480px) {
  .talent-card-wrap {
    padding: 0 12px;
  }
  .talent-card-face {
    padding: 18px;
    border-radius: 14px;
  }
  .talent-card-heading {
    font-size: 40px;
    letter-spacing: 0.2px;
    word-spacing: 2px;
  }
  .talent-card-text {
    font-size: 12.5px;
  }
  .highlight-box {
    padding: 16px;
  }
  .highlight-box p {
    font-size: 13px;
  }
  .talent-flip-btn {
    width: 100%;
    text-align: center;
  }
}




/* ==========================================================================
   ðŸ“± MOBILE VIEW NAVBAR: STRICLY VERTICAL ALIGNMENT (NO HORIZONTAL SQUEEZE)
   ========================================================================== */
@media (max-width: 768px) {

  .carousel-slide {
    background-size: cover !important;
    background-position: 70% center !important;
    background-color: #ffffff !important;
    /* flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    position: relative;
    scroll-snap-align: start;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center; */
  }

  /* .carousel-container {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  } */

  /* .carousel-container::-webkit-scrollbar {
    display: none;
  } */

  .carousel-text-overlay{
      position: absolute;
      top: 50%;
      left: 10px;
      color: #fff;
      transform: translateY(-50%);
      text-align: left;
      width: 65%;
      max-width: 65%;
      /* max-width: 40%; */
      z-index: 5;
      /* z-index: 3; */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;

      padding: 0;

      background: transparent;
      backdrop-filter: none;
      border-radius: 0; 
      background:linear-gradient(
          90deg,
          rgba(255,255,255,.45) 0%,
          rgba(255,255,255,.20) 50%,
          rgba(255,255,255,0) 100%
      );
    }

    
    .carousel-heading{
        /* font-size: clamp(2rem, 7vw, 3.2rem);         */
        line-height:1.05;
        font-weight:700;
        color:#111;
        font-size:15px;
        text-shadow:
            0 0 8px rgba(255,255,255,.95),
            0 0 20px rgba(255,255,255,.8),
            0 0 30px rgba(255,255,255,.6);
    }

    .carousel-subtext{
        /* margin-top:16px;
        line-height:1.7;
        color:#222;

        text-shadow:
            0 0 8px rgba(255,255,255,.95),
            0 0 20px rgba(255,255,255,.8),
            0 0 35px rgba(255,255,255,.6); */
      margin-top:18px;
      line-height:1.7;
      /* font-size:1rem; */
      font-weight:600;

      color:#1f2937;

      /* text-shadow:
          0 0 6px rgba(255,255,255,1),
          0 0 15px rgba(255,255,255,1),
          0 0 30px rgba(255,255,255,.95),
          0 0 50px rgba(255,255,255,.85),
          0 0 80px rgba(255,255,255,.75),
          0 0 120px rgba(255,255,255,.6); */

      /* text-shadow:
        0 1px 2px rgba(255,255,255,.95),
        0 2px 8px rgba(255,255,255,.75); */


      /* filter:
          drop-shadow(0 0 10px rgba(255,255,255,.95))
          drop-shadow(0 0 25px rgba(255,255,255,.8)); */
      display:inline-block;
      /* padding:8px 12px; */
      border-radius:12px;

      /* background:rgba(255,255,255,.18); */
      background:linear-gradient(
        90deg,
        rgba(255,255,255,.55) 0%,
        rgba(255,255,255,.30) 60%,
        rgba(255,255,255,0) 100%
      );
      backdrop-filter:blur(2px);
    }
  
  /* 1. Navbar Main Wrapper Container */
  .navbar-container {
    padding: 16px 20px !important;
    display: flex !important;
    flex-direction: column !important; /* Strictly stacks Logo on top and Links below */
    gap: 16px !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 2. Logo Configuration */
  .logo {
    display: block !important;
    margin: 0 auto !important;
  }
  .logo img {
    height: 36px !important; /* Size optimized for mobile screens */
    width: auto !important;
  }

  /* 3. Navigation Links Grid/List: Changed to STRICT VERTICAL COLUMN */
  .nav-links {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;    
    justify-content: center !important;
    gap: 12px !important;             
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  /* 4. Individual Navbar Link Element Formatting */
  .nav-links a {
    display: block !important;
    width: 100% !important;            
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
    text-align: center !important;
    white-space: nowrap !important;
    color: #1a1a24 !important;
    transition: color 0.3s ease !important;
  }

  /* 5. Primary CTA Button (Join the Program) Specific Vertical Layout */
  .nav-links .btn-primary,
  .nav-links [class*="btn"] {
    display: inline-block !important;
    width: auto !important;            
    min-width: 160px !important;
    padding: 10px 24px !important;
    margin-top: 4px !important;        
    font-size: 13px !important;
    text-align: center !important;
    border-radius: 8px !important;
  }

    #talent{
        padding:60px 20px;
    }

    #talent .section-title{

        font-size:1.5rem !important;
        text-align:center;

    }

    #talent .section-sub{

        font-size:1rem;
        line-height:1.8;
        text-align:center;

        max-width:100%;

    }

    .talent-card-wrap{

        width:100%;
        margin-top:40px;

    }

    .talent-flip-card{
        width:100%;
        height:auto;
        min-height:auto;
        position:relative;
        transition:height .35s ease;
    }

    .talent-card-face{
      position:relative;
      padding:30px 22px;
      height:auto;
      min-height:auto;
    }

    .talent-img-wrap{

        display:flex;
        justify-content:center;

    }

    .talent-img-wrap img{

        width:100%;
        max-width:260px;
        height:auto;

    }

    .talent-card-heading{

        font-size:1.8rem;
        text-align:center;

    }

    .talent-card-text{

        font-size:15px;
        line-height:1.8;
        text-align:center;

    }

    .highlight-box{

        padding:18px;

    }

    .highlight-box p{

        font-size:15px;

    }

    .process-steps{

        gap:18px;

    }

    .proc-step{

        align-items:flex-start;

    }

    .proc-num{

        width:42px;
        height:42px;
        min-width:42px;

        font-size:18px;

    }

    .proc-content h4{

        font-size:16px;

    }

    .proc-content p{

        font-size:14px;
        line-height:1.6;

    }

    .talent-flip-btn{

        width:100%;
        max-width:260px;

    }
}

@media (max-width: 480px) {
  /* Ultra-small screen refinement spacing */
  .navbar-container {
    padding: 12px 14px !important;
    gap: 12px !important;
  }
  .nav-links {
    gap: 10px !important;
  }
}

html,
body{

    overflow-x:hidden;
    width:100%;
    max-width:100%;

}

*,
*::before,
*::after{

    box-sizing:border-box;

}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.read-more-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:8px;
    padding:5px 12px;
    font-size:13px;
    font-weight:600;
    color:#fff;
    background:linear-gradient(90deg,#5b5ef5,#00b4db);
    border-radius:20px;
    cursor:pointer;
    transition:.3s ease;
    white-space:nowrap;
}

.read-more-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,.18);
}

