      :root {
        --purple: #602e9e;
        --orange: #d68e45;
        --light-purple: #f8f5fc;
        --light-orange: #fef8f3;
        --text-dark: #2d1b4e;
        --text-muted: #5d4a7a;
        --gradient-main: linear-gradient(135deg, #602e9e, #d68e45);
        --gradient-reverse: linear-gradient(135deg, #d68e45, #602e9e);
        --card-shadow: 0 8px 24px rgba(96, 46, 158, 0.12);
      }
      
      * { box-sizing: border-box; margin: 0; padding: 0; }
      
      html, body { height: 100%; }
      
      body {
        font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
        color: var(--text-dark);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        line-height: 1.6;
        overflow-x: hidden;
        background: #faf9fc;
      }

      /* Container */
      .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
      }

      /* Navbar */
      .navbar {
        background: #ffffff;
        padding: 1rem 0;
        box-shadow: 0 2px 15px rgba(96, 46, 158, 0.08);
        transition: all 0.3s ease;
      }
      .navbar-brand .logo-img {
        height: 45px;
        width: auto;
      }
      .nav-link {
        color: var(--text-dark);
        font-weight: 500;
        padding: 0.5rem 1rem;
        transition: color 0.3s ease;
      }
      .nav-link:hover, .nav-link.active {
        color: var(--purple);
      }

     .btn-cta, .hero-cta-primary, .cta-button {
      background: var(--gradient-main);
      color: #fff;
      border-radius: 12px;
      padding: 0.75rem 1.5rem;
      box-shadow: 0 6px 18px rgba(96, 46, 158, 0.25);
      border: none;
      font-weight: 600;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      position: relative;
      overflow: hidden;
    }
      .btn-cta::before, .hero-cta-primary::before, .cta-button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
      }
      .btn-cta:hover::before, .hero-cta-primary:hover::before, .cta-button:hover::before {
        width: 300px;
        height: 300px;
      }
      .btn-cta:hover, .hero-cta-primary:hover, .cta-button:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(96, 46, 158, 0.35);
        color: #fff;
        background: var(--gradient-reverse);
      }
       .btn-cta i {
      margin-right: 0.5rem;
    }
    /* =============================================
   MISSION HERO IMAGE
   ============================================= */
.mission-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
 
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-hero-img:hover {
  transform: translateY(-10px);
 
}

