    /* 1. Hero Section */
    .hero-section {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      padding: 70px 0 60px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .hero-shape-1 {
      position: absolute;
      top: -100px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-shape-2 {
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-image-wrap {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }

    .floating-stat {
      position: absolute;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 15px 25px;
      border-radius: 16px;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 15px;
      z-index: 5;
    }

    .fs-top-left {
      top: 20px;
      left: -30px;
      animation: floatY 4s ease-in-out infinite;
    }

    .fs-bottom-right {
      bottom: 30px;
      right: -30px;
      animation: floatY 5s ease-in-out infinite alternate;
    }

    @keyframes floatY {
      0% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-15px);
      }

      100% {
        transform: translateY(0px);
      }
    }

    /* General Utility */
    .bg-light-alt {
      background: var(--bg-body);
    }

    .bg-white-alt {
      background: var(--bg-card);
    }

    /* 2. Features List */
    .feature-list li {
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-secondary);
      font-weight: 500;
    }

    .feature-list li i {
      color: #10b981;
      font-size: 18px;
    }

    /* 3. Premium Timeline */
    .timeline {
      position: relative;
      padding: 40px 0;
      max-width: 1000px;
      margin: 0 auto;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, rgba(16, 185, 129, 0) 0%, rgba(16, 185, 129, 0.4) 15%, rgba(16, 185, 129, 0.4) 85%, rgba(16, 185, 129, 0) 100%);
      transform: translateX(-50%);
      border-radius: 4px;
    }

    .tl-item {
      margin-bottom: 50px;
      position: relative;
      width: 50%;
      padding: 0 45px;
      perspective: 1000px;
    }

    .tl-item:nth-child(odd) {
      left: 0;
      text-align: right;
    }

    .tl-item:nth-child(even) {
      left: 50%;
      text-align: left;
    }

    .tl-dot {
      position: absolute;
      width: 24px;
      height: 24px;
      background: #10b981;
      border: 4px solid var(--bg-card);
      border-radius: 50%;
      top: 20px;
      box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
      z-index: 2;
      transition: all 0.3s ease;
    }

    .tl-item:hover .tl-dot {
      transform: scale(1.3);
      box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.3), 0 0 15px rgba(16, 185, 129, 0.5);
    }

    .tl-item:nth-child(odd) .tl-dot {
      right: -12px;
    }

    .tl-item:nth-child(even) .tl-dot {
      left: -12px;
    }

    .tl-content {
      background: var(--bg-card);
      border: 1px solid rgba(0, 0, 0, 0.05);
      padding: 30px;
      border-radius: 20px;
      position: relative;
      width: 100%;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .tl-item:hover .tl-content {
      transform: translateY(-5px);
      box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
      border-color: rgba(16, 185, 129, 0.2);
    }

    /* Arrows */
    .tl-content::before {
      content: '';
      position: absolute;
      top: 24px;
      width: 0;
      height: 0;
      border-style: solid;
    }

    .tl-item:nth-child(odd) .tl-content::before {
      right: -12px;
      border-width: 12px 0 12px 12px;
      border-color: transparent transparent transparent var(--bg-card);
      filter: drop-shadow(2px 0 1px rgba(0, 0, 0, 0.05));
    }

    .tl-item:nth-child(even) .tl-content::before {
      left: -12px;
      border-width: 12px 12px 12px 0;
      border-color: transparent var(--bg-card) transparent transparent;
      filter: drop-shadow(-2px 0 1px rgba(0, 0, 0, 0.05));
    }

    .tl-year {
      display: inline-block;
      color: #fff;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 2px;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }

    @media (max-width: 768px) {
      .timeline::before {
        left: 30px;
      }
      .tl-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
        text-align: left !important;
      }
      .tl-item:nth-child(even), .tl-item:nth-child(odd) {
        left: 0;
      }
      .tl-item:nth-child(odd) .tl-dot, .tl-item:nth-child(even) .tl-dot {
        left: 18px;
        right: auto;
      }
      .tl-item:nth-child(odd) .tl-content::before, .tl-item:nth-child(even) .tl-content::before {
        left: -12px;
        right: auto;
        border-width: 12px 12px 12px 0;
        border-color: transparent var(--bg-card) transparent transparent;
        filter: drop-shadow(-2px 0 1px rgba(0, 0, 0, 0.05));
      }
    }

    /* 4. Glassmorphism Impact Counter */
    .impact-section {
      background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('../images/heroimg.png') center/cover fixed;
      padding: 100px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .counter-box {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 40px 20px;
      color: #fff;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .counter-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
      opacity: 0;
      transition: 0.4s;
    }

    .counter-box:hover {
      transform: translateY(-10px);
      border-color: rgba(16, 185, 129, 0.5);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.2);
    }

    .counter-box:hover::before {
      opacity: 1;
    }

    .counter-icon {
      font-size: 42px;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #34d399 0%, #059669 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      transition: 0.4s;
    }

    .counter-box:hover .counter-icon {
      transform: scale(1.1);
    }

    .counter-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 3rem;
      font-weight: 900;
      margin-bottom: 5px;
      color: #fff;
    }

    .counter-text {
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
      color: #94a3b8;
    }

    /* 5. Modern Core Values */
    .cv-card {
      background: var(--bg-card);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 24px;
      padding: 40px 30px;
      text-align: left;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      height: 100%;
      position: relative;
      overflow: hidden;
      z-index: 1;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    .cv-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
      z-index: -1;
      opacity: 0;
      transition: 0.4s;
    }

    .cv-card:hover {
      transform: translateY(-10px);
      border-color: transparent;
      box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    }

    .cv-card:hover::before {
      opacity: 1;
    }

    .cv-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      background: rgba(16, 185, 129, 0.1);
      color: #10b981;
      font-size: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 0 25px 0;
      transition: 0.4s;
      transform: rotate(-5deg);
    }

    .cv-card:hover .cv-icon {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
      transform: rotate(0deg) scale(1.1);
    }

    .cv-card h4 {
      transition: 0.4s;
    }
    
    .cv-card p {
      transition: 0.4s;
    }

    .cv-card:hover h4, .cv-card:hover p {
      color: #fff !important;
    }

    /* 6. What Makes Us Different */
    .diff-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .diff-item {
      background: var(--bg-card);
      border: 1px solid rgba(0, 0, 0, 0.05);
      padding: 20px 25px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 15px;
      font-weight: 700;
      color: var(--text-primary);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
      position: relative;
      overflow: hidden;
    }
    
    .diff-item::before {
      content: '';
      position: absolute;
      left: 0; top: 0; height: 100%; width: 4px;
      background: #10b981;
      transition: 0.4s;
    }

    .diff-item:hover {
      transform: translateX(10px);
      box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1);
      border-color: rgba(16, 185, 129, 0.2);
    }
    
    .diff-item:hover::before {
      width: 100%;
      opacity: 0.1;
    }

    .diff-item i {
      color: #10b981;
      font-size: 24px;
      transition: 0.4s;
    }

    .diff-item:hover i {
      transform: scale(1.2);
    }

    /* 7. Working Process */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      position: relative;
    }
    
    .process-grid::before {
       content: '';
       position: absolute;
       top: 50px; left: 10%; right: 10%; height: 2px;
       background: rgba(59, 130, 246, 0.2);
       z-index: 1;
    }

    .process-card {
      background: var(--bg-card);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 20px;
      padding: 40px 20px 30px;
      text-align: center;
      position: relative;
      z-index: 2;
      transition: all 0.4s;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }

    .process-card:hover {
      transform: translateY(-10px);
      border-color: rgba(59, 130, 246, 0.3);
      box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    }

    .process-step-num {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 900;
      margin: 0 auto 20px;
      box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
      border: 4px solid var(--bg-card);
      position: relative;
      z-index: 3;
      transition: 0.4s;
    }
    
    .process-card:hover .process-step-num {
      transform: scale(1.1) rotate(10deg);
    }

    /* 8. Leadership */
    .leader-card {
      background: var(--bg-card);
      border: 1px solid rgba(0,0,0,0.05);
      border-radius: 20px;
      overflow: hidden;
      text-align: center;
      transition: all 0.4s;
      position: relative;
    }

    .leader-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      border-color: rgba(16,185,129,0.3);
    }

    .leader-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: 0.4s;
    }
    
    .leader-card:hover .leader-img {
       transform: scale(1.05);
    }

    .leader-info {
      padding: 20px;
      position: relative;
      background: var(--bg-card);
    }

    .leader-social {
      margin-top: 15px;
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .leader-social a {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.1);
      color: #10b981;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: 0.3s;
    }

    .leader-social a:hover {
      background: #10b981;
      color: #fff;
    }

    /* 9. Departments */
    .dept-card {
      display: flex;
      align-items: center;
      gap: 20px;
      background: var(--bg-card);
      border: 1px solid rgba(0,0,0,0.05);
      padding: 20px 25px;
      border-radius: 16px;
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    }
    
    .dept-card::after {
      content: '';
      position: absolute;
      right: -20px; top: -20px; width: 60px; height: 60px;
      background: rgba(245, 158, 11, 0.1);
      border-radius: 50%;
      transition: 0.4s;
    }

    .dept-card:hover {
      border-color: #f59e0b;
      transform: translateX(5px);
      box-shadow: 0 15px 30px rgba(245, 158, 11, 0.1);
    }
    
    .dept-card:hover::after {
       transform: scale(3);
    }

    .dept-icon {
      font-size: 32px;
      color: #f59e0b;
      position: relative;
      z-index: 2;
    }

    /* 10. Achievements */
    .award-card {
      text-align: center;
      padding: 40px 20px;
      background: var(--bg-card);
      border: 1px solid rgba(0,0,0,0.05);
      border-radius: 16px;
      transition: 0.4s;
      box-shadow: 0 5px 15px rgba(0,0,0,0.02);
      position: relative;
    }
    
    .award-card::before {
      content: '';
      position: absolute; left: 50%; bottom: 0; width: 0; height: 3px;
      background: #fbbf24;
      transition: 0.4s;
      transform: translateX(-50%);
    }

    .award-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(251, 191, 36, 0.1);
    }
    
    .award-card:hover::before {
      width: 100%;
    }

    .award-card i {
      font-size: 48px;
      color: #fbbf24;
      margin-bottom: 20px;
    }

    /* 11. Success Stories */
    .story-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      overflow: hidden;
    }

    .story-img-split {
      display: flex;
      height: 200px;
    }

    .story-img-split div {
      flex: 1;
      position: relative;
    }

    .story-img-split img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .story-label {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 2px 10px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: bold;
    }

    /* 12. Photo Gallery Preview */
    .gallery-masonry {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
    }

    .gal-item {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      height: 200px;
    }

    .gal-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.4s;
    }

    .gal-item:hover img {
      transform: scale(1.1);
    }

    .gal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      transition: 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 24px;
    }

    .gal-item:hover .gal-overlay {
      opacity: 1;
    }

    /* 13. Partners Slider */
    .partners-wrap {
      display: flex;
      gap: 30px;
      overflow: hidden;
      padding: 20px 0;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .partner-logo {
      font-size: 30px;
      font-weight: bold;
      color: var(--text-secondary);
      opacity: 0.5;
      transition: 0.3s;
      white-space: nowrap;
    }

    .partner-logo:hover {
      opacity: 1;
      color: var(--text-primary);
    }

    /* 14. Testimonials */
    .testimonial-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 30px;
      position: relative;
    }

    .quote-icon {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 40px;
      color: rgba(16, 185, 129, 0.1);
    }

    /* 15. Certifications */
    .cert-card {
      display: flex;
      align-items: center;
      gap: 15px;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 15px 20px;
      border-radius: 12px;
    }

    .cert-card i {
      color: #10b981;
      font-size: 24px;
    }

    /* 16. Annual Reports */
    .report-card {
      background: var(--bg-card);
      border: 1px dashed var(--border-color);
      border-radius: 12px;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: 0.3s;
    }

    .report-card:hover {
      border-color: #3b82f6;
      background: rgba(59, 130, 246, 0.05);
    }

    .report-card i {
      font-size: 24px;
      color: #ef4444;
    }

    /* 17. FAQ */
    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid rgba(0,0,0,0.05);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(0,0,0,0.02);
      cursor: pointer;
    }

    .faq-item:hover {
      border-color: rgba(16,185,129,0.3);
      transform: translateX(5px);
    }

    .faq-header {
      padding: 20px 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
    }

    .faq-header h4 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-primary);
    }

    .faq-icon {
      color: #10b981;
      font-size: 18px;
      transition: transform 0.4s;
      background: rgba(16,185,129,0.1);
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      background: rgba(16,185,129,0.03);
    }

    .faq-body-inner {
      padding: 0 25px 20px 25px;
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .faq-item.open {
      border-color: #10b981;
      box-shadow: 0 10px 30px rgba(16,185,129,0.1);
    }
    
    .faq-item.open .faq-icon {
      background: #10b981;
      color: #fff;
      transform: rotate(180deg);
    }

    .faq-item.open .faq-body {
      max-height: 300px;
    }

    /* 18. Final CTA */
    .final-cta {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: #fff;
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-shapes {
      position: absolute;
      inset: 0;
      opacity: 0.1;
      background: repeating-linear-gradient(45deg, transparent, transparent 10px, #fff 10px, #fff 20px);
    }

    /* Responsive Timeline */
    @media (max-width: 768px) {
      .timeline::before {
        left: 20px;
      }

      .tl-item {
        width: 100%;
        padding-left: 50px !important;
        text-align: left !important;
      }

      .tl-item:nth-child(even),
      .tl-item:nth-child(odd) {
        left: 0;
      }

      .tl-item:nth-child(even) .tl-dot,
      .tl-item:nth-child(odd) .tl-dot {
        left: 10px;
        right: auto;
      }

      .process-grid {
        grid-template-columns: 1fr;
      }

      .diff-list {
        grid-template-columns: 1fr;
      }
    }
