/* Base Styles & Variables */
:root {
    --primary: #0073B6; /* Adjust based on IDV branding */
    --secondary: #F58220; /* Adjust based on IDV branding */
    --dark: #333333;
    --light: #F6F6F6;
    --gray: #777777;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 2rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--secondary);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
  }
  
  .btn:hover {
    background-color: var(--secondary);
    color: var(--white);
  }
  
  .btn-secondary {
    background-color: var(--secondary);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
  }
  
  .section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
  }
  
  /* Header Styles */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .main-nav .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-link {
    padding: 10px 15px;
    color: var(--dark);
    font-weight: 600;
  }
  
  .nav-link:hover, .nav-link.active {
    color: var(--primary);
  }
  
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    transition: var(--transition);
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .main-nav {
      position: fixed;
      top: 80px;
      left: -100%; /* Hide it to the left by default */
      width: 100%;
      height: calc(100vh - 80px);
      background-color: var(--white);
      transition: left 0.3s ease;
      z-index: 999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .main-nav.open {
      left: 0; /* Slide into view */
    }
  
    .main-nav .nav-links {
      flex-direction: column;
      gap: 20px;
    }
  
    .nav-link {
      padding: 15px 0;
      font-size: 18px;
      font-weight: bold;
    }
  
    .mobile-menu-toggle {
      display: flex;
    }
  }
  
  
  
  /* Mobile menu animation */
  .mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }


  /* Footer Styles */
