
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

   :root {
      --primary: #800000;
      --primary-light: #a04545;
      --secondary: #6b2d2d;
      --accent: #a52a2a;
      --dark: #330000;
      --soft-bg: rgba(254, 248, 242, 0.94);
      --shadow: 0 8px 20px rgba(100, 30, 0, 0.12);
      --nav-bg: rgb(238, 219, 219);
      --dropdown-bg: #ffffff;
    }
    body {
      background: var(--soft-bg);
      font-family: 'Times New Roman', Times, serif;
      line-height: 1.6;
      color: #333;
    }

    .container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
      
    }
    /* NAVBAR with beautiful background color */
    .navbar {
      background: var(--nav-bg);
      box-shadow: var(--shadow);
      padding: 0.5rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;

    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: clamp(1.2rem, 4vw, 1.8rem);
        color: var(--primary);
    }

    .logo-img {
      height: 50px;
      width: auto;
      border-radius: 8px;
      background: white;
      padding: 3px;
    }

    .menu-icon {
      display: none;
      font-size: 2.4rem;
      color: var(--primary);
      cursor: pointer;
      padding: 0.5rem 1rem;
      transition: transform 0.2s;
    }

    .menu-icon:hover {
      transform: scale(1.05);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .nav-link {
      font-size: 1rem;
      padding: 0.7rem 1.3rem;
      border-radius: 40px;
       color: var(--dark);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.3s;
      font-weight: 500;
    }

    .nav-link:hover {
      background: rgba(128,0,0,0.08);
       transform: translateY(-2px);
    }

    .nav-link.active-home {
      background: var(--primary);
      color: white !important;
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    /* Dropdown styles */
    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-link-wrapper {
      display: flex;
      align-items: center;
      background: transparent;
      border-radius: 40px;
      overflow: hidden;
    }

    .dropdown-text {
      font-size: 1rem;
      padding: 0.7rem 0.5rem 0.7rem 1.3rem;
      color: var(--dark);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 500;
    }

    .dropdown-text:hover {
      background: rgba(128,0,0,0.08);
    }

    .dropdown-icon {
      font-size: 1rem;
      padding: 0.7rem 1.3rem 0.7rem 0.5rem;
      color: var(--dark);
      background: transparent;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
    }

    .dropdown-icon i {
      font-size: 0.7rem;
      transition: transform 0.2s;
    }

    .dropdown.active .dropdown-icon i {
      transform: rotate(180deg);
    }
 .dropdown-icon:hover {
      background: rgba(128,0,0,0.08);
    }
    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 240px;
      background: var(--dropdown-bg);
      border-radius: 20px;
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
      padding: 0.8rem 0;
      z-index: 1000;
      margin-top: 5px;
      border: 1px solid #f0e0e0;
    }

    .dropdown.active .dropdown-content {
      display: block;
    }

    .dropdown-content a {
      color: var(--dark);
      padding: 0.8rem 1.8rem;
      text-decoration: none;
      display: block;
      transition: all 0.2s;
    }

    .dropdown-content a:hover {
      background: #f0e6e0;
      color: var(--primary);
      padding-left: 2rem;
    }

    .btn {
      padding: 0.7rem 1.6rem;
      border-radius: 60px;
      background: linear-gradient(135deg, #ffb347, #ff8c1a);
      color: #2d1b0c;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-left: 0.3rem;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: all 0.3s;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
      background: linear-gradient(135deg, #ffc26b, #ffa133);
    }

    /* ===== MOBILE STYLES ===== */
    @media (max-width: 900px) {
      .menu-icon {
        display: block;
        color: maroon;
      }

      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--nav-bg);
        padding: 1.5rem;
        border-radius: 30px;
        margin-top: 1rem;
      }

      .nav-links.show {
        display: flex;
      }

      .dropdown {
        width: 100%;
        margin-bottom: 0.5rem;
      }

      .dropdown-link-wrapper {
        width: 100%;
        background: rgba(128,0,0,0.04);
        border-radius: 60px;
      }

      .dropdown-text {
        flex: 1;
        padding: 1rem;
        font-size: 1.1rem;
      }

      .dropdown-icon {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
      }

      .dropdown-content {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        box-shadow: none !important;
      }

      .dropdown-content a {
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
        border-bottom: 1px solid #f0e0e0;
      }

      .dropdown-content a:last-child {
        border-bottom: none;
      }

      .nav-link {
        width: 100%;
        padding: 1rem;
        background: rgba(128,0,0,0.03);
        border-radius: 60px;
        margin-bottom: 0.5rem;
      }

      .btn {
        width: 100%;
        margin-left: 0;
        justify-content: center;
        padding: 1rem;
      }
    }

    /* HERO SECTION */
    .hero {
     position: relative;
      height: 90vh;
      min-height: 600px;
      overflow: hidden;
    }
.slideshow-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
    }
    .slide.active {
      opacity: 1;
    }

    .slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(128,0,0,0.6) 100%);
    }

    .hero-content-wrapper {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
      color: white;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      width: 100%;
    }

    .hero-content {
      color: white;
    }

    .hero-content h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      margin-bottom: 1.5rem;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .hero-highlight {
     background: var(--primary);
      padding: 0.6rem 1.8rem;
      border-radius: 60px;
      display: inline-block;
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      font-weight: 600;
    }
