    /* variables */
    :root {
      --bg-color:white;
      --primary-color: white;
      --secondary-color: #79b33b; /* Changed to green */
      --accent-color: #3c448d; /* Added blue as accent */
      --black: #2E2E2E;
      --heading-font: "Outfit", sans-serif;
    }

    /* global properties */
    * {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }

    body {
      background-color: var(--bg-color);
      color: var(--primary-color);
      font-family: "DM Sans", sans-serif;
      font-size: 18px;
      line-height: 1.5;
    }

    .btn {
      color: #fff;
      padding: 8px 20px;
      font-weight: 500;
      background-color: var(--accent-color); /* Changed to blue */
    }

    .radius {
      border-radius: 10px;
    }

    a {
      text-decoration: none;
      display: inline-block;
    }

    img {
      width: 100%;
    }

    /* for all headings */
    .heading {
      font-family: var(--heading-font);
      font-weight: 700;
      font-size: 6.5vw;
      color: var(--primary-color);
      text-transform: uppercase;
      line-height: 0.95;
      margin-bottom: 1.4rem;
    }

    /* Header with Bootstrap integration */
    header {
      padding: 1rem 0;
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      z-index: 1000;
      width: 100%;
      background: none;
    }
    
    .navbar-brand img {
      height: 100px;
      width: 80px;
      margin-left: 40px;
    }
    
    .navbar-toggler {
      border: none;
      padding: 0.25rem;
      color: white;
    }
    
    .navbar-toggler:focus {
      box-shadow: none;
    }
    
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-nav .nav-link {
      color: white;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      position: relative;
      padding: 0.5rem 1rem;
      transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link::before {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background-color: var(--secondary-color); /* Green underline */
      bottom: 0;
      left: 1rem;
      right: 1rem;
      transition: width 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
      color: var(--secondary-color); /* Green hover */
    }
    
    .navbar-nav .nav-link:hover::before {
      width: calc(100% - 2rem);
    }
    
    .navbar-nav .nav-link.active {
      color: var(--secondary-color); /* Green active */
    }
    
    .navbar-nav .nav-link.active::before {
      width: calc(100% - 2rem);
    }

    /* Main content padding to account for fixed header */
    main {
      padding-top: 0px;
    }

    /* About Hero Section */
    .about-hero {
      min-height: 60vh;
      background: url('../images/bg62.jpg') no-repeat center center;
      background-size: cover;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 5rem 2rem;
    }

    .about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0%);
}
    

    .about-hero h1 {
      font-size: 5rem;
      color: white;
      position: relative;
      z-index: 1;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    }

    /* About Content Sections */
    .about-section {
      padding: 5rem 0;
      position: relative;
    }

    .about-section:nth-child(odd) {
      background: url('../images/bg41.jpg') no-repeat center center;
      background-size: cover;
    }

    .about-section:nth-child(even) {
      background: url('../images/bg62.jpg') no-repeat center center;
      background-size: cover;
    }

    .about-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgb(0 0 0 / 0%);
    }

    .about-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 1;
    }

    .section-title {
      font-family: var(--heading-font);
      font-size: 3rem;
      color: white;
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 80px;
      height: 4px;
      background-color: var(--secondary-color);
    }

    .about-content {
      display: flex;
      gap: 3rem;
      align-items: center;
      margin-bottom: 4rem;
    }

    .about-text {
      flex: 1;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(60px);
      border-radius: 15px;
      padding: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .about-text p {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .about-image {
      flex: 1;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }
    
    /* Vision & Mission Section */
    .vision-mission-section {
      padding: 5rem 0;
      position: relative;
      background: url('../images/bg71.jpg') no-repeat center center;
      background-size: cover;
    }
    
    .vision-mission-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color:rgb(0 0 0 / 46%);
    }
    
    .vm-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 1;
    }
    
    .vm-columns {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
    }
    
    .vm-column {
      flex: 1;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 2.5rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 10px 30px #3c448d;
      transition: all 0.3s ease;
    }
    
    .vm-column:hover {
      transform: translateY(-10px);
      border-color: var(--secondary-color);
      box-shadow: 0 15px 30px rgba(121, 179, 59, 0.3);
    }
    
    .vm-icon {
      font-size: 3rem;
      color: var(--secondary-color);
      margin-bottom: 1.5rem;
    }
    
    .vm-title {
      font-family: var(--heading-font);
      font-size: 2rem;
      color: var(--secondary-color);
      margin-bottom: 1.5rem;
      position: relative;
    }
    
    .vm-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background-color: var(--secondary-color);
    }
    
    .vm-content {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.1rem;
      line-height: 1.8;
    }
    
    /* Message Section */
    .message-section {
      padding: 5rem 0;
      position: relative;
      background: url('../images/bg41.jpg') no-repeat center center;
      background-size: cover;
    }
    
    .message-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
    }
    
    .message-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 1;
    }
    
    .message-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 3rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .message-card:hover {
      border-color: var(--accent-color);
      box-shadow: 0 20px 40px rgba(60, 68, 141, 0.3);
    }
    
    .ceo-signature {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
      gap: 1.5rem;
      align-items: center;
    }
    
    .ceo-photo {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid var(--secondary-color);
    }
    
    .ceo-info {
      text-align: left;
    }
    
    .ceo-name {
      font-family: var(--heading-font);
      color: var(--secondary-color);
      font-size: 1.5rem;
      margin-bottom: 0.3rem;
    }
    
    .ceo-title {
      color: rgba(255, 255, 255, 0.8);
      font-style: italic;
    }

    /* Mission & Values Section */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .value-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(60px);
      border-radius: 15px;
      padding: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(121, 179, 59, 0.3);
      border: 1px solid var(--secondary-color);
    }

    .value-icon {
      font-size: 2.5rem;
      color: var(--secondary-color);
      margin-bottom: 1.5rem;
    }

    .value-icon img {
      width: 60px;
      height: 60px;
      object-fit: contain;
    }

    .value-title {
      font-family: var(--heading-font);
      font-size: 1.5rem;
      color: white;
      margin-bottom: 1rem;
    }

   

    /* Footer */
    footer {
      background: url('../images/bg91.png') no-repeat center center;
      background-size: cover;
      position: relative;
      padding: 2rem 0;
      text-align: center;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0);
      z-index: 0;
    }

    .footer-content {
      position: relative;
      z-index: 1;
    }

    .copyright {
      color: white;
      font-size: 0.9rem;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .about-hero h1 {
        font-size: 4rem;
      }
      
      .section-title {
        font-size: 2.5rem;
      }
      
      .about-content {
        flex-direction: column;
      }
      
      .about-image {
        order: -1;
      }
      
      .vm-columns {
        flex-direction: column;
      }
    }

    @media (max-width: 768px) {
      .about-hero h1 {
        font-size: 3rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .about-text {
        padding: 1.5rem;
      }
      
      .value-card {
        padding: 1.5rem;
      }
      
      .value-icon img {
        width: 50px;
        height: 50px;
      }
      
      .message-card {
        padding: 2rem;
      }
    }

    @media (max-width: 576px) {
      .about-hero h1 {
        font-size: 2.5rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .about-text p {
        font-size: 1rem;
      }
      
      .values-grid {
        grid-template-columns: 1fr;
      }
    }
      @media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important
;
        flex-basis: auto;
        margin-right: 70px;
        margin-top: -30px;

    }
}
/* Phones (up to 767px) */
@media (max-width: 767.98px) {
    .navbar-toggler-icon {
        margin-top: -40px;
    }
}

/* Tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .navbar-toggler-icon {
        margin-top: -30px; /* Different adjustment for tablets */
    }
}
@media (max-width: 768px) {
    .navbar-brand img {
        height: 80px; /* Adjust height for tablets */
        width: 64px;  /* Adjust width for tablets */
         margin-top: -10px;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        height: 60px; /* Adjust height for mobile */
        width: 48px;  /* Adjust width for mobile */
    }
}
/* Custom styles for the dropdown */
      .dropdown-menu {
        background-color: #fff;
        border: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 8px;
        padding: 10px 0;
      }
      
      .dropdown-item {
        padding: 8px 20px;
        font-family: "DM Sans", sans-serif;
        color: #333;
        transition: all 0.3s ease;
      }
      
      .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #007bff;
      }
      
      .nav-link.dropdown-toggle::after {
        margin-left: 5px;
        vertical-align: middle;
      }
      
      .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
      }