/* Footer Styles */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-logo img {
    height: 60px;
    margin-bottom: 15px;
  }
  
  .footer-logo p {
    font-size: 14px;
    opacity: 0.8;
  }
  
  .footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
  }
  
  .footer-links ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: var(--light);
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
  }
  
  .footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .footer-contact i {
    margin-right: 10px;
    color: var(--primary);
  }
  
  .footer-contact a {
    color: var(--light);
    transition: var(--transition);
  }
  
  .footer-contact a:hover {
    color: var(--primary);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    transition: var(--transition);
  }
  
  .footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
  }
  
  .social-links {
    display: flex;
    align-items: center;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 10px;
    color: var(--white);
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
  }
  
  .scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
  }
  
  .scroll-to-top.show {
    opacity: 1;
    visibility: visible;
  }
  
  .scroll-to-top:hover {
    background-color: var(--secondary);
  }
  
  /* Tablet and smaller screens */
  @media (max-width: 768px) {
    .footer {
      padding: 40px 0 20px;
    }
    
    .footer-content {
      gap: 20px;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .social-links {
      margin-top: 15px;
      justify-content: center;
    }
    
    .social-links a {
      margin: 0 5px;
    }
    
    body {
      padding-bottom: 60px; /* Space for scroll-to-top button */
    }
  }
  
  /* Small tablets and large phones */
  @media (max-width: 600px) {
    .footer-content {
      grid-template-columns: 1fr 1fr;
      text-align: left;
    }
    
    .footer-logo {
      grid-column: span 2;
      text-align: center;
    }
  }
  
  /* Mobile phones */
  @media (max-width: 480px) {
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .footer h4:after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer-contact p {
      justify-content: center;
    }
    
    .social-links a {
      width: 32px;
      height: 32px;
    }
  }
  
  /* Very small devices */
  @media (max-width: 360px) {
    .footer-bottom p {
      font-size: 12px;
    }
    
    .social-links a {
      width: 28px;
      height: 28px;
      font-size: 0.9em;
    }
  }


  /*Home Page css*/
  /* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    margin-top: 80px; /* To account for fixed header */
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .hero-buttons {
    display: flex;
    gap: 15px;
  }
  
  /* Stats Section */
  .stats {
    padding: 40px 0;
    background-color: var(--primary);
    color: var(--white);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
  }
  
  .stat-label {
    font-size: 1.1rem;
  }
  
  /* About Preview */
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .about-text h3 {
    margin-bottom: 15px;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  
  /* Services Preview */
  .bg-light {
    background-color: var(--light);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 115, 182, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    margin-bottom: 15px;
  }
  
  .service-card p {
    color: var(--gray);
    margin-bottom: 20px;
  }
  
  .read-more {
    display: inline-block;
    font-weight: 600;
  }
  
  .read-more i {
    margin-left: 5px;
    transition: var(--transition);
  }
  
  .read-more:hover i {
    transform: translateX(5px);
  }
  
  .services-cta {
    text-align: center;
    margin-top: 20px;
  }
  
  /* Projects Preview */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .project-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.1);
  }
  
  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
  }
  
  .project-card:hover .project-overlay {
    opacity: 1;
  }
  
  .btn-small {
    padding: 8px 15px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
  }
  
  .btn-small:hover {
    background-color: var(--secondary);
    color: var(--white);
  }
  
  .project-info {
    padding: 20px;
  }
  
  .project-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .project-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray);
  }
  
  .project-meta span {
    display: flex;
    align-items: center;
  }
  
  .project-meta i {
    margin-right: 5px;
    color: var(--primary);
  }
  
  .projects-cta {
    text-align: center;
    margin-top: 20px;
  }
  
  /* Partners Section */
  .partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
  }
  
  .partner-logo {
    background-color: var(--white);
    height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .partner-logo:hover {
    transform: translateY(-5px);
  }
  
  .partner-logo img {
    max-width: 80%;
    max-height: 70px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }
  .partners-cta {
    text-align: center;
    margin-top: 20px;
  }
  
  /* Contact CTA Section */
  .contact-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
  }
  
  .cta-content h2 {
    margin-bottom: 15px;
  }
  
  .cta-content p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn-light {
    background-color: var(--white);
    color: var(--primary);
  }
  
  .btn-light:hover {
    background-color: var(--secondary);
    color: var(--white);
  }
  
  /* Animation Classes */
  .animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .hero {
      height: 70vh;
    }
    
    .hero-content h1 {
      font-size: 2.8rem;
    }
    
    .about-content {
      grid-template-columns: 1fr;
    }
    
    .about-image {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      height: 60vh;
    }
    
    .hero-content h1 {
      font-size: 2.2rem;
    }
    
    .hero-content p {
      font-size: 1rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      gap: 10px;
    }
    
    .hero-buttons .btn {
      width: 100%;
    }
    
    .stat-number {
      font-size: 2rem;
    }
    
    .stat-label {
      font-size: 0.9rem;
    }
  }


  /*About Page css*/
  /* Page Header */