.hero-content p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      line-height: 1.6;
    }
    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .hero-buttons .btn {
      margin-left: 0;
      font-size: 1.1rem;
      padding: 1rem 2rem;
    }

    .hero-image {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(12px);
      border-radius: 3rem;
      padding: 3rem 2rem;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .hero-image i {
      font-size: 8rem;
      color: white;
      margin-bottom: 1.5rem;
    }

    .slide-dots {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 1rem;
      z-index: 3;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all 0.3s;
    }

    .dot.active {
      background: var(--primary);
      width: 30px;
      border-radius: 10px;
    }
.mission p {
      font-size: 1.4rem;
      max-width: 900px;
      margin: 0 auto;
      color: var(--dark);
      line-height: 1.8;
    }

    .mission {
     background: white;
     border-radius: 3rem;
     padding: 4rem 3rem;
     margin: 4rem auto;
     text-align: center;
     box-shadow: var(--shadow)
    
    }
/* Section Titles */
    .section-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      color: var(--primary);
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
    }

    

   /* Cards Grid */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .card {
      background: white;
      border-radius: 2rem;
      padding: 2.5rem;
      box-shadow: var(--shadow);
      transition: transform 0.3s, box-shadow 0.3s;
      text-align: center;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .card i {
      font-size: 3.5rem;
      color: var(--secondary);
      margin-bottom: 1.5rem;
    }

    .card h3 {
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

      /* Stats Section */
    .stats-section {
      background: rgba(255,255,255,0.1);
      color: maroon;
      padding: 5rem 0;
      border-radius: 4rem;
      margin: 3rem 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
      text-align: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 1.1rem;
      opacity: 0.9;
    }

   /* Projects Showcase */
    .projects-showcase {
      background: var(--primary);
      color: white;
      padding: 5rem 0;
      border-radius: 4rem 4rem 0 0;
      margin-top: 3rem;
    }

    .project-items {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-top: 2rem;
    }

    .project-item {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      border-radius: 2.5rem;
      padding: 2.5rem;
      flex: 1 1 280px;
      max-width: 350px;
      text-align: center;
      transition: transform 0.3s;
    }

    .project-item:hover {
      transform: translateY(-5px);
      background: rgba(255,255,255,0.25);
    }

    .project-item i {
      font-size: 3.5rem;
      margin-bottom: 1rem;
    }

    .project-item h4 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

     /* Core Values */
    .values-section {
      padding: 5rem 0;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .value-card {
      background: white;
      border-radius: 2rem;
      padding: 2rem;
      text-align: center;
      box-shadow: var(--shadow);
      transition: all 0.3s;
    }

    .value-card:hover {
      transform: translateY(-5px);
    }

    .value-card i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .value-card h4 {
      color: var(--primary);
      font-size: 1.3rem;
    }

/* ===== CONTACT PAGE STYLES ===== */
    .page-header {
      background: linear-gradient(rgba(128,0,0,0.9), rgba(128,0,0,0.8)), url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'800\' height=\'400\' viewBox=\'0 0 800 400\'%3E%3Crect width=\'800\' height=\'400\' fill=\'%23800000\'/%3E%3Ccircle cx=\'400\' cy=\'200\' r=\'100\' fill=\'%23a04545\' opacity=\'0.3\'/%3E%3C/svg%3E');
      background-size: cover;
      color: white;
      padding: 4rem 0;
      text-align: center;
      border-bottom-left-radius: 4rem;
      border-bottom-right-radius: 4rem;
    }

    .page-header h1 {
      font-size: clamp(2.5rem, 6vw, 4rem);
      margin-bottom: 1rem;
    }

    .page-header p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
    }

    .contact-section {
      padding: 5rem 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    /* Contact Info Cards */
    .contact-info {
      background: white;
      border-radius: 3rem;
      padding: 3rem;
      box-shadow: var(--shadow);
    }

    .contact-info h2 {
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 2rem;
      position: relative;
    }

    .contact-info h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
    }

    .info-card {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: var(--soft-bg);
      border-radius: 2rem;
      transition: transform 0.3s;
    }

    .info-card:hover {
      transform: translateY(-5px);
    }

    .info-icon {
      width: 60px;
      height: 60px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      flex-shrink: 0;
    }

    .info-content h3 {
      color: var(--primary);
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
    }

    .info-content p {
      color: #666;
      line-height: 1.8;
    }

    .info-content a {
      color: #666;
      text-decoration: none;
      transition: color 0.2s;
    }

    .info-content a:hover {
      color: var(--primary);
    }

    /* Registration Details */
    .registration-details {
      margin-top: 2rem;
      padding: 2rem;
      background: rgba(128,0,0,0.03);
      border-radius: 2rem;
      border: 1px solid rgba(128,0,0,0.1);
    }

    .registration-details h3 {
      color: var(--primary);
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    .registration-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
      padding: 0.8rem;
      background: white;
      border-radius: 1rem;
    }

    .registration-item i {
      color: var(--primary);
      font-size: 1.2rem;
      width: 24px;
    }

    /* Contact Form */
    .contact-form {
      background: white;
      border-radius: 3rem;
      padding: 3rem;
      box-shadow: var(--shadow);
    }

    .contact-form h2 {
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 2rem;
      position: relative;
    }

    .contact-form h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--dark);
      font-weight: 600;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 1rem;
      border: 2px solid #eee;
      border-radius: 60px;
      font-family: inherit;
      font-size: 1rem;
      transition: all 0.3s;
      background: var(--soft-bg);
    }

    .form-group textarea {
      border-radius: 30px;
      resize: vertical;
      min-height: 120px;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--primary);
      background: white;
    }

    .form-group input:hover,
    .form-group textarea:hover,
    .form-group select:hover {
      border-color: var(--primary-light);
    }

    .submit-btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: 60px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .submit-btn:hover {
      background: #9e3a3a;
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(128,0,0,0.3);
    }

    /* Map Section */
    .map-section {
      padding: 3rem 0 5rem;
    }

    .map-container {
      background: white;
      border-radius: 3rem;
      padding: 2rem;
      box-shadow: var(--shadow);
    }

    .map-container h2 {
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    .map-placeholder {
      background: var(--soft-bg);
      border-radius: 2rem;
      padding: 3rem;
      text-align: center;
      border: 2px dashed var(--primary);
    }

    .map-placeholder i {
      font-size: 4rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .map-placeholder p {
      color: #666;
      font-size: 1.1rem;
    }

    
   /* Founder Story Section - FIXED CIRCLE IMAGE */
    .founder-story-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, #fff8f0 0%, #fff0e6 100%);
      border-radius: 4rem;
      margin: 3rem 0;
    }

    .founder-story-container {
      display: flex;
      align-items: center;
      gap: 4rem;
      flex-wrap: wrap;
    }

    .founder-image-wrapper {
      flex: 0 0 280px;
      text-align: center;
    }

    /* FIXED: Image fully covers the circle */
    .founder-circle-img {
      width: 250px;
      height: 250px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center;
      border: 8px solid var(--primary);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
      transition: transform 0.3s;
      display: block;
    }

    .founder-circle-img:hover {
      transform: scale(1.02);
    }

    .founder-story-content {
      flex: 1;
    }

    .founder-story-content h2 {
      color: var(--primary);
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    .founder-name {
      font-size: 1.3rem;
      color: var(--secondary);
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .founder-story-excerpt {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #444;
      margin-bottom: 1.5rem;
    }

    .story-quote {
      background: rgba(128,0,0,0.05);
      padding: 1.5rem;
      border-left: 4px solid var(--primary);
      border-radius: 1rem;
      margin: 1.5rem 0;
      font-style: italic;
      font-size: 1rem;
    }

    .read-more-btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: 60px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s;
      text-decoration: none;
    }

    .read-more-btn:hover {
      background: #9e3a3a;
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(128,0,0,0.3);
    }

    /* About Page Hero */
        .about-hero {
            position: relative;
            height: 60vh;
            min-height: 400px;
            background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
        }
        
        .about-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        
        .about-hero-content {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 20px;
        }
        
        .breadcrumb li {
            margin: 0 10px;
            position: relative;
        }
        
        .breadcrumb li:after {
            content: '/';
            position: absolute;
            right: -15px;
        }
        
        .breadcrumb li:last-child:after {
            display: none;
        }
        
        .breadcrumb a {
            color: var(--accent-gold);
            transition: all 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: var(--white);
        }
        
        /* Mission Section */
        .mission {
            padding: 80px 0;
            background-color: var(--light-beige);
        }
        
        .mission-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .mission-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .mission-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .mission-content h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .mission-content h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--accent-gold);
            bottom: 0;
            left: 0;
        }
        
        .mission-content p {
            margin-bottom: 20px;
        }
        
        .mission-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .stat-item {
            background: var(--white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 5px;
        }
        
        /* History Section */
        .history {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 0;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            width: 3px;
            background: var(--accent-gold);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1.5px;
        }
        
        .timeline-item {
            padding: 20px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 20px;
            background: var(--light-beige);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .timeline-content:after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--accent-gold);
            top: 30px;
            border-radius: 50%;
        }
        
        .timeline-item:nth-child(odd) .timeline-content:after {
            right: -10px;
        }
        
        .timeline-item:nth-child(even) .timeline-content:after {
            left: -10px;
        }
        
        .timeline-date {
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }
        
        /* Team Section */
        .team {
            padding: 80px 0;
            background-color: var(--light-beige);
            text-align: center;
        }
        
        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .team-member {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .member-img {
            height: 250px;
            overflow: hidden;
        }
        
        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-member:hover .member-img img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 20px;
        }
        
        .member-name {
            font-size: 1.3rem;
            color: var(--primary-green);
            margin-bottom: 5px;
        }
        
        .member-position {
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .member-bio {
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .member-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: var(--light-beige);
            border-radius: 50%;
            color: var(--primary-green);
            transition: all 0.3s ease;
        }
        
        .member-social a:hover {
            background: var(--accent-gold);
            color: var(--white);
        }
        
        /* Partners Section */
        .partners {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .partners-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-top: 50px;
        }
        
        .partner-logo {
            height: 80px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* CTA Section */
        .about-cta {
            padding: 80px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x600') center/cover no-repeat;
            color: var(--white);
            text-align: center;
        }
        
        .about-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .about-cta p {
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        /* ========== HERO SECTION ========== 
           Hero with image that FILLS the entire section completely */
        .hero {
            /* Full viewport height hero - dramatic and immersive */
            min-height: 85vh;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            
            /* BACKGROUND IMAGE - FILLS THE WHOLE SECTION (cover) */
            background-image: url('images/sponsers.jpg');
            background-size: cover;      /* Image fills entire section - covers all space */
            background-position: center center;
            background-repeat: no-repeat;
            
            /* Fallback color while image loads */

            
            position: relative;
            isolation: isolate;
        }
        
        /* Semi-transparent overlay to improve text readability - keeps image fully visible but adds contrast */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
            z-index: 1;
            pointer-events: none;
        }
        
        /* Hero content wrapper - centers content beautifully above overlay */
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 4rem 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
            width: 100%;
        }
        
        /* Main heading - bold, inspiring, with strong text shadow */
        .hero h1 {
            font-size: 5rem;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7), 0 2px 5px rgba(0, 0, 0, 0.5);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out;
        }
        
        /* Hero description - elegant and readable */
        .hero .hero-description {
            font-size: 1.5rem;
            max-width: 780px;
            margin: 0 auto;
            color: #ffffff;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
            font-weight: 500;
            line-height: 1.5;
            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(8px);
            padding: 1rem 2rem;
            border-radius: 80px;
            display: inline-block;
            width: auto;
            letter-spacing: 0.01em;
            border: 1px solid rgba(255, 255, 255, 0.25);
            animation: fadeInUp 0.8s ease-out 0.1s both;
        }
        
        /* Decorative element - warm underline */
        .hero h1:after {
            content: '';
            display: block;
            width: 90px;
            height: 4px;
            background: linear-gradient(90deg, #f5b042, #e67e22);
            margin: 1.2rem auto 0;
            border-radius: 4px;
            box-shadow: 0 1px 6px rgba(0,0,0,0.3);
        }
        
        /* CTA button to enhance hero section */
        .hero-cta {
            margin-top: 2.5rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .hero-cta .btn {
            display: inline-block;
            background: #f5b042;
            color: #1e2a23;
            font-weight: 700;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            border: none;
            cursor: pointer;
            letter-spacing: 0.5px;
        }
        
        .hero-cta .btn:hover {
            background: #e67e22;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive hero adjustments */
        @media (max-width: 992px) {
            .hero {
                min-height: 75vh;
            }
            .hero h1 {
                font-size: 3.8rem;
            }
            .hero .hero-description {
                font-size: 1.3rem;
                padding: 0.8rem 1.6rem;
                backdrop-filter: blur(6px);
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                min-height: 70vh;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero .hero-description {
                font-size: 1.1rem;
                padding: 0.7rem 1.2rem;
                backdrop-filter: blur(5px);
                background: rgba(0, 0, 0, 0.4);
            }
            .hero h1:after {
                width: 70px;
                height: 3px;
            }
            .hero-cta .btn {
                padding: 0.7rem 1.6rem;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero {
                min-height: 65vh;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero .hero-description {
                font-size: 0.95rem;
                padding: 0.6rem 1rem;
            }
            .hero-content {
                padding: 2rem 1rem;
            }
        }
    /* STORY CONTENT */
    .story-container {
      background: white;
      border-radius: 3rem;
      padding: 3rem;
      margin: 2rem auto;
      box-shadow: var(--shadow);
    }

    .founder-profile {
      display: flex;
      gap: 3rem;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 2px solid #f0e0e0;
    }

    .founder-image-large {
      flex: 0 0 250px;
    }

    .founder-circle-large {
      width: 250px;
      height: 250px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center;
      border: 8px solid var(--primary);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .founder-info {
      flex: 1;
    }

    .founder-info h2 {
      color: var(--primary);
      font-size: 2.2rem;
      margin-bottom: 0.5rem;
    }

    .founder-title {
      font-size: 1.2rem;
      color: var(--secondary);
      margin-bottom: 1rem;
      font-style: italic;
    }

    .founder-bio {
      color: #555;
      line-height: 1.8;
    }

    .story-section {
      margin-bottom: 2.5rem;
    }

    .story-section h3 {
      color: var(--primary);
      font-size: 1.8rem;
      margin-bottom: 1rem;
      display: inline-block;
      position: relative;
    }

    .story-section h3::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--secondary);
      border-radius: 2px;
    }

    .story-section p {
      margin-bottom: 1.2rem;
      line-height: 1.9;
      font-size: 1.05rem;
      color: #444;
    }

    .story-quote-large {
      background: rgba(128,0,0,0.05);
      padding: 2rem;
      border-left: 5px solid var(--primary);
      border-radius: 1.5rem;
      margin: 2rem 0;
      font-style: italic;
      font-size: 1.2rem;
      color: var(--dark);
    }

    .story-quote-large i {
      color: var(--primary);
      font-size: 2rem;
      margin-right: 1rem;
      opacity: 0.5;
    }

    .highlight-box {
      background: linear-gradient(135deg, #fff5eb 0%, #ffe8dc 100%);
      padding: 2rem;
      border-radius: 1.5rem;
      margin: 2rem 0;
      text-align: center;
    }

    .highlight-box h4 {
      color: var(--primary);
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }

    .highlight-box p {
      margin-bottom: 0;
    }

    .stats-mini {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 2rem;
      margin: 2rem 0;
      padding: 2rem;
      background: var(--primary);
      border-radius: 2rem;
      color: white;
    }

    .stat-mini-item {
      text-align: center;
    }

    .stat-mini-number {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .stat-mini-label {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    .timeline {
      margin: 2rem 0;
      position: relative;
      padding-left: 2rem;
    }

    .timeline-item {
      position: relative;
      padding-left: 2rem;
      margin-bottom: 2rem;
      border-left: 2px solid var(--primary);
    }

    .timeline-year {
      font-weight: 700;
      color: var(--primary);
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .timeline-content {
      color: #555;
    }
    /* Call to Action */
    .cta-section {
      background: var(--primary);
      color: white;
      padding: 4rem;
      border-radius: 2rem;
      text-align: center;
      margin: 3rem 0;
    }

    .cta-section h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .cta-section p {
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-btn {
      background: white;
      color: var(--primary);
      padding: 1rem 2rem;
      border-radius: 60px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
    }

    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .cta-btn-outline {
      background: transparent;
      border: 2px solid white;
      color: white;
    }

    .cta-btn-outline:hover {
      background: white;
      color: var(--primary);
    }


        
        /* Footer (same as homepage) */
        footer {
            background-color: var(--primary-green);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .mission-container {
                grid-template-columns: 1fr;
            }
            
            .mission-img {
                order: -1;
            }
            
            .timeline:before {
                left: 30px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 20px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-content:after {
                left: 20px !important;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .mission-stats {
                grid-template-columns: 1fr;
            }
            
            .cta-btns {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 576px) {
            .about-hero {
                height: 50vh;
                min-height: 300px;
            }
            
            .about-hero h1 {
                font-size: 2rem;
            }
            
            .breadcrumb {
                flex-wrap: wrap;
            }
            
            .breadcrumb li {
                margin: 5px;
            }
            
            .breadcrumb li:after {
                display: none;
            }
        }
        
    /* Footer */
    .footer {
      background: var(--dark);
      color: #ddddcc;
      padding: 4rem 0 2rem;
  
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .footer h4 {
      color: white;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .footer a {
      color: #e0b0b0;
      text-decoration: none;
      display: block;
      margin-bottom: 0.5rem;
    }

    .footer a:hover {
      color: white;
    }

    .footer i {
      margin-right: 8px;
      width: 20px;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #5f4b4b;
    }

    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: var(--primary);
      color: white;
      padding: 1rem 1.5rem;
      border-radius: 60px;
      text-decoration: none;
      z-index: 99;
      display: flex;
      align-items: center;
      gap: 8px;
       transition: all 0.3s;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }
.back-to-top:hover {
      background: #9e3a3a;
      transform: translateY(-3px);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .contact-info, .contact-form {
        padding: 2rem;
      }

      .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .info-icon {
        margin: 0 auto;
      }

      .contact-info h2::after,
      .contact-form h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
      }

      .contact-info h2,
      .contact-form h2 {
        text-align: center;
      }

      .page-header {
        padding: 3rem 0;
      }

      .page-header h1 {
        font-size: 2.2rem;
      }

      .page-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
      }
    }

    @media (max-width: 480px) {
      .registration-item {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
      }

      .registration-item i {
        margin: 0 auto;
      }

      .map-placeholder {
        padding: 2rem 1rem;
      }
    }
/* Footer */
    .footer {
      background: var(--dark);
      backdrop-filter: blur(5px);
      color: #f0e2d4;
      padding: 3.5rem 0 2rem;
      margin-top: 1rem;
      border-top: 1px solid rgba(255, 200, 150, 0.3);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    .footer h4 {
      color: white;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }
    .footer a {
      color: #e0b0b0;
      text-decoration: none;
      display: block;
      margin-bottom: 0.5rem;
    }
    .footer a:hover {
      color: white;
      transform: translateX(5px);
    }
    .footer-bottom {
      text-align: center;
      padding-top: 1.8rem;
      border-top: 1px solid #5f4b4b;
    }
    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: var(--primary);
      color: white;
      padding: 0.8rem 1.3rem;
      border-radius: 60px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
     transition: all 0.3s;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
      z-index: 99;
      font-weight: bold;
    }
    .back-to-top:hover {
      background: #9e3a3a;
      transform: translateY(-5px);
    }


    @media (max-width: 768px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }
      .hero {
        height: auto;
        min-height: 650px;
        padding: 2rem 0;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-image {
        display: none;
      }
.mission p {
        font-size: 1.2rem;
      }

      .section-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
      }

      .section-title {
        text-align: center;
        display: block;
      }

      .stats-grid {
        gap: 2rem;
      }

      .stat-number {
        font-size: 2.5rem;
      }
    }
    
