  /* ========================================
           CSS VARIABLES & RESET
           ======================================== */
  :root {
    --primary: #0D6E6E;
    --primary-light: #14919B;
    --primary-dark: #0A5555;
    --secondary: #F5E6D3;
    --accent: #E8505B;
    --accent-alt: #F9A826;
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease-in-out;
    --border-radius: 12px;
    --border-radius-sm: 8px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul {
    list-style: none;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ========================================
           FADE IN ANIMATION
           ======================================== */
  .fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========================================
           NAVIGATION
           ======================================== */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
  }

  .navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
  }

  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
  }

  .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
  }

  .navbar.scrolled .logo-text {
    color: var(--primary-dark);
  }

  .logo-text span {
    display: block;
    font-size: 0.7rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
  }

  .navbar.scrolled .nav-link {
    color: var(--text-primary);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-link:hover {
    color: var(--accent);
  }

  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    transition: var(--transition);
  }

  .dropdown-menu a:hover {
    background: var(--secondary);
    color: var(--primary);
  }

  .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
  }

  .mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 3px;
  }

  .navbar.scrolled .mobile-toggle span {
    background: var(--primary-dark);
  }

  /* ========================================
           MOBILE MENU
           ======================================== */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-primary);
  }

  .mobile-menu a {
    display: block;
    padding: 15px 0;
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }

  .mobile-menu a:hover {
    color: var(--primary);
    padding-left: 10px;
  }

  .mobile-dropdown {
    position: relative;
  }

  .mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
  }

  .mobile-dropdown-menu.active {
    display: block;
  }

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* ========================================
           HERO SECTION
           ======================================== */
  .hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 110, 110, 0.95), rgba(10, 85, 85, 0.85)),
      url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 200px 200px;
    opacity: 0.5;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out;
  }

  .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }

  .breadcrumb a {
    opacity: 0.8;
    transition: var(--transition);
  }

  .breadcrumb a:hover {
    opacity: 1;
    color: var(--accent);
  }

  .breadcrumb span {
    opacity: 0.6;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ========================================
           SECTION STYLES
           ======================================== */
  section {
    padding: 100px 0;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-header .subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .section-header h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    border-radius: 2px;
  }

  .section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
  }

  /* ========================================
           MISSION VISION CARDS
           ======================================== */
  .mv-section {
    background: var(--light-bg);
  }

  .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
  }

  .mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
  }

  .mv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: var(--white);
  }

  .mv-card h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
  }

  .mv-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    text-align: center;
    line-height: 1.8;
  }

  .mv-list {
    margin-top: 25px;
    text-align: left;
  }

  .mv-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
  }

  .mv-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
  }

  /* ========================================
           CORE VALUES
           ======================================== */
  .values-section {
    background: var(--white);
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .value-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
  }

  .value-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
  }

  .value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--white);
  }

  .value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
  }

  .value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
  }

  /* ========================================
           GOALS SECTION
           ======================================== */
  .goals-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
    overflow: hidden;
  }

  .goals-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 300px 300px;
    transform: rotate(30deg);
  }

  .goals-section .section-header h2,
  .goals-section .section-header p,
  .goals-section .section-header .subtitle {
    color: var(--white);
  }

  .goals-section .section-header h2::before {
    background: linear-gradient(90deg, var(--accent-alt), var(--white));
  }

  .goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .goal-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 10;
  }

  .goal-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
  }

  .goal-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .goal-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
  }

  .goal-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
  }

  /* ========================================
           CTA SECTION
           ======================================== */
  .cta-section {
    background: var(--accent);
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 200px 200px;
  }

  .cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
  }

  .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
  }

  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
  }

  .btn-white {
    background: var(--white);
    color: var(--accent);
  }

  .btn-white:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  /* ========================================
           FOOTER STYLES
           ======================================== */
  .footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 80px 0 30px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
  }

  .footer .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .footer .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer .logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
  }

  .footer .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
  }

  .footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
  }

  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
  }

  .footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    transition: var(--transition);
    font-size: 0.95rem;
  }

  .footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
  }

  .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
    line-height: 1.6;
  }

  .footer-contact svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-light);
    flex-shrink: 0;
    margin-top: 3px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
  }

  .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
  }

  /* ========================================
           BACK TO TOP
           ======================================== */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }

  .back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
  }

  /* ========================================
           RESPONSIVE STYLES
           ======================================== */
  @media (max-width: 1024px) {
    .values-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .goals-grid {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    section {
      padding: 60px 0;
    }

    .nav-links {
      display: none;
    }

    .mobile-toggle {
      display: flex;
    }

    .hero {
      height: 50vh;
      min-height: 350px;
    }

    .hero-content h1 {
      font-size: 2.5rem;
    }

    .section-header h2 {
      font-size: 2rem;
    }

    .mv-grid {
      grid-template-columns: 1fr;
    }

    .mv-card {
      padding: 40px 30px;
    }

    .values-grid {
      grid-template-columns: 1fr;
    }

    /* Footer Responsive */
    .footer {
      padding: 50px 0 25px;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 35px;
    }

    .footer-about {
      text-align: center;
    }

    .footer .logo {
      justify-content: center;
    }

    .footer-social {
      justify-content: center;
    }

    .footer-links h4,
    .footer-contact h4 {
      text-align: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .footer-links a {
      text-align: center;
    }

    .footer-contact p {
      justify-content: center;
      text-align: center;
    }

    .footer-bottom p {
      font-size: 0.85rem;
    }
  }

  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 2rem;
    }

    .hero-content p {
      font-size: 1rem;
    }

    .section-header h2 {
      font-size: 1.7rem;
    }

    .mv-card h3 {
      font-size: 1.6rem;
    }

    .cta-content h2 {
      font-size: 1.8rem;
    }

    .goal-card {
      padding: 25px;
    }
  }