 
      :root {
        --primary-color: #ff0063;
        --primary-dark: #9d003d;
        --text-dark: #343434;
        --background-white: #ffffff;
        --background-black: #000000;
        --gradient-bg: linear-gradient(135deg, #ff0063 0%, #9d003d 100%);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        overflow-x: hidden;
      }

      /* Navigation */
      .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 0;
        transition: all 0.3s ease;
      }

      .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .logo-icon {
        width: 40px;
        height: 40px;
        background: var(--gradient-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
      }

      .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
      }

      .nav-menu a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        transition: color 0.3s ease;
      }

      .nav-menu a:hover {
        color: var(--primary-color);
      }

      .theme-toggle {
        background: none;
        border: 2px solid var(--primary-color);
        border-radius: 50px;
        padding: 0.5rem 1rem;
        color: var(--primary-color);
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .theme-toggle:hover {
        background: var(--primary-color);
        color: white;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
        height: 100vh;
        background: var(--gradient-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
      }

      .hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
      }

      .hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        animation: fadeInUp 1s ease;
      }

      .hero .tagline {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        animation: fadeInUp 1s ease 0.2s both;
      }

      .cta-button {
        display: inline-block;
        background: white;
        color: var(--primary-color);
        padding: 1rem 2rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeInUp 1s ease 0.4s both;
      }

      .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }

      /* Sections */
      .section {
        padding: 5rem 0;
        opacity: 1;
        transform: translateY(0);
        transition: all 0.6s ease;
      }

      .section.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 3rem;
        color: var(--text-dark);
      }

      .section-title.pink {
        color: var(--primary-color);
      }

      /* About Section */
      .about {
        background: var(--background-white);
      }

      .about-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
      }

      .about-text {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 3rem;
      }

      .icons-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .icon-item {
        text-align: center;
        padding: 2rem;
        border-radius: 15px;
        background: #ffffff;
        border: 2px solid #f0f0f0;
        transition: transform 0.3s ease;
      }

      .icon-item:hover {
        transform: translateY(-5px);
        border-color: var(--primary-color);
      }

      .icon-item i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
      }

      .icon-item h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark);
      }

      /* Strategic Pillars */
      .pillars {
        background: #f8f9fa;
        padding: 2rem;
      }

      .pillars-carousel-wrapper {
        position: relative;
      }

      .carousel-scroll {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 1.5rem;
        padding: 1rem;
      }

      .carousel-scroll::-webkit-scrollbar {
        display: none;
      }

      .pillar-card {
        flex: 0 0 auto;
        width: 90%;
        max-width: 320px;
        background: #ffffff;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid #e0e0e0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .pillar-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-color: var(--primary-color);
      }

      .pillar-card i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
      }

      .pillar-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--text-dark);
      }

      .pillar-card p {
        color: #555555;
        line-height: 1.6;
        font-size: 1rem;
        margin-top: 1rem;
        font-family: 'Georgia', serif;
      }

      .pillar-quote{
        text-align: end;
      }


      /* Mission Vision */
      .mission-vision {
        background: var(--background-white);
      }

      .mv-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 3rem;
      }

      .mv-card {
        background: var(--gradient-bg);
        color: white;
        padding: 3rem;
        border-radius: 20px;
        text-align: center;
      }

      .mv-card h3 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
      }

      .mv-card p {
        font-size: 1.1rem;
        line-height: 1.7;
        opacity: 0.95;
        text-align: justify;
      }

      /* Team Section */
      .team {
        background: #f8f9fa;
      }

      .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
      }

      .team-card {
        background: #ffffff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid #e0e0e0;
        transition: transform 0.3s ease;
      }

      .team-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-color);
      }

      .team-photo {
        width: 100%;
        height: 250px;
        background: var(--gradient-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 3rem;
      }

      .team-info {
        padding: 1.5rem;
      }

      .team-info h4 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
      }

      .team-info .role {
        color: var(--primary-color);
        font-weight: 500;
        margin-bottom: 1rem;
      }

      .team-info p {
        color: #555555;
        font-size: 0.95rem;
        line-height: 1.5;
      }

      /* Alliances */
      .alliances {
        background: var(--background-white);
      }

      .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 2rem;
        align-items: center;
        justify-items: center;
        margin-top: 2rem;
      }

      .partner-logo img {
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
      }

      .partner-logo {
        text-align: center;
        font-weight: 600;
        font-size: 1rem;
        color: #1d2554;
      }


      /* Contact Form */
      .contact {
        background: var(--gradient-bg);
        color: white;
      }

      .contact .section-title {
        color: white;
      }

      .contact-form {
        max-width: 600px;
        margin: 0 auto;
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        font-family: inherit;
        background: rgba(255, 255, 255, 0.9);
        color: var(--text-dark);
      }

      .form-group textarea {
        height: 120px;
        resize: vertical;
      }

      .submit-btn {
        background: white;
        color: var(--primary-color);
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s ease;
        width: 100%;
      }

      .submit-btn:hover {
        transform: translateY(-2px);
      }

      /* Footer */
      .footer {
        background: var(--text-dark);
        color: white;
        padding: 3rem 0 1rem;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
      }

      .footer-section h4 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--primary-color);
      }

      .footer-section p,
      .footer-section a {
        color: #ccc;
        text-decoration: none;
        line-height: 1.6;
      }

      .footer-section a:hover {
        color: var(--primary-color);
      }

      .social-links {
        display: flex;
        gap: 1rem;
      }

      .social-links a {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
      }

      .social-links a:hover {
        transform: scale(1.1);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #555;
        color: #999;
      }

      /* Dark Theme */
      .dark-theme {
        --background-white: #1a1a1a;
        --text-dark: #e0e0e0;
      }

      .dark-theme .navbar {
        background: rgba(26, 26, 26, 0.95);
      }

      .dark-theme .nav-menu a {
        color: #e0e0e0;
      }

      .dark-theme .icon-item,
      .dark-theme .pillar-card,
      .dark-theme .team-card,
      .dark-theme .partner-logo {
        background: #2a2a2a;
        color: #e0e0e0;
        border-color: #444444;
      }

      .dark-theme .icon-item h3,
      .dark-theme .pillar-card h3,
      .dark-theme .team-info h4 {
        color: #e0e0e0;
      }

      .dark-theme .pillar-card p,
      .dark-theme .team-info p {
        color: #cccccc;
      }

      .dark-theme .pillars {
        background: #1a1a1a;
      }

      .dark-theme .team {
        background: #1a1a1a;
      }

      .dark-theme .section-title {
        color: #e0e0e0;
      }

      .dark-theme .about-text {
        color: #e0e0e0;
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: block;
        }

        .nav-menu {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background: white;
          flex-direction: column;
          padding: 1rem;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-menu.active {
          display: flex;
        }

        .dark-theme .nav-menu {
          background: #1a1a1a;
          border: 1px solid #444444;
        }

        .hero h1 {
          font-size: 2.5rem;
        }

        .hero .tagline {
          font-size: 1.1rem;
        }

        .section-title {
          font-size: 2rem;
        }

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

        .nav-container {
          padding: 0 1rem;
        }

        .container {
          padding: 0 1rem;
        }
      }