.page-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    margin-top: 80px; /* To account for fixed header */
  }
  
  .page-header h1 {
    margin-bottom: 10px;
  }
  
  .breadcrumb {
    font-size: 14px;
  }
  
  .breadcrumb a {
    color: var(--white);
    opacity: 0.8;
  }
  
  .breadcrumb a:hover {
    opacity: 1;
  }
  
  .breadcrumb span {
    opacity: 0.8;
  }
  
  /* Section Title Left Alignment */
  .section-title.text-left {
    text-align: left;
  }
  
  .section-title.text-left h2:after {
    left: 0;
    transform: none;
  }
  
  /* Mission Section */
  .mission-content, .vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .highlighted-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
  }
  
  .mission-image img, .vision-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  
  /* Geographic Coverage */
  .coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .coverage-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  
  .coverage-list {
    list-style: none;
    margin: 20px 0;
  }
  
  .coverage-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .coverage-list i {
    color: var(--primary);
    margin-right: 10px;
  }
  
  /* Values Section */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .value-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
  }
  
  .value-card:hover {
    transform: translateY(-10px);
  }
  
  .value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 115, 182, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
  }
  
  .value-card h3 {
    margin-bottom: 15px;
  }
  
  /* Market Focus */
  .market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .market-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
  }
  
  .market-card:hover {
    transform: translateY(-5px);
    background-color: var(--primary);
    color: var(--white);
  }
  
  .market-card:hover .market-icon {
    background-color: var(--white);
  }
  
  .market-card:hover .market-icon i {
    color: var(--primary);
  }
  
  .market-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 115, 182, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    transition: var(--transition);
  }
  
  .market-card h3 {
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  /* Quality Control */
  .quality-list {
    list-style: none;
    margin: 20px 0;
  }
  
  .quality-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
  }
  
  .quality-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 2px;
  }
  
  /* Team CTA */
  .team-cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/team-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
  }
  
  .text-center {
    text-align: center;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .mission-content, .vision-content, .coverage-content {
      grid-template-columns: 1fr;
    }
    
    .mission-image, .coverage-map {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .page-header {
      padding: 40px 0;
    }
    
    .highlighted-text {
      font-size: 1.1rem;
    }
    
    .values-grid, .market-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  }

  /*Service.html css*/
  .page-hero.services-hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    margin-top: 80px; /* to push below fixed header */
    text-align: center;
  }
  
  .page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  .services-intro {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
  }
  
  .services-intro .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .services-intro .section-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
  }
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
  }
  .service-details {
    display: none;
    margin-top: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--primary);
  }
  
  .service-details ul {
    list-style: none;
    padding: 0;
  }
  
  .service-details li {
    margin-bottom: 10px;
    color: var(--gray);
    position: relative;
    padding-left: 25px;
  }
  
  .service-details li::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 8px;
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--primary);
  }
  .service-expand-btn {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    /* Added: Position the button at the bottom */
    margin-top: auto;
    /* Added: Center the button horizontally */
    align-self: center;
  }
  
  .service-expand-btn:hover {
    background-color: var(--primary);
    color: var(--white);
  }

  .service-card {
    /* Added: Make each card a flex container */
    display: flex;
    /* Added: Stack content vertically */
    flex-direction: column;
    /* Added: Distribute space to push button to bottom */
    justify-content: space-between;
    /* Added: Ensure cards stretch to same height in grid row */
    height: 100%;
    /* Added: Basic styling for consistency */
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 20px;
    transition: transform 0.3s ease;
}
.service-card:hover {
  /* Added: Hover effect for lift */
  transform: translateY(-10px);
}

