
    :root {
      --primary-blue: #2563eb;
      --primary-blue-hover: #1d4ed8;
      --secondary-blue: #3b82f6;
      --light-blue: #eff6ff;
      --accent-orange: #f59e0b;
      --success-green: #10b981;
      --success-green-hover: #059669;
      --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);
    }

    * {
      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);
    }

    /* Hero Section */
    .hero {
      min-height: 70vh;
      background:  linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
    url("/assets/images/six.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.3), rgba(59, 130, 246, 0.2));
      z-index: 1;
    }

    .hero-content {
          position: relative;
          z-index: 2;
          text-align: left;
          max-width: 800px;
          padding-top: 100px; /* Adjust this value as needed for your navbar height */
        }

    .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;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-hero {
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      min-width: 160px;
      text-align: center;
    }

    .btn-hero.primary {
      background: var(--white);
      color: var(--primary-blue);
    }

    .btn-hero.primary:hover {
      background: var(--light-blue);
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    /* 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;
    }

    /* Contact Form */
    .contact-form-container {
      background: var(--white);
      border-radius: 20px;
      padding: 3rem;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
    }

    .contact-form-container:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .form-control {
      border: 2px solid var(--border-color);
      border-radius: 12px;
      padding: 0.75rem 1rem;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: var(--white);
    }

    .form-control:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
      outline: none;
    }

    .form-control::placeholder {
      color: var(--text-light);
    }

    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }

    .btn-submit {
      background: var(--primary-blue);
      color: var(--white);
      border: none;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      width: 100%;
      max-width: 200px;
    }

    .btn-submit:hover {
      background: var(--primary-blue-hover);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-submit:active {
      transform: translateY(0);
    }

    /* Contact Image */
    .contact-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .contact-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .contact-image:hover img {
      transform: scale(1.05);
    }

    /* Contact Info Cards */
    .contact-info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .contact-info-card {
      background: var(--white);
      padding: 2rem;
      border-radius: 16px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      border: 1px solid var(--border-color);
      text-align: center;
    }

    .contact-info-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .contact-icon {
      width: 60px;
      height: 60px;
      background: var(--light-blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--primary-blue);
      margin: 0 auto 1.5rem;
    }

    .contact-info-card h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .contact-info-card p {
      color: var(--text-gray);
      line-height: 1.6;
    }

    .contact-info-card a {
      color: var(--primary-blue);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .contact-info-card a:hover {
      color: var(--primary-blue-hover);
    }

    /* Alert Messages */
    .alert {
      border-radius: 12px;
      border: none;
      padding: 1rem 1.5rem;
      margin-bottom: 1.5rem;
      font-weight: 500;
    }

    .alert-success {
      background: rgba(16, 185, 129, 0.1);
      color: var(--success-green);
      border: 1px solid rgba(16, 185, 129, 0.2);
    }

    .alert-danger {
      background: rgba(239, 68, 68, 0.1);
      color: #dc2626;
      border: 1px solid rgba(239, 68, 68, 0.2);
    }

    /* 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);
    }

    /* Loading States */
    .form-loading {
      pointer-events: none;
      opacity: 0.7;
    }

    .form-loading .btn-submit {
      background: var(--text-light);
      cursor: not-allowed;
    }

    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeIn 0.8s ease;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }

    .pulse {
      animation: pulse 2s infinite;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-content {
        text-align: center;
      }

      .hero-buttons {
        justify-content: center;
      }


      .section {
        padding: 3rem 0;
      }

      .contact-form-container {
        padding: 2rem;
        margin: 1rem;
      }

      .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .btn-hero {
        width: 100%;
        max-width: 300px;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2rem;
      }

      .section-title h2 {
        font-size: 1.8rem;
      }

      .contact-form-container {
        padding: 1.5rem;
        border-radius: 16px;
      }

      .contact-info-card {
        padding: 1.5rem;
      }

      .btn-hero {
        padding: 0.75rem 1.5rem;
        min-width: 140px;
      }
    }

    /* 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;
      }
    }