/* Responsive */
@media (max-width: 768px) {
  .mission-hero-img {
    border-radius: 12px;
  }
}
      /* Secondary CTA */
      .btn-explore, .hero-cta-secondary {
        background: transparent;
        color: var(--purple);
        border: 2px solid var(--purple);
        border-radius: 12px;
        padding: 0.75rem 1.5rem;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
      }
      .btn-explore:hover, .hero-cta-secondary:hover {
        background: var(--purple);
        color: #fff;
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(96, 46, 158, 0.3);
      }

      /* Mission Hero */
     .mission-hero {
  background: linear-gradient(135deg, #f8f5fc 0%, #fef8f3 50%, #f8f5fc 100%);
  padding: 120px 20px 60px;       
  min-height: 80vh;                
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
      .mission-hero::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(96, 46, 158, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(214, 142, 69, 0.05) 0%, transparent 50%);
        pointer-events: none;
      }
      .mission-hero .container { position: relative; z-index: 2; }
      .mission-hero h1 {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        color: var(--text-dark);
        line-height: 1.2;
        margin-bottom: 1.5rem;
        font-size: clamp(2rem, 5vw, 3.5rem);
      }
      .mission-hero h1 .highlight {
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text; 
        font-size: 3rem;
      }
      .mission-hero p {
        color: var(--text-muted);
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
      }
      .why-exist-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(96, 46, 158, 0.15);
        border-radius: 20px;
        padding: 2.5rem;
        margin-top: 2rem;
        box-shadow: 0 15px 45px rgba(96, 46, 158, 0.12);
        transition: all 0.4s ease;
      }
      .why-exist-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(96, 46, 158, 0.2);
        border-color: var(--orange);
      }
      .why-exist-card h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        color: var(--text-dark);
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }
      .why-exist-card p {
        color: var(--text-muted);
        margin-bottom: 1rem;
        line-height: 1.6;
      }

      /* Section Styling */
      .section-header {
        margin-bottom: 100px;
      }
      .section-title {
        text-align: center;
        margin-bottom: 3rem;
      }
      .section-title h2 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        color: var(--text-dark);
        font-size: clamp(2rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
      }
      .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--gradient-main);
        border-radius: 2px;
      }
      .section-title p {
        color: var(--text-muted);
        font-size: 1.1rem;
        max-width: 800px;
        margin: 1.5rem auto 0;
        line-height: 1.7;
      }

      /* WHO WE ARE SECTION */
      .who-we-are {
        padding: 60px 20px;
        background: #ffffff;
      }
      .who-we-are .section-title h2 {
        font-size: 3rem;
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .who-icon {
        font-size: 4rem;
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        display: inline-block;
      }

      .vision-mission-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: 2.5rem;
        margin-top: 80px;
      }
      .vm-card {
        background: #fff;
        border-radius: 24px;
        padding: 3rem;
        box-shadow: 0 15px 45px rgba(96, 46, 158, 0.12);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border: 2px solid rgba(96, 46, 158, 0.12);
      }
      .vm-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 7px;
        background: var(--gradient-main);
      }
      .vm-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(96, 46, 158, 0.03) 0%, rgba(214, 142, 69, 0.03) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
      }
      .vm-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 30px 70px rgba(96, 46, 158, 0.2);
        border-color: var(--orange);
      }
      .vm-card:hover::after {
        opacity: 1;
      }
      .vm-icon {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.8rem;
        font-size: 2.4rem;
        color: white;
        box-shadow: 0 10px 30px rgba(96, 46, 158, 0.25);
        transition: all 0.4s ease;
      }
      .vm-icon.vision {
        background: var(--gradient-main);
      }
      .vm-icon.mission {
        background: var(--gradient-reverse);
      }
      .vm-card:hover .vm-icon {
        transform: scale(1.1) rotate(10deg);
      }
      .vm-card h3 {
        
        font-weight: 700;
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
        color: var(--text-dark);
      }
      .vm-card p {
        color: var(--text-muted);
        line-height: 1.85;
        font-size: 1.05rem;
      }

      /* Team Section */
      .team-section { 
        padding: 60px 20px; 
        background: linear-gradient(180deg, #faf9fc 0%, #f8f5fc 100%);
      }
      .founder-card {
        background: #fff;
        border-radius: 24px;
        padding: 3rem;
        box-shadow: var(--card-shadow);
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
        border: 2px solid rgba(96, 46, 158, 0.12);
        height: 100%;
      }
      .founder-card::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 6px;
        background: var(--gradient-main);
      }
      .founder-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(96, 46, 158, 0.03) 0%, rgba(214, 142, 69, 0.03) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
      }
      .founder-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(96, 46, 158, 0.2);
        border-color: var(--orange);
      }
      .founder-card:hover::after {
        opacity: 1;
      }
      .stat-item {
        position: relative;
        z-index: 1;
      }
      .stat-item i {
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2.4rem;
        margin-bottom: 0.6rem;
        display: inline-block;
      }
      .stat-number {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-top: 0.5rem;
      }

      .team-expertise {
        background: #fff;
        border-radius: 24px;
        padding: 3rem;
        box-shadow: var(--card-shadow);
        border: 2px solid rgba(96, 46, 158, 0.12);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
      }
      .team-expertise::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 6px;
        background: var(--gradient-reverse);
      }
      .team-expertise:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(96, 46, 158, 0.2);
        border-color: var(--orange);
      }
      .expertise-item {
        padding: 1.5rem;
        border-left: 3px solid var(--purple);
        margin-bottom: 1.5rem;
        background: rgba(96, 46, 158, 0.03);
        border-radius: 8px;
        transition: all 0.3s ease;
      }
      .expertise-item:hover {
        border-left-color: var(--orange);
        background: linear-gradient(90deg, rgba(96, 46, 158, 0.05), rgba(214, 142, 69, 0.05));
        transform: translateX(10px);
      }
      .expertise-item i {
        font-size: 1.5rem;
      }
      .expertise-item p {
        color: var(--text-muted);
        margin: 0.5rem 0 0 0;
        font-size: 0.95rem;
      }
      .combined-experience {
        margin-top: 2rem;
        padding: 2rem;
        background: linear-gradient(135deg, rgba(96, 46, 158, 0.05), rgba(214, 142, 69, 0.05));
        border-radius: 16px;
        text-align: center;
        border: 2px solid rgba(96, 46, 158, 0.15);
      }
      .big-number {
        font-size: 3rem;
        font-weight: 800;
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin: 0.5rem 0;
      }

      /* Core Values */
      .values-section {
        padding: 60px 20px;
        background: #ffffff;
      }
      .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
        margin-top: 80px;
      }
      .value-card {
        background: #fff;
        border-radius: 24px;
        padding: 3rem;
        text-align: center;
        box-shadow: var(--card-shadow);
        transition: all 0.4s ease;
        border: 2px solid rgba(96, 46, 158, 0.12);
        position: relative;
        overflow: hidden;
      }
      .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(96, 46, 158, 0.03) 0%, rgba(214, 142, 69, 0.03) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
      }
      .value-card:hover {
        transform: translateY(-15px) scale(1.03);
        box-shadow: 0 30px 70px rgba(96, 46, 158, 0.2);
        border-color: var(--orange);
      }
      .value-card:hover::before {
        opacity: 1;
      }
      .value-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.8rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.4rem;
        color: #fff;
        box-shadow: 0 8px 25px rgba(96, 46, 158, 0.25);
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
      }
      .value-icon.integrity { background: var(--gradient-main); }
      .value-icon.excellence { background: var(--gradient-reverse); }
      .value-icon.freedom { background: linear-gradient(135deg, var(--orange), var(--purple)); }
      .value-card:hover .value-icon {
        transform: scale(1.15) rotate(10deg);
      }
      .value-card h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
        position: relative;
        z-index: 1;
      }
      .value-card p {
        color: var(--text-muted);
        line-height: 1.7;
        position: relative;
        z-index: 1;
      }

      /* Final CTA */
      .final-cta {
        background: linear-gradient(135deg, #fef8f3 0%, #f8f5fc 50%, #fef8f3 100%);
        padding: 60px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .final-cta::before {
        content: "";
        position: absolute;
        top: -50%; left: -50%;
        width: 200%; height: 200%;
        background: radial-gradient(circle, rgba(96, 46, 158, 0.03) 1px, transparent 1px);
        background-size: 30px 30px;
        animation: float 20s linear infinite;
      }
      @keyframes float {
        0% { transform: translate(0, 0) rotate(0deg); }
        100% { transform: translate(-30px, -30px) rotate(360deg); }
      }
      .final-cta .container {
        position: relative;
        z-index: 2;
      }
      .final-cta h2 {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        color: var(--text-dark);
        font-size: clamp(2rem, 4vw, 2.8rem);
        margin-bottom: 1.5rem;
      }
      .final-cta p {
        color: var(--text-muted);
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
      }

      /* Footer */
      footer {
        background: var(--text-dark);
        color: rgba(255, 255, 255, 0.8);
        padding: 60px 20px 20px;
      }
      footer h6 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
      }
      footer a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
      }
      footer a:hover {
        color: var(--orange);
        transform: translateX(5px);
      }
      footer ul li {
        margin-bottom: 0.8rem;
      }
      .footer-text-muted {
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.8;
      }
      .social-square {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin-right: 0.8rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
      }
      .social-square:hover {
        background: var(--gradient-main);
        border-color: transparent;
        transform: translateY(-5px) scale(1.1);
      }
      .social-square i { 
        font-size: 1.1rem;
        color: #fff;
      }
      .footer-contact div {
        margin-bottom: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
      }
      .footer-contact i {
        margin-right: 0.8rem;
        color: var(--orange);
        width: 20px;
      }
      .footer-hr {
        border-color: rgba(255, 255, 255, 0.1);
        margin: 3rem 0 1.5rem;
      }
      .footer-copyright {
        color: rgba(255, 255, 255, 0.5);
      }

      /* Responsive */
      @media (max-width: 991px) {
        .mission-hero { 
          padding: 120px 20px 60px; 
          min-height: auto;
          text-align: center; 
        }
        .who-we-are .who-icon { font-size: 3rem; }
        .vm-card { padding: 2.5rem; }
        .team-section { padding: 100px 20px; }
      }
      
      @media (max-width: 768px) {
        .container { padding: 0 20px; }
        .mission-hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
        .vision-mission-grid { 
          gap: 2rem;
          grid-template-columns: 1fr;
        }
        .vm-icon { width: 75px; height: 75px; font-size: 2rem; }
        .values-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        .founder-card, .team-expertise {
          padding: 2rem;
        }
      }
         .founder-image-wrapper {
        width: 100%;
        height: 350px;
        overflow: hidden;
        border-radius: 12px 12px 0 0;
        position: relative;
      }
      
      .founder-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.3s ease;
      }
      
      .founder-card:hover .founder-image {
        transform: scale(1.05);
      }
      
      .founder-card {
        overflow: hidden;
        border-radius: 12px;
      }
      
      .founder-card .card-body {
        padding: 2rem;
      }
      
      @media (max-width: 768px) {
        .founder-image-wrapper {
          height: 220px;
        }
      }