.service-icon {
  /* Added: Style for consistent icon display */
  width: 60px;
  height: 60px;
  background-color: rgba(0, 115, 182, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.service-card h3 {
  /* Added: Consistent heading styling */
  font-size: 1.25rem;
  margin: 10px 0;
  text-align: center;
}

.service-card p {
  /* Added: Consistent paragraph styling and flex growth */
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0 0 15px;
  text-align: center;
  flex-grow: 1; /* Added: Allows paragraph to take up remaining space */
}
  .cta-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
  }
  
  .cta-section h2 {
    margin-bottom: 20px;
  }
  
  .cta-section p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
  }
  
  .cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary);
  }
  
  .cta-section .btn-primary:hover {
    background-color: var(--secondary);
    color: var(--white);
  }

  /*projects.html css codes*/
  .page-hero.projects-hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    margin-top: 80px;
    text-align: center;
  }
  
  .page-hero.projects-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .page-hero.projects-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  .project-filters {
    background-color: var(--light);
    padding: 40px 0;
    text-align: center;
  }
  
  .filter-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 15px;
    justify-content: center;
  }
  
  .filter-group {
    display: flex;
    flex-direction: column;
  }
  
  .filter-group label {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .filter-select {
    padding: 10px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    min-width: 200px;
    font-size: 1rem;
  }
  .featured-projects {
    padding: 80px 0;
    text-align: center;
  }
  
  .projects-grid {
    display: grid;
    gap: 40px;
  }
  
  .project-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    /* Added: Ensure cards stretch to same height in grid row */
    height: 100%;
    /* Added: Basic padding for content */
    padding: 0; /* Adjusted from implicit 0 to explicit for clarity */
  }
  
  .project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .project-content {
    padding: 25px;
    /* Added: Make content a flex container to push button to bottom */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes space, pushing button to bottom */
    flex-grow: 1; /* Ensures content takes full height */
  }
  
  .project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .project-meta {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .project-meta span {
    display: flex;
    align-items: center;
  }
  
  .project-meta i {
    margin-right: 6px;
    color: var(--primary);
  }
  .project-expand-btn {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    /* Added: Position the button at the bottom */
    margin-top: auto;
    /* Added: Center the button horizontally */
    align-self: center;
    /* Added: Ensure button fits within card */
    width: fit-content;
  }
  
  .project-expand-btn:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .project-details {
    display: none;
    margin-top: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--primary);
    animation: fadeIn 0.3s ease-in-out forwards;
  }
  
  .project-details.active {
    display: block;
  }
  
  .project-details h4 {
    margin-bottom: 10px;
    color: var(--primary);
  }
  
  .project-details ul {
    list-style: none;
    padding-left: 0;
  }
  
  .project-details li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--gray);
  }
  
  .project-details li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 2px;
  }
  .impact-stats {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
  }
  
  .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: center;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
  }

  /* ===== Team Page Styles ===== */
  .page-hero.team-hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    margin-top: 80px;
    text-align: center;
  }
  
  .page-hero.team-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .page-hero.team-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
  }

  .team-intro {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
  }
  
  .team-intro .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .team-intro .section-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
  }
  .team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
  }

  .leadership-team {
    padding: 80px 0;
    text-align: center;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .team-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
  }
  
  .team-card:hover {
    transform: translateY(-8px);
  }
  
  .team-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }
  
  .team-info {
    padding: 20px;
  }
  
  .team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
  
  .team-position {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
  }
  
  .team-bio {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 15px;
  }
  
  .team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  
  .team-social a {
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
  }
  
  .team-social a:hover {
    color: var(--secondary);
  }
  .team-structure {
    background-color: var(--light);
    padding: 80px 0;
    text-align: center;
  }
  
  .organogram img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  
  .structure-description {
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
  }
  .team-expertise {
    padding: 80px 0;
    text-align: center;
  }
  
  .expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .expertise-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
  }
  
  .expertise-item:hover {
    transform: translateY(-5px);
  }
  
  .expertise-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 115, 182, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
  }
  
  .expertise-item h3 {
    margin-bottom: 10px;
  }
  
  .expertise-item p {
    font-size: 0.95rem;
    color: var(--gray);
  }
  .join-team {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
  }
  
  .join-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .join-content h2 {
    margin-bottom: 15px;
  }
  
  .join-content p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    opacity: 0.9;
  }
  @media (max-width: 768px) {
    .team-image img {
      height: 250px;
    }
  
    .page-hero.team-hero h1 {
      font-size: 2.2rem;
    }
  
    .page-hero.team-hero p {
      font-size: 1rem;
    }
  
    .expertise-grid, .team-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ===== Contact Page Styles ===== */
  .page-hero.contact-hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    margin-top: 80px;
    text-align: center;
  }
  
  .page-hero.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .page-hero.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  .contact-information {
    padding: 80px 0;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }
  
  .contact-details h2,
  .contact-form-container h2 {
    margin-bottom: 15px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  
  .contact-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .contact-text h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
  }
  
  .contact-text a {
    color: var(--primary);
  }
  
  .contact-text a:hover {
    color: var(--secondary);
    text-decoration: underline;
  }
  
  .office-locations .office {
    margin-bottom: 15px;
  }
  
  .office h4 {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .office p {
    font-size: 0.95rem;
    color: var(--gray);
  }
  .contact-form {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
  }
  
  .contact-form button {
    margin-top: 10px;
  }
  .map-section {
    padding: 80px 0;
    background-color: var(--light);
    text-align: center;
  }
  
  .map-section h2 {
    margin-bottom: 30px;
  }
  .partner-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
  }
  
  .partner-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .partner-content h2 {
    margin-bottom: 15px;
  }
  
  .partner-content p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    opacity: 0.95;
  }
  @media (max-width: 991px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
    
  /* Expertise Page Styles */
.expertise-hero {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0;
  margin-top: 80px;
  text-align: center;
}

.expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.expertise-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--gray);
}

