    :root {
      --primary-color: #b71c1c;
      --secondary-color: #8e1a1a;
      --accent-color: #4caf50;
      --light-bg: #f7f5f2;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    @font-face {
      font-family: "Inter";
      src: url("../assets/fonts/Inter.ttf") format("truetype");
      font-weight: normal;
      font-style: normal;
      font-display: swap; /* Optional for better loading behavior */
    }
    
    body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: var(--light-bg);
    }
    
    header {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 1000;
      background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
      );
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 5%;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }
    
    .navbar h4 {
      color: white;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
    }
    
    .navbar h4 i {
      margin-right: 10px;
    }
    
    .navbar nav a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
      position: relative;
      transition: all 0.3s ease;
    }
    
    .navbar nav a::after {
      content: "";
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: white;
      transition: width 0.3s ease;
    }
    
    .navbar nav a:hover::after {
      width: 100%;
    }
    
    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      background-color: #f7f5f2; /* Solid beige background */
      background-image: none; /* Remove any gradient or image */
      position: relative;
      overflow: hidden;
    }
    
    .hero-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
      text-align: center;
      position: relative;
      z-index: 10;
    }
    
    .hero-content h1 {
      color: #8e1a1a; /* Changed the color of the h1 to red */
      font-size: 3.5rem;
      margin-bottom: 1rem;
      animation: fadeInUp 1s ease-out;
    }
    
    .hero-content p {
      color: black; /* Changed the color of the p to red */
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 2rem;
      animation: fadeInUp 1s ease-out 0.5s both;
    }
    
    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      animation: fadeInUp 1s ease-out 1s both;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .btn-primary {
      background-color: #8e1a1a; /* Changed the background color to red */
      color: white;
    }
    
    .btn-secondary {
      background-color: #8e1a1a; /* Changed the background color to black */
      color: white;
    }
    
    .btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    
    .features {
      background-color: white;
      padding: 5rem 0;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
    }
    
    .feature-card {
      background-color: var(--light-bg);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }
    
    .feature-card i {
      font-size: 3rem;
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    
    .about-section {
      background-color: var(--light-bg);
      padding: 3rem 0;
    }
    
    .about-content {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
      padding: 0 5%;
    }
    
    .dropdown {
      position: relative;
      display: inline-block;
    }
    
    .dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .dropdown-menu {
      display: none;
      position: absolute;
      right: 0;
      top: 100%;
      background-color: #b71c1c;
      min-width: 150px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      border-radius: 5px;
      overflow: hidden;
    }
    
    .dropdown:hover .dropdown-menu {
      display: block;
    }
    
    .dropdown-menu {
      background: #b30000 !important;
      background-color: #b30000 !important;
      color: #fff !important;
    }
    .dropdown-menu a {
      color: #fff !important;
    }
    
    .dropdown-menu a {
      color: var(--primary-color);
      padding: 10px 15px;
      text-decoration: none;
      display: block;
      transition: background-color 0.3s ease;
    }
    
    .dropdown-menu a:hover {
      background-color: var(--secondary-color);
    }
    
    footer {
      background-color: #333;
      color: white;
      padding: 1rem 0;
      text-align: center;
    }
    
    .contact-section {
      background-color: white;
      padding: 3rem 0;
    }
    
    .contact-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 5%;
      text-align: center;
    }
    
    .contact-section h2 {
      color: var(--primary-color);
      margin-bottom: 30px;
    }
    
    .contact-details p {
      margin-bottom: 15px;
      color: #333;
    }
    
    .contact-details i {
      margin-right: 15px;
      color: var(--primary-color);
      font-size: 1.2rem;
    }
    
    .card-info {
      font-family: Inter, Courier New;
    }
    
    .section-title {
      text-align: center;
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 3rem;
    }
    
    .mission-vision {
      padding: 5rem 0;
      background-color: white;
    }
    
    .mission-vision .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
    }
    
    .mission,
    .vision {
      padding: 2rem;
      background-color: var(--light-bg);
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    
    .mission:hover,
    .vision:hover {
      transform: translateY(-5px);
    }
    
    .mission h2,
    .vision h2 {
      color: var(--primary-color);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .mission p,
    .vision p {
      color: #333;
      line-height: 1.8;
    }
    
    .feature-card {
      background-color: var(--light-bg);
      padding: 2rem;
      border-radius: 10px;
      text-align: left;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .feature-card h3 {
      color: var(--primary-color);
      margin: 1rem 0;
      font-size: 1.5rem;
    }
    
    .feature-card i {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
    }
    
    .feature-card .card-info {
      color: #555;
      line-height: 1.8;
    }
    
    .sdg-section {
      background-color: var(--light-bg);
      padding: 5rem 0;
    }
    
    .sdg-intro {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 3rem;
      color: #555;
      font-size: 1.2rem;
    }
    
    .sdg-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
    }
    
    .sdg-item {
      background-color: white;
      padding: 2rem;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    
    .sdg-item:hover {
      transform: translateY(-5px);
    }
    
    .sdg-item i {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    
    .quality-educ {
      color: #c5192d;
    }
    
    .climate-action {
      color: #3f7e44;
    }
    
    .partner {
      color: #19486a;
    }
    
    .sdg-item h4 {
      color: #333;
      font-size: 1.3rem;
    }
    
    .about-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 2rem;
    }
    
    .about-feature {
      background-color: white;
      padding: 1.5rem;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .about-feature i {
      color: var(--accent-color);
      font-size: 1.5rem;
    }
    
    .about-feature p {
      margin: 0;
      color: #555;
    }
    
    footer {
      background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
      );
      color: white;
      padding: 2rem 0;
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
      text-align: center;
    }
    
    .social-links {
      margin-bottom: 1.5rem;
    }
    
    .social-links a {
      color: white;
      font-size: 1.5rem;
      margin: 0 10px;
      transition: transform 0.3s ease;
      display: inline-block;
    }
    
    .social-links a:hover {
      transform: translateY(-3px);
    }
    
    .footer-links {
      margin-top: 1rem;
    }
    
    .footer-links a {
      color: white;
      text-decoration: none;
      margin: 0 10px;
      transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--light-bg);
    }
    
    @media (max-width: 1024px) {
      .hero-content {
        max-width: 1400px;
        margin: 10px auto;
        padding: 10px 0;
        text-align: center;
        /*position: relative;*/
        /*z-index: 10;*/
      }
    
      .hero-content h1 {
        font-size: 2.3rem;
      }
    
      .features-grid {
        grid-template-columns: repeat(2, 1fr); /* Change to 2 columns */
      }
    
      .feature-card:nth-child(3) {
        grid-column: 1 / -1; /* Make the third card span all columns */
        justify-self: center; /* Center the third card */
      }
    }
    
    @media (max-width: 768px) {
      :root {
        --primary-color: #b71c1c;
        --secondary-color: #8e1a1a;
        --accent-color: #4caf50;
        --light-bg: #f7f5f2;
      }
    
      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.5; /* Slightly reduce line height for better readability */
        color: #333;
        background-color: var(--light-bg);
      }
    
      header {
        padding: 0.5rem 2%; /* Reduce padding for smaller screens */
      }
    
      .navbar {
        padding: 0.5rem 2%; /* Reduce padding for navbar */
      }
    
      .navbar h4 {
        font-size: 1.2rem; /* Reduce font size for navbar title */
      }
    
      .navbar nav a {
        margin: 0 10px; /* Reduce margin between navbar links */
        font-size: 0.9rem; /* Reduce font size for navbar links */
      }
    
      .hero {
        height: auto; /* Allow hero section to adjust height */
        padding: 2rem 0; /* Add padding for smaller screens */
      }
    
      .hero-content h1 {
        font-size: 2rem; /* Reduce font size for hero title */
      }
    
      .hero-content p {
        font-size: 1rem; /* Reduce font size for hero paragraph */
        max-width: 90%; /* Allow more width for smaller screens */
      }
    
      .cta-buttons {
        gap: 10px; /* Reduce gap between buttons */
      }
    
      .btn {
        padding: 10px 20px; /* Reduce button padding */
        font-size: 0.9rem; /* Reduce button font size */
      }
    
      .features {
        padding: 3rem 0; /* Reduce padding for features section */
      }
    
      .features-grid {
        grid-template-columns: 1fr; /* Change to 1 column for smaller screens */
      }
    
      .feature-card {
        padding: 20px; /* Reduce padding for feature cards */
      }
    
      .feature-card i {
        font-size: 2rem; /* Reduce icon size */
      }
    
      .about-content {
        padding: 0 2%; /* Reduce padding for about section */
      }
    
      .contact-container {
        padding: 0 2%; /* Reduce padding for contact section */
      }
    
      .contact-section h2 {
        font-size: 1.5rem; /* Reduce font size for contact heading */
      }
    
      .contact-details p {
        font-size: 0.9rem; /* Reduce font size for contact details */
      }
    
      .hero-content {
        margin-top: 50px;
      }
    }
    
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.5rem;
      }
    
      .feature-card,
      .mission,
      .vision,
      .sdg-item {
        padding: 1.5rem;
      }
    
      .about-features {
        grid-template-columns: 1fr;
      }
    
      .navbar {
        flex-direction: column;
        padding: 1rem 5%;
      }
    
      .navbar nav {
        margin-top: 1rem;
      }
    }
    
    @media (max-width: 425px) {
      .hero {
        padding: 3rem 0; /* Add padding for smaller screens */
      }
    
      .hero-content h1 {
        font-size: 1.9rem;
      }
    
      footer p {
        font-size: 80%;
      }
    
      .contact-container {
        font-size: 80%;
      }
    
      .sat-info {
        font-size: 85%;
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .footer {
      font-family: Inter, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      text-align: center;
      padding: 10px;
      font-size: 0.9rem;
      color: #6c757d;
    }
    
    /* General Footer Styling */
    .footer {
      background-color: #343a40;
      /* Dark background */
      color: #ffffff;
      /* White text */
      /* Adjusted padding for better spacing */
      font-family: Inter, "Roboto", sans-serif;
      /* Modern font */
    }
    
    .footer .container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      flex-wrap: wrap;
      /* Allows wrapping on smaller screens */
    }
    
    .footer-content {
      display: flex;
      justify-content: space-between;
      width: 100%;
      flex-wrap: wrap;
      gap: 20px;
      /* Adds spacing between columns */
    }
    
    .footer h5 {
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: bold;
      text-transform: uppercase;
      /* Adds modern styling */
      color: #f7f7f7;
      /* Highlight color for headers */
    }
    
    .footer p {
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
    }
    
    .footer-logo img {
      width: 120px;
      /* Adjust logo size */
      height: auto;
      margin-top: -25px;
    }
    
    .footer-logo .sdo-logo {
      width: 130px;
    }
    
    .footer-bottom {
      margin-top: 20px;
      font-size: 12px;
      text-align: center;
      border-top: 1px solid #555;
      /* Adds a subtle divider */
      padding-top: 10px;
    }
    
    /* Links in Footer */
    .footer a {
      color: #477df0;
      /* Highlight color for links */
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer a:hover {
      color: #ffffff;
      /* Changes color on hover */
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      .footer .container {
        flex-direction: column;
        text-align: center;
      }
    
      .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
      }
    
      .footer-logo img {
        width: 90px;
        /* Adjust logo size for mobile */
      }
      .footer-logo .sdo-logo {
          width: 100px;
      }
    }
    
    /* Mobile menu button */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 5px;
    }
    
    .nav-links {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    @media (max-width: 768px) {
      .mobile-menu-btn {
        display: block;
        z-index: 1001;
      }
    
      .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        z-index: 1000;
      }
    
      .nav-links.active {
        display: flex;
      }
    
      .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        margin-top: 1rem;
      }
    
      .hero-content h1 {
        font-size: 2rem;
        padding: 0 1rem;
      }
    
      .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
      }
    
      .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }
    
      .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
      }
    
      .mission-vision .container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
      }
    
      .sdg-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .navbar h4 {
        font-size: 1.2rem;
      }
    
      .hero-content {
        padding-top: 4rem;
      }
    
      .hero-content h1 {
        font-size: 1.5rem;
      }
    
      .section-title {
        font-size: 1.8rem;
      }
    
      .feature-card {
        padding: 1.5rem;
      }
    
      .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
      }
    
      .footer-logo img {
        max-width: 80px;
      }
    }
    
    /* Fix hero section padding on mobile */
    @media (max-width: 768px) {
      .hero {
        padding-top: 80px;
        min-height: 100vh;
        height: auto;
      }
    }
    
    /* Improve dropdown menu on mobile */
    @media (max-width: 768px) {
      .dropdown-menu {
        width: 100%;
        text-align: center;
      }
    
      .dropdown-menu a {
        padding: 15px;
        color: white;
      }
    }