/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: rgb(242, 242, 242);
    color: rgb(44, 44, 44);
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  h1, h2, h3 {
    color: rgb(44, 44, 44);
    margin: 0;
  }
  
  a {
    color: rgb(188, 154, 101);
    text-decoration: none;
  }
  
  a:hover {
    color: rgb(160, 130, 85);
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  /* Header */
  header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s;
  }
  
  header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
  }
  
  header .container {
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
  }
  
  nav ul {
    display: flex;
    gap: 30px;
  }
  
  nav a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
  }
  
  nav a:hover {
    text-decoration: none;
  }
  
  nav a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: rgb(188, 154, 101);
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
  }
  
  nav a:hover::after {
    width: 100%;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    position: relative; /* Ensure positioning context for the pseudo-element */
    background: none;   /* Remove the background image from here */
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    background-image: url("images/2.png");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;      /* Adjust this value for desired opacity */
    z-index: -1;       /* Place the pseudo-element behind the content */
  }
  
  .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Adjusted the overlay to make it darker */
    background: rgba(0, 0, 0, 0.6);
  }
  
  .hero .container {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 0 20px; /* Added padding for mobile responsiveness */
  }
  
  .hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Added text shadow */
  }
  
  .hero h1 span {
    color: rgb(188, 154, 101);
  }
  
  .hero p {
    font-size: 24px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Added text shadow */
  }
  
  .cta-button {
    background-color: rgb(188, 154, 101);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    text-decoration: none;
  }
  
  .cta-button:hover {
    background-color: rgb(160, 130, 85);
    transform: translateY(-5px);
    color: #fff;
  }
  
  /* About Us Section */
  .about-section {
    padding: 100px 0;
  }
  
  .about-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
  
  .about-section .content {
    flex: 1;
  }
  
  .about-section .image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-section .image img {
    width: 50%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  /* Our Solution Section */
  .solution-section {
    background-color: #fff;
    padding: 100px 0;
  }
  
  .solution-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
  }
  
  .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center;
    margin: 0 auto;
  }
  
  .solution-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .solution-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(188, 154, 101, 0.2), transparent);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.5s;
  }
  
  .solution-item:hover::before {
    opacity: 1;
  }
  
  .solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
  }
  
  .solution-item .icon {
    font-size: 48px;
    color: rgb(188, 154, 101);
    margin-bottom: 20px;
  }
  
  .solution-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .solution-item ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Value Proposition Section */
  .value-proposition-section {
    background: linear-gradient(135deg, rgba(188, 154, 101, 0.2), rgba(242, 242, 242, 0.9));
    padding: 100px 0;
  }
  
  .value-proposition-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
  }
  
  .value-proposition-section ul {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .value-proposition-section ul li {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
  }
  
  .value-proposition-section li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: rgb(188, 154, 101);
  }
  
  /* Roadmap Section */
  .roadmap-section {
    padding: 100px 0;
  }
  
  .roadmap-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
  }
  
  .timeline {
    position: relative;
    margin: 50px auto;
    max-width: 1000px;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgb(188, 154, 101);
  }
  
  .timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    clear: both;
  }
  
  .timeline-item:nth-child(odd) {
    float: left;
    text-align: right;
  }
  
  .timeline-item:nth-child(even) {
    float: right;
  }
  
  .timeline-item::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: rgb(188, 154, 101);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px rgb(188, 154, 101);
    box-sizing: border-box;
  }
  
  .timeline-item:nth-child(odd)::after {
    right: -10px;
  }
  
  .timeline-item:nth-child(even)::after {
    left: -10px;
  }
  
  .timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
  }
  
  .timeline-content h3 {
    margin-top: 0;
  }
  
  /* Our Team Section */
  .team-section {
    background-color: #fff;
    padding: 100px 0;
  }
  
  .team-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
  }
  
  .team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
  
  .team-member {
    text-align: center;
    width: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .team-member .member-image {
    position: relative;
    overflow: hidden;
  }
  
  .team-member .member-image img {
    width: 100%;
    transition: transform 0.3s;
  }
  
  .team-member:hover .member-image img {
    transform: scale(1.1);
  }
  
  .team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .team-member p {
    font-size: 16px;
    color: rgb(88, 88, 88);
    margin-bottom: 10px;
  }
  
  .team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .team-member .social-links a {
    color: rgb(188, 154, 101);
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .team-member .social-links a:hover {
    color: rgb(160, 130, 85);
  }
  
  /* Contact Section */
  .contact-section {
    background-image: url('images/contact-bg.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    padding: 100px 0;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.7);
  }
  
  .contact-section .container {
    position: relative;
    z-index: 1;
  }
  
  .contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #fff;
  }
  
  .contact-info {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contact-info p {
    font-size: 20px;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: rgb(188, 154, 101);
  }
  
  /* Footer */
  footer {
    background-color: rgb(44, 44, 44);
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  footer .social-media {
    margin-top: 10px;
  }
  
  footer .social-media a {
    color: #fff;
    margin: 0 10px;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  footer .social-media a:hover {
    color: rgb(188, 154, 101);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    nav ul {
      display: none;
    }
  
    .menu-toggle {
      display: block;
    }
  
    header .container {
      justify-content: space-between;
    }
  
    .nav-links.active {
      display: flex;
      flex-direction: column;
      background-color: rgba(255,255,255,0.9);
      position: absolute;
      right: 20px;
      border-radius: 0 0 20px 20px;
    }
  
    .logo img {
      height: 100px;
      object-fit: contain;
    }
  
    .hero h1 {
      font-size: 40px;
    }
  
    .hero p {
      font-size: 18px;
    }
  
    .about-section .container {
      flex-direction: column;
    }
  
    .about-section .image {
      margin-top: 30px;
    }
  
    /* Timeline */
    .timeline::before {
      left: 20px;
    }
  
    .timeline-item {
      width: 100%;
      left: 0 !important;
      padding-left: 40px;
      text-align: left !important;
    }
  
    .timeline-item:nth-child(odd) {
      text-align: left;
    }
  
    .timeline-item::after {
      left: 10px;
    }
  }
  
  /* Media Queries for Responsive Design */
  @media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .about-section .container {
        flex-direction: column;
        text-align: center;
    }

    .about-section .image img {
        width: 80%;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Menu Styles */
    .nav-links {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        padding: 20px 0;
        margin: 0;
        margin-top: 7px;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links a {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 5px 0;
    }

    .menu-toggle {
        display: block;
    }

    /* Adjust team grid for mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
  }
  
  /* Fix for any potential horizontal scroll issues */
  img {
    max-width: 100%;
    height: auto;
  }
  
  section {
    width: 100%;
    overflow-x: hidden;
  }
  
  section .container {
    text-align: center;
  }
  
  header .container {
    padding-left: 0;
  }
  
  .about-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
  
  @media screen and (max-width: 768px) {
    header .container {
        padding-left: 0;
    }
    
    .about-section .container {
        flex-direction: column;
    }
  }
  
  /* Mobile Timeline Adjustments */
  @media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
        left: 0 !important;
        text-align: left !important;
    }

    .timeline-item::after {
        left: 13px !important;
        right: auto !important;
    }
  }
  

  