.expertise-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 2px;
}

.expertise-details {
  display: none;
  margin-top: 20px;
  padding-left: 15px;
  border-left: 3px solid var(--primary);
  animation: fadeIn 0.3s ease-in-out forwards;
}

.expertise-details.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .expertise-content {
    grid-template-columns: 1fr;
  }

  .expertise-image {
    order: -1;
  }
}

/* Expertise Preview Styles */
.expertise-preview.section {
  padding: 80px 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
  text-align: center;
  padding: 20px 0;
}

.expertise-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expertise-card:hover {
  transform: translateY(-10px);
}

.expertise-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 115, 182, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.expertise-icon i {
  color: var(--primary);
  font-size: 24px;
}

.expertise-card h3 {
  margin: 10px 0 5px;
  font-size: 1.25rem;
}

.expertise-card p {
  margin: 0 0 15px;
  color: var(--gray);
  font-size: 0.9rem;
}

.read-more {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto; /* Pushes link to bottom of card */
  transition: transform 0.3s ease;
  white-space: nowrap; /* Prevents text wrapping */
}

.read-more:hover {
  transform: translateX(5px);
}

.read-more i {
  margin-left: 5px;
}

.expertise-cta {
  text-align: center;
  margin-top: 40px; /* Space above button */
  margin-bottom: 20px; /* Space below button */
}

.expertise-cta .btn {
  display: inline-block;
  margin: 0 auto; /* Centers the button */
  padding: 10px 20px;
}

/* Expertise Section Button Styles */
.expertise-text {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Space between elements */
}

.expertise-text .btn,
.expertise-expand-btn {
  display: inline-block;
  padding: 10px 20px; /* Uniform padding for consistent height and width */
  font-size: 1rem; /* Consistent font size */
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  line-height: 1.5; /* Ensures consistent height */
  min-width: 160px; /* Minimum width for uniformity */
  margin-right: 10px; /* Space between buttons */
}

.expertise-expand-btn {
  background-color: var(--light); /* #F6F6F6 for a neutral look */
  color: var(--primary); /* #0073B6 */
}

.expertise-expand-btn:hover {
  background-color: var(--primary); /* #0073B6 */
  color: #fff;
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--primary); /* #0073B6 */
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--secondary); /* #F58220 */
  transform: translateY(-2px);
}

/* Ensure anchor tags behave like buttons */
.expertise-text .btn[href] {
  text-decoration: none;
}
  
/* Expertise Section Styles */
.expertise-content {
  display: flex;
  justify-content: space-between;
  gap: 30px; /* Space between text and image */
  align-items: center; /* Vertically center content */
}

.expertise-text {
  flex: 1; /* Takes up available space on the left */
  min-width: 300px; /* Ensures text doesn’t collapse too much */
}

.expertise-image {
  flex: 1; /* Takes up equal space on the right */
  max-width: 50%; /* Limits to half the container width */
  width: 100%; /* Ensures it fills its allotted space */
}

.expertise-image img {
  width: 100%; /* Image fills the container */
  height: auto; /* Maintains aspect ratio */
  border-radius: 8px; /* Rounded corners */
  box-shadow: var(--shadow); /* Applies shadow */
  object-fit: cover; /* Ensures image covers the area without distortion */
  display: block; /* Removes any default spacing */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .expertise-content {
    flex-direction: column;
    align-items: stretch;
  }

  .expertise-image {
    max-width: 100%; /* Full width on mobile */
    margin-top: 20px; /* Space when stacked */
  }

  .expertise-image img {
    height: 300px; /* Fixed height on mobile for consistency */
  }
}