
    :root {
      --primary-blue: #2563eb;
      --primary-blue-hover: #1d4ed8;
      --secondary-blue: #3b82f6;
      --light-blue: #eff6ff;
      --accent-orange: #f59e0b;
      --accent-green: #10b981;
      --text-dark: #1f2937;
      --text-gray: #6b7280;
      --text-light: #9ca3af;
      --white: #ffffff;
      --light-gray: #f9fafb;
      --border-color: #e5e7eb;
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

    * {
      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;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      line-height: 1.3;
    }

    /* Smooth scrolling */
    html {
      scroll-behavior: smooth;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--light-gray);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--primary-blue);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-blue-hover);
    }

    /* Navigation */
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-color);
      transition: all 0.3s ease;
      padding: 1rem 0;
    }

    .navbar.scrolled {
      background: var(--white);
      box-shadow: var(--shadow);
      padding: 0.5rem 0;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--primary-blue) !important;
      text-decoration: none;
    }

    .navbar-brand img {
      height: 50px;
      margin-right: 0.75rem;
      transition: transform 0.3s ease;
    }

    .navbar-brand:hover img {
      transform: scale(1.05);
    }

    .navbar-nav .nav-link {
      color: var(--text-dark) !important;
      font-weight: 500;
      padding: 0.5rem 1rem !important;
      margin: 0 0.25rem;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--primary-blue) !important;
      background: var(--light-blue);
    }

    .navbar-toggler {
      border: none;
      padding: 0.25rem 0.5rem;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .contact-icons {
      display: flex;
      gap: 0.75rem;
      margin-right: 1rem;
    }

    .contact-icons a {
      width: 40px;
      height: 40px;
      background: var(--light-blue);
      color: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .contact-icons a:hover {
      background: var(--primary-blue);
      color: var(--white);
      transform: translateY(-2px);
    }

    .btn-cta {
      background: var(--primary-blue);
      color: var(--white);
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-cta:hover {
      background: var(--primary-blue-hover);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-outline {
      background: transparent;
      color: var(--primary-blue);
      border: 2px solid var(--primary-blue);
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-outline:hover {
      background: var(--primary-blue);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-success {
      background: var(--accent-green);
      color: var(--white);
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-success:hover {
      background: #059669;
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      background:  linear-gradient(135deg, rgba(0,0,0,0.6), rgba(30,30,30,0.4)), 
                  url(/assets/images/about2.webp) center/cover no-repeat;
      display: flex;
      align-items: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(166, 169, 156, 0.1));
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero p {
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      margin-bottom: 2rem;
      opacity: 0.95;
    }

    /* Sections */
    .section {
      padding: 5rem 0;
    }

    .section-alt {
      background: var(--light-gray);
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--text-dark);
      margin-bottom: 1rem;
    }

    .section-title p {
      font-size: 1.1rem;
      color: var(--text-gray);
      max-width: 600px;
      margin: 0 auto;
    }

    /* Story Section */
    .story-content {
      display: flex;
      align-items: center;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .story-image {
      flex: 1;
      position: relative;
    }

    .story-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      transition: transform 0.3s ease;
    }

    .story-image:hover img {
      transform: scale(1.02);
    }

    .story-text {
      flex: 1;
    }

    .story-text h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--text-dark);
    }

    .story-text p {
      font-size: 1.1rem;
      color: var(--text-gray);
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    /* Who We Are Section */
    .who-we-are {
      background: var(--light-gray);
    }

    .who-content {
      display: flex;
      align-items: flex-start;
      gap: 3rem;
    }

    .who-text {
      flex: 1;
    }

    .who-text h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--text-dark);
    }

    .who-list {
      list-style: none;
      counter-reset: item-counter;
    }

    .who-list li {
      counter-increment: item-counter;
      margin-bottom: 2rem;
      padding-left: 3rem;
      position: relative;
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text-gray);
    }

    .who-list li::before {
      content: counter(item-counter);
      position: absolute;
      left: 0;
      top: 0;
      width: 35px;
      height: 35px;
      background: var(--primary-blue);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .who-list li strong {
      color: var(--text-dark);
      font-weight: 600;
    }

    .who-image {
      flex: 1;
    }

    .who-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      transition: transform 0.3s ease;
    }

    .who-image:hover img {
      transform: scale(1.02);
    }

    /* Mission Section */
    .mission-content {
      display: flex;
      align-items: center;
      gap: 3rem;
    }

    .mission-image {
      flex: 1;
    }

    .mission-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      transition: transform 0.3s ease;
    }

    .mission-image:hover img {
      transform: scale(1.02);
    }

    .mission-text {
      flex: 1;
    }

    .mission-text h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--text-dark);
    }

    .mission-text p {
      font-size: 1.1rem;
      color: var(--text-gray);
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    /* Why Choose Us Section */
    .why-choose {
      background: linear-gradient(135deg, var(--light-blue), rgba(59, 130, 246, 0.1));
      min-height: 80vh;
      display: flex;
      align-items: center;
    }

    .why-content {
      display: flex;
      align-items: center;
      gap: 3rem;
    }

    .why-image {
      flex: 1;
    }

    .why-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      transition: transform 0.3s ease;
    }

    .why-image:hover img {
      transform: scale(1.02);
    }

    .why-text {
      flex: 1;
    }

    .why-text h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--text-dark);
    }

    .why-text p {
      font-size: 1.1rem;
      color: var(--text-gray);
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    /* Feature Highlights */
    .feature-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .feature-highlight {
      background: var(--white);
      padding: 2rem;
      border-radius: 16px;
      box-shadow: var(--shadow);
      text-align: center;
      transition: all 0.3s ease;
    }

    .feature-highlight:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .feature-highlight i {
      font-size: 3rem;
      color: var(--primary-blue);
      margin-bottom: 1rem;
    }

    .feature-highlight h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .feature-highlight p {
      color: var(--text-gray);
      line-height: 1.6;
    }

    /* Footer */
    .footer {
      background: var(--text-dark);
      color: var(--white);
      padding: 3rem 0 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
      text-align:center;
    }

    .footer-section h5 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: var(--white);
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.5rem;
    }

    .footer-section ul li a {
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
      color: var(--secondary-blue);
    }

    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icons a {
      width: 40px;
      height: 40px;
      background: var(--secondary-blue);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      background: var(--primary-blue);
      transform: translateY(-2px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #374151;
      color: var(--text-light);
    }

    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeIn 0.8s ease;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .story-content,
      .mission-content,
      .why-content,
      .who-content {
        flex-direction: column;
      }

      .who-content {
        flex-direction: column-reverse;
      }


      .section {
        padding: 3rem 0;
      }

      .hero {
        min-height: 80vh;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2rem;
      }

      .story-text h2,
      .mission-text h2,
      .why-text h2,
      .who-text h2 {
        font-size: 2rem;
      }

      .who-list li {
        padding-left: 2.5rem;
      }

      .who-list li::before {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
      }
    }

    /* Accessibility */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* Focus styles */
    *:focus {
      outline: 2px solid var(--primary-blue);
      outline-offset: 2px;
    }

    /* High contrast mode support */
    @media (prefers-contrast: high) {
      :root {
        --primary-blue: #0000ff;
        --text-dark: #000000;
        --border-color: #000000;
      }
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }