
:root {
    --primary-color: #ff6b35;
    --primary-dark: #e64e00;
    --secondary-color: #222;
    --accent-color: #1b998b;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --text-color: #333;
}
  
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: 1s;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
  }
  

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

    
  /* Header */

  header {
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      backdrop-filter: blur(10px);
      transition: var(--transition);
  }

  .header-right {
    display: flex;
    align-items: center;
  }
  

  /* Navbar */
  
  .nav-logo {
    height: 6rem;
    border-radius: .5rem;
  }

  .nav-links {
    display: flex;
    list-style: none;
    margin-right: 20px;
  }

  .nav-links li {
      margin: 0 1rem;
  }

  .nav-links a {
    text-decoration: none;
    color: black;
    font-size: 1.4rem;
    font-weight: 500;
    transition: 1s;
 }

  .nav-links a:hover {
      color: #F58546;;
  }

  .nav-menu-btn {
    display: none;
  }

  @media (max-width:768px) {
    .nav-menu-btn {
      display: block;
      font-size: 2rem;
      cursor: pointer;
      z-index: 10000;
      color: black;
      margin-left: 12rem;
      position: relative; 
    }
  
    .header-right {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background-color: #F58546;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: right 0.3s ease-in-out;
      z-index: 9999; 
      display: flex;
    }
    .header-right.active {
      right: 0; 
    }
  
    .nav-links {
      flex-direction: column;
      width: 100%;
      margin: 0;
    }
  
    .nav-links li {
      margin: 2rem 0;
      text-align: center;
    }

    .nav-links li a:hover {
       color: bisque;
    }
    .about-intro {
      position: relative;
      z-index: -1; 
    }
    
  }
  
  section {
    padding: 5rem 0;
  }
  
  .section-container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .btn-secondary {
    background-color: var(--secondary-color);
    color: white;
  }
  
  .btn-secondary:hover {
    background-color: #3d3769;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  

  /* Hero Section */

  .hero {
    height: 55vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
    margin-top: -4.8rem;
  }

  .hero h1 {
    color: wheat;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    margin-top: -2.5rem;
  }

  .hero p {
    font-size: 1.8rem;
  }


  .about-intro {
    background-color: white;
  }
  
  .about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-intro h2 {
    margin-top: -5rem;
    margin-bottom: 1rem;
  }
  
  .about-intro h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  
  .about-values {
    background-color: var(--light-gray);
    text-align: center;
  }
  
  .about-values h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .value-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
  }
  
  .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  @media (max-width:768px) {    
    .hero p {
      margin-left: 2rem;
      margin-right: 2rem;
    }
  }


  /* Team Section */

  .about-team {
    text-align: center;
  }
  
  .about-team h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
  }
  
  .team-member {
    text-align: center;
  }
  
  .team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }
  
  .team-member:hover .team-img {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  
  /* Milestones Section */

  .about-milestones {
    background-color: var(--secondary-color);
    color: white;
  }
  
  .about-milestones h2 {
    color: white;
    text-align: center;
  }
  
  .about-milestones h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
  }
  
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4px;
    background: rgba(255, 255, 255, 0.2);
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 3rem;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-dot {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    z-index: 2;
  }
  
  .timeline-content {
    width: 45%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
  }
  
  .timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .timeline-content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
  }
  

  /* Testimonials Section */

  .about-testimonials {
    text-align: center;
    background-color: var(--light-gray);
  }
  
  .about-testimonials h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
  }
  
  .testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .testimonial:before {
    content: '\201C';
    font-size: 5rem;
    position: absolute;
    top: 10px;
    left: 20px;
    color: rgba(0, 0, 0, 0.05);
    font-family: serif;
    line-height: 1;
  }
  
  .testimonial-rating {
    color: #f8ce0b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .testimonial p {
    font-style: italic;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
    text-align: right;
    margin-bottom: 0;
  }
  

  /* CTA Section */

  .about-cta {
    text-align: center;
    background-color: #f8f9fa;
    padding: 6rem 0;
  }
  
  .about-cta h2 {
    margin-bottom: 1rem;
  }
  
  .about-cta h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .cta-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  

  /* Footer */
  
  .footer {
    position: relative;
    background-image: url("images/footer.png");
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    padding-top: 5rem;
    margin-top: 4rem;
  }
  
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); 
    z-index: 0;
  }
  
  .footer-container {
    margin-left: 4rem;
    position: relative;
    z-index: 1;
  }
  
  .footer-content-grid {
    display: grid;
    padding-bottom: 3rem;
    grid-template-columns: 1fr 2fr;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .logo-img {
    border-radius: .5rem;
    height: 6rem;
    margin-bottom: 1rem;
  }
  
  .footer-description {
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  .footer-socials {
    display: flex;
    gap: 16px;
  }
  
  .footer-socials a {
    background: rgba(255, 255, 255, 0.1);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 1s;
  }
  
  .footer-socials a:hover {
    background: #F58546;
    transform: translateY(-3px);
  }
  
  .footer-links-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-links-column-1 {
    margin-left: 6rem;
  }
  
  .footer-links-column-2 {
    margin-left: 10.5rem;
    width: 100%;
  }
  
  .footer-links-column-1 h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-links-column-2 h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-links-column-1 h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: #F58546;
  }
  
  .footer-links-column-2 h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: #F58546;
  }
  
  .footer-links-container .footer-connect {
    font-size: 1.5rem;
  }
  
  .footer-menu, .footer-contact {
    list-style: none;
    line-height: 1.5;
    width: 120%;
    padding: 0;
    margin: 0;
  }
  
  .footer-links-column-2 .footer-newsletter {
    font-size: 1.7rem;
  }
  
  .footer-links-column-2 .newsletter-tagline {
    font-size: 1.4rem;
  }
  
  .footer-menu li, .footer-contact li {
    margin-bottom: 12px;
    font-size: 1.3rem;
  }
  
  .footer-menu a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: 1s;
  }
  
  .footer-menu a:hover {
    opacity: 1;
    color: #F58546;
    padding-left: 5px;
  }
  
  .footer-contact li {
    display: flex;
    align-items: center;
  }
  
  .footer-contact span {
    margin-right: 10px;
    width: 20px;
    display: inline-flex;
    justify-content: center;
    color: #F58546;
  }
  
  .footer-subscribe {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-subscribe input {
    padding: 12px;
    border-radius: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
  
  .footer-subscribe input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .footer-subscribe button {
    padding: 12px;
    border: none;
    background: #F58546;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: 1s;
  }
  
  .footer-subscribe button:hover {
    background: #F58546;
  }
  
  .footer-bar {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
  }
  
  .footer-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-legal {
    display: flex;
    gap: 20px;
  }
  
  .footer-legal a {
    color: white;
    opacity: 0.7;
    text-decoration: none;
    transition: 1s;
  }
  
  .footer-legal a:hover {
    opacity: 1;
  }
  

  /* Responsive Design */

  @media (max-width: 1024px) {
    h1 {
      font-size: 3rem;
    }
    
    h2 {
      font-size: 2.2rem;
    }
    
    .footer-content-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .footer-links-container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    section {
      padding: 4rem 0;
    }
    
    .about-hero h1 {
      font-size: 3rem;
    }
    
    .values-grid,
    .team-grid,
    .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .timeline:before {
      left: 30px;
    }
    
    .timeline-dot {
      left: 30px;
    }
    
    .timeline-content {
      width: calc(100% - 60px);
      margin-left: 60px !important;
    }
    
  }
  
  @media (max-width: 576px) {
    h1 {
      font-size: 2.5rem;
    }
    
    h2 {
      font-size: 2rem;
    }
    
    .hero {
      min-height: 400px;
    }
    
    .about-hero p {
      font-size: 1.2rem;
    }
    
    .cta-buttons {
      flex-direction: column;
      gap: 1rem;
    }
  }
  
  @media (max-width: 768px) {

    .footer-content-grid,
    .footer-links-container {
      grid-template-columns: 1fr;
    }
  
    .footer-links-container {
      margin-left: -9rem;
      margin-top: 2rem;
    }
  
    .footer-brand {
      max-width: 100%;
      margin-left: -3rem;
      margin-bottom: .5rem;
    }
  
    .footer-links-column-2 .footer-newsletter {
      margin-left: -4.5rem;
      margin-top: 2rem;
    }
  
    .footer-links-column-2 .newsletter-tagline {
      margin-left: -4.5rem;
      width: 60%;
    }
    
    .footer-subscribe {
      margin-left: -4.5rem;
      width: 60%;
    }
  
    .footer-bar-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-legal {
      margin-top: 10px;
    }
  
    .footer-legal a {
      margin: 0 10px;
    }
  }

  /* Animation Classes */

  .fade-in {
    animation: fadeIn 1s ease-in-out;
  }
  
  .slide-up {
    animation: slideUp 0.8s ease-in-out;
  }
  
  .slide-right {
    animation: slideRight 0.8s ease-in-out;
  }
  
  .slide-left {
    animation: slideLeft 0.8s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes slideRight {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes slideLeft {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }