:root {
      --primary: #2563eb;
      --primary-dark: #1e40af;
      --primary-light: #3b82f6;
      --secondary: #f59e0b;
      --accent: #8b5cf6;
      --success: #10b981;
      --danger: #ef4444;
      --dark: #0f172a;
      --gray-50: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-300: #cbd5e1;
      --gray-600: #475569;
      --gray-700: #334155;
      --gray-800: #1e293b;
      --gray-900: #0f172a;
      
      /* Light Mode Colors */
      --bg-primary: #ffffff;
      --bg-secondary: #f8fafc;
      --bg-tertiary: #f1f5f9;
      --text-primary: #0f172a;
      --text-secondary: #475569;
      --text-tertiary: #64748b;
      --border-color: #e2e8f0;
      --card-bg: #ffffff;
      --navbar-bg: rgba(255, 255, 255, 0.98);
      --shadow-sm: rgba(0, 0, 0, 0.05);
      --shadow-md: rgba(0, 0, 0, 0.1);
      --shadow-lg: rgba(0, 0, 0, 0.15);
      --overlay-bg: rgba(0, 0, 0, 0.8);
      --input-bg: #ffffff;
      --modal-header-bg: linear-gradient(135deg, #2563eb, #1e40af);
    }

    /* Dark Mode Variables */
    [data-theme="dark"] {
      --bg-primary: #0f172a;
      --bg-secondary: #1e293b;
      --bg-tertiary: #334155;
      --text-primary: #f1f5f9;
      --text-secondary: #cbd5e1;
      --text-tertiary: #94a3b8;
      --border-color: #334155;
      --card-bg: #1e293b;
      --navbar-bg: rgba(15, 23, 42, 0.98);
      --shadow-sm: rgba(0, 0, 0, 0.3);
      --shadow-md: rgba(0, 0, 0, 0.4);
      --shadow-lg: rgba(0, 0, 0, 0.5);
      --overlay-bg: rgba(0, 0, 0, 0.9);
      --input-bg: #0f172a;
      --modal-header-bg: linear-gradient(135deg, #1e40af, #1e3a8a);
    }

    .btn-loading {
      position: relative;
      pointer-events: none;
      opacity: 0.8;
    }

    .btn-loading .btn-text {
      visibility: hidden;
      opacity: 0;
    }

    .btn-spinner {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: none;
    }

    .btn-loading .btn-spinner {
      display: block;
    }

    .spinner {
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-top-color: white;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .btn-primary:not(.btn-loading):hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-primary);
      line-height: 1.7;
      overflow-x: hidden;
      background: var(--bg-secondary);
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-primary);
    }

    /* Navbar Styles */
    .navbar {
      background: var(--navbar-bg) !important;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 3px var(--shadow-sm);
      padding: 1rem 0;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 0.75rem 0;
      box-shadow: 0 4px 6px -1px var(--shadow-md);
    }
    
    .navbar-brand {
      font-weight: 800;
      font-size: 1.75rem;
      color: var(--primary) !important;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .navbar-brand i {
      font-size: 1.5rem;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .nav-link {
      font-weight: 500;
      color: var(--text-primary) !important;
      transition: all 0.3s ease;
      position: relative;
      padding: 0.5rem 1rem !important;
      margin: 0 0.25rem;
      border-radius: 8px;
    }
    
    .nav-link:hover, .nav-link.active {
      color: var(--primary) !important;
      background: var(--bg-tertiary);
    }

    /* Dropdown Menu Styles */
    .dropdown-menu {
      border: none;
      border-radius: 12px;
      box-shadow: 0 10px 30px var(--shadow-lg);
      padding: 0.5rem;
      margin-top: 0.5rem;
      min-width: 200px;
      background: var(--card-bg);
      border: 1px solid var(--border-color);
    }

    .dropdown-item {
      border-radius: 8px;
      padding: 0.75rem 1.25rem;
      color: var(--text-primary);
      font-weight: 500;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
    }

    .dropdown-item:hover {
      background: var(--bg-tertiary);
      color: var(--primary);
      transform: translateX(5px);
    }

    .dropdown-item:active {
      background: var(--primary);
      color: white;
    }

    .dropdown-item.active {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
    }

    .dropdown-item.active:hover {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      color: white;
    }

    .nav-item.dropdown .nav-link.dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .nav-item.dropdown .nav-link.dropdown-toggle::after {
      margin-left: 0.25rem;
      transition: transform 0.3s ease;
    }

    .nav-item.dropdown .nav-link.dropdown-toggle[aria-expanded="true"]::after {
      transform: rotate(180deg);
    }

    .nav-item.dropdown .dropdown-toggle.active {
      color: var(--primary) !important;
      background: var(--bg-tertiary);
    }
    
    /* Button Styles */
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border: none;
      padding: 0.75rem 2rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
      letter-spacing: 0.3px;
      color: white;
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
      color: white;
    }

    .btn-outline-primary {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
      transition: all 0.3s ease;
    }

    .btn-outline-primary:hover {
      background: var(--primary);
      color: white;
    }

    /* Dark Mode Toggle Button */
    #darkModeToggle {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      padding: 0;
    }

    #darkModeToggle:hover {
      transform: rotate(20deg) scale(1.1);
    }

    /* Hero Section */
    .hero-slider {
      position: relative;
      height: 100vh;
      overflow: hidden;
      margin-top: 85px;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
      background-size: cover;
      background-position: center;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.49) 0%, rgba(30, 41, 59, 0.15) 50%, rgba(37, 100, 235, 0.26) 100%);
    }

    [data-theme="dark"] .hero-slide::before {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(37, 100, 235, 0.4) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 10;
      height: 100vh;
      display: flex;
      align-items: center;
      padding: 2rem;
      margin-top: 80px;
    }

    .hero-text-container {
      max-width: 900px;
    }

    .hero-title {
      font-size: 4.5rem;
      font-weight: 800;
      color: rgba(255,255,255,0.95);
      margin-bottom: 1.5rem;
      text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
      font-family: 'Playfair Display', serif;
      line-height: 1.2;
    }

    .hero-subtitle {
      font-size: 1.5rem;
      color: rgba(255,255,255,0.95);
      margin-bottom: 2rem;
      font-weight: 400;
      text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    }

    .typing-text {
      display: inline-block;
      border-right: 3px solid white;
      padding-right: 5px;
      animation: blink 0.7s infinite;
    }

    @keyframes blink {
      0%, 50% { border-color: white; }
      51%, 100% { border-color: transparent; }
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .hero-btn {
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      border: none;
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    }

    .hero-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
      color: white;
    }

    .hero-btn-outline {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      color: white;
      border: 2px solid white;
    }

    .hero-btn-outline:hover {
      background: white;
      color: var(--primary);
      transform: translateY(-3px);
    }

    /* Section Titles */
    .section-title {
      font-size: 2.75rem;
      color: var(--text-primary);
      margin-top: -3rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    .section-subtitle {
      text-align: center;
      color: var(--text-secondary);
      font-size: 1.1rem;
      margin-bottom: 3rem;
    }

    /* Members Section */
    .members-section {
      padding: 6rem 0;
      background: var(--bg-secondary);
    }

    .member-card {
      background: var(--card-bg);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s ease;
      border: 1px solid var(--border-color);
      height: 100%;
      box-shadow: 0 4px 6px var(--shadow-sm);
    }

    .member-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px var(--shadow-md);
      border-color: var(--primary);
    }

    .member-image {
      position: relative;
      height: 300px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--primary), var(--accent));
    }

    .member-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .member-card:hover .member-image img {
      transform: scale(1.1);
    }

    .member-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(255, 255, 255, 0.95);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--primary);
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .member-info {
      padding: 2rem;
      text-align: center;
    }

    .member-name {
      font-size: 1.5rem;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
      font-weight: 700;
    }

    .member-role {
      color: var(--primary);
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 1rem;
      display: block;
    }

    .member-contact {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border-color);
    }

    .contact-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-tertiary);
      color: var(--text-primary);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .contact-btn:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }

    /* Leadership Cards */
    .leadership-card {
      box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
      border: 2px solid var(--primary);
    }

    .leadership-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 25px 50px rgba(37, 99, 235, 0.25);
    }

    /* QA Head Card */
    .qa-head-card {
      box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
      border: 2px solid var(--accent);
    }

    .qa-head-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 45px rgba(139, 92, 246, 0.25);
    }

    /* Organizational Chart Lines */
    .org-line-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 2rem 0;
      position: relative;
    }

    .org-vertical-line {
      width: 3px;
      height: 50px;
      background: linear-gradient(180deg, var(--primary), var(--accent));
      border-radius: 2px;
    }

    .org-horizontal-line {
      width: 60%;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
      margin-top: -3px;
      border-radius: 2px;
    }

    /* Team Section Title */
    .team-section-title {
      font-size: 2rem;
      color: var(--text-primary);
      font-weight: 700;
      position: relative;
      display: inline-block;
      padding-bottom: 1rem;
    }

    .team-section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 2px;
    }

    /* Team Member Cards */
    .team-member-card {
      background: var(--card-bg);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
      border: 1px solid var(--border-color);
      box-shadow: 0 2px 8px var(--shadow-sm);
      height: 100%;
    }

    .team-member-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
      border-color: var(--primary);
    }

    .team-member-image {
      position: relative;
      height: 180px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--primary), var(--accent));
    }

    .team-member-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .team-member-card:hover .team-member-image img {
      transform: scale(1.1);
    }

    .team-member-info {
      padding: 1rem;
      text-align: center;
      background: var(--card-bg);
    }

    .team-member-name {
      font-size: 1rem;
      color: var(--text-primary);
      margin-bottom: 0.25rem;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
    }

    .team-member-position {
      font-size: 0.85rem;
      color: var(--primary);
      margin: 0;
      font-weight: 600;
    }

    /* Scope Section */
    .scope-section {
      padding: 6rem 0;
      background: var(--bg-secondary);
    }

    .scope-card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 2.5rem;
      transition: all 0.4s ease;
      border: 1px solid var(--border-color);
      height: 100%;
      box-shadow: 0 4px 6px var(--shadow-sm);
      position: relative;
      overflow: hidden;
    }

    .scope-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .scope-card:hover::before {
      transform: scaleX(1);
    }

    .scope-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px var(--shadow-md);
      border-color: var(--primary);
    }

    .scope-number {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: white;
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    }

    .scope-title {
      font-size: 1.5rem;
      color: var(--text-primary);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .scope-description {
      color: var(--text-secondary);
      line-height: 1.8;
      font-size: 1.05rem;
    }

    /* About Section */
    .about-section {
      padding: 6rem 0;
      background: var(--bg-primary);
    }

    .about-image {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 25px 50px var(--shadow-lg);
      position: relative;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    .about-content {
      padding-left: 3rem;
    }

    .about-content h2 {
      font-size: 2.75rem;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
    }

    .about-content p {
      font-size: 1.1rem;
      color: var(--text-secondary);
      line-height: 1.9;
      margin-bottom: 1.5rem;
    }

    /* Mission & Vision Section */
    .mission-vision-section {
      padding: 6rem 0;
      background: var(--bg-secondary);
      position: relative;
      overflow: hidden;
    }

    .mission-vision-card {
      background: var(--card-bg);
      border-radius: 24px;
      padding: 3rem;
      height: 100%;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 40px var(--shadow-md);
      transition: all 0.4s ease;
      border: 1px solid var(--border-color);
    }

    .mission-vision-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 6px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .mission-vision-card:hover::before {
      transform: scaleX(1);
    }

    .mission-vision-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    }

    .card-icon-wrapper {
      margin-bottom: 2rem;
    }

    .card-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
    }

    .mission-icon {
      background: linear-gradient(135deg, #2563eb, #1e40af);
    }

    .vision-icon {
      background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    }

    .card-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
    }

    .title-underline {
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      margin-bottom: 1.5rem;
      border-radius: 2px;
    }

    .card-description {
      font-size: 1.1rem;
      line-height: 1.9;
      color: var(--text-secondary);
      margin-bottom: 2rem;
    }

    .mission-highlights {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .highlight-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.75rem;
      background: var(--bg-tertiary);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .highlight-item:hover {
      background: var(--primary);
      color: white;
      transform: translateX(10px);
    }

    .highlight-item i {
      color: var(--success);
      font-size: 1.25rem;
      transition: all 0.3s ease;
    }

    .highlight-item:hover i {
      color: white;
    }

    .highlight-item span {
      font-weight: 600;
      font-size: 1rem;
    }

    .vision-goals {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .goal-item {
      height: 80px;
      display: flex;
      align-items: start;
      gap: 1.25rem;
      padding: 1.25rem;
      background: var(--bg-tertiary);
      border-radius: 16px;
      border-left: 4px solid var(--primary);
      transition: all 0.3s ease;
    }

    [data-theme="dark"] .goal-item {
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.1));
    }

    .goal-item:hover {
      background: var(--bg-tertiary);
      transform: translateX(10px);
      border-left-color: var(--accent);
    }

    [data-theme="dark"] .goal-item:hover {
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(139, 92, 246, 0.15));
    }

    .goal-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }

    .goal-text h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-top: 10px;
    }

    /* Team Section (Carousel) */
    .team-section {
      padding: 6rem 0;
      background: var(--bg-primary);
    }

    .team-carousel {
      max-width: 1100px;
      margin: -20px auto;
    }

    .team-carousel .carousel-inner {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px var(--shadow-md);
      margin-top: -50px;
    }

    .team-carousel .carousel-item img {
      width: 100%;
      height: 600px;
      object-fit: cover;
      margin-top: -20px;
      transition: transform 0.5s ease;
    }

    .team-carousel .carousel-item:hover img {
      transform: scale(1.05);
    }

    .team-carousel .carousel-control-prev,
    .team-carousel .carousel-control-next {
      width: 60px;
      height: 60px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(37, 99, 235, 0.9);
      border-radius: 50%;
      opacity: 0.8;
      transition: all 0.3s ease;
      border: 3px solid white;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-decoration: none;
    }

    .team-carousel .carousel-control-prev {
      left: -30px;
    }

    .team-carousel .carousel-control-next {
      right: -30px;
    }

    .team-carousel .carousel-control-prev:hover,
    .team-carousel .carousel-control-next:hover {
      opacity: 1;
      background: rgba(37, 99, 235, 1);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    }

    .team-carousel .carousel-control-prev-icon,
    .team-carousel .carousel-control-next-icon {
      width: 24px;
      height: 24px;
      background-size: 100%;
      filter: brightness(0) invert(1);
    }

    /* Features Section */
    .features-section {
      padding: 6rem 0;
      background: var(--bg-secondary);
    }

    .feature-card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 2.5rem;
      transition: all 0.4s ease;
      border: 1px solid var(--border-color);
      height: 100%;
      box-shadow: 0 4px 6px var(--shadow-sm);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px var(--shadow-md);
      border-color: var(--primary);
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: white;
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    }

    .feature-title {
      font-size: 1.5rem;
      color: var(--text-primary);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .feature-text {
      color: var(--text-secondary);
      line-height: 1.8;
      font-size: 1.05rem;
    }

    /* Modal Styles */
    .modal-content {
      border-radius: 24px;
      border: none;
      box-shadow: 0 25px 50px var(--shadow-lg);
      overflow: hidden;
      background: var(--card-bg);
    }

    .modal-header {
      background: var(--modal-header-bg);
      color: white;
      padding: 2rem;
      border-bottom: none;
    }

    .modal-title {
      font-size: 1.75rem;
      font-weight: 700;
      color: white;
    }

    .modal-body {
      padding: 2.5rem;
      background: var(--card-bg);
    }

    .form-label {
      color: var(--text-primary);
      font-weight: 600;
    }

    .form-control, .form-select {
      padding: 0.875rem 1.25rem;
      border-radius: 12px;
      border: 2px solid var(--border-color);
      transition: all 0.3s ease;
      font-size: 1rem;
      background: var(--input-bg);
      color: var(--text-primary);
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
      background: var(--input-bg);
      color: var(--text-primary);
    }

    .form-control::placeholder {
      color: var(--text-tertiary);
    }

    .input-group-text {
      background: var(--bg-tertiary);
      border: 2px solid var(--border-color);
      border-right: none;
      color: var(--text-secondary);
      padding: 0.875rem 1.25rem;
      border-radius: 12px 0 0 12px;
    }

    .input-group .form-control {
      border-left: none;
      border-radius: 0 12px 12px 0;
    }

    .toggle-password {
      background: var(--bg-tertiary);
      color: var(--text-secondary);
    }

    .form-check-input {
      border-color: var(--border-color);
      background-color: var(--input-bg);
    }

    .form-check-input:checked {
      background-color: var(--primary);
      border-color: var(--primary);
    }

    .form-check-label {
      color: var(--text-primary);
    }

    .user-type-btn {
      background: var(--card-bg);
      border: 2px solid var(--border-color);
      padding: 1.5rem;
      border-radius: 16px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      cursor: pointer;
      color: var(--text-primary);
    }

    .user-type-btn:hover {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-color: var(--primary);
      color: white;
      transform: translateX(5px);
      box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    }

    .user-type-btn i {
      font-size: 2rem;
      width: 50px;
      text-align: center;
    }

    .btn-close {
      filter: brightness(0) invert(1);
    }

    .btn-close-white {
      filter: brightness(0) invert(1);
      opacity: 0.8;
    }

    .btn-close-white:hover {
      opacity: 1;
    }

    /* Text Utilities */
    .text-muted {
      color: var(--text-tertiary) !important;
    }

    [data-theme="dark"] .opacity-75 {
      opacity: 0.75;
    }

    /* Links */
    a {
      color: var(--primary);
      text-decoration: none;
    }

    a:hover {
      color: var(--primary-dark);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .about-content {
        padding-left: 0;
        margin-top: 3rem;
      }

      .team-carousel .carousel-item img {
        height: 400px;
      }

      .dropdown-menu {
        border: none;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
      }
      
      .dropdown-item {
        padding: 0.5rem 1rem;
      }
      
      .dropdown-item:hover {
        transform: none;
      }

      .org-horizontal-line {
        width: 80%;
      }
      
      .team-member-image {
        height: 150px;
      }
      
      .team-member-name {
        font-size: 0.95rem;
      }
      
      .team-member-position {
        font-size: 0.8rem;
      }
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
      }

      .hero-subtitle {
        font-size: 1.2rem;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .hero-btn {
        width: 100%;
        justify-content: center;
      }

      .section-title {
        font-size: 2rem;
      }

      .org-horizontal-line {
        width: 90%;
      }
      
      .team-section-title {
        font-size: 1.5rem;
      }
      
      .team-member-image {
        height: 120px;
      }
      
      .team-member-name {
        font-size: 0.85rem;
      }
      
      .team-member-position {
        font-size: 0.75rem;
      }
    }

      /* Footer */
        .footer {
        background: var(--dark-color);
        color: white;
        padding: 60px 0 30px;
        }

        .footer-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        }

        .footer-brand i {
        font-size: 2rem;
        color: var(--primary-light);
        }

        .footer-description {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 1.5rem;
        line-height: 1.7;
        }

        .social-links {
        display: flex;
        gap: 1rem;
        }

        .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        }

        .social-links a:hover {
        background: var(--primary);
        transform: translateY(-3px);
        }

        .footer-title {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        }

        .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        }

        .footer-links li {
        margin-bottom: 0.75rem;
        }

        .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        }

        .footer-links a:hover {
        color: white;
        padding-left: 5px;
        }

        .footer-divider {
        border-color: rgb(34, 0, 255);
        margin: 2rem 0;
        }

        .footer-bottom {
        text-align: center;
        color: rgb(64, 0, 255);
        font-size: 0.9rem;
        }