:root {
  --primary: #b30000; /* Maroon/#00c46c */
  --secondary: #00c46c; /* #e2b00den */
  --dark: #1a1a1a; /* Black */
  --light: #ffffff; /* White */
  --gray: #f5f5f5;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 font-family: "jost", "Times New Roman", serif;
  line-height: 1.6;
  color: white;
  background-color: black;
  overflow-x: hidden;
  font-weight: 300;
  font-size: larger;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
  color:#00c46c;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #00c46c;
}

.section-titles {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: black;
}

.section-titles:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #00c46c;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 4px;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--primary);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition);
}

header.scrolled {
  background-color: transparent;
  ;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--light);
  font-weight: 400;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color:#00c46c;
}

.nav-links a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00c46c;
  transition: var(--transition);
}

.nav-links a:hover:after {
  width: 100%;
}

.nav-links a.active {
  color:#00c46c;
}

.nav-links a.active:after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--light);
  font-size: 24px;
}

/* Logo Image Styles */
.logo-image {
  height: 150px;
  width: auto;
  transition: all 0.3s ease;
  margin-left: -35px;
}

.footer-logo-image {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

 /* Hero Section */
      .hero {
       background: url('https://images.unsplash.com/photo-1709240987503-6e31155c88ab?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NTY1fHxpbWFnZXMlMjAzRCUyMGZvciUyMGElMjB0ZWNoJTIwY29tcGFueSUyMHdlYnNpdGV8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&q=60&w=500')
    center/cover no-repeat;color: white;
        padding: 180px 0 120px;
        position: relative;
        overflow: hidden;
      }

      .hero-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
      }

      .hero h1 {
        font-size: 3.5rem;
        color: #00e6a4;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease forwards 0.5s;
      }

      .hero p {
        font-size: 1.3rem;
        margin-bottom: 40px;
        opacity: 0.9;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease forwards 0.8s;
      }

      .hero-btns {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease forwards 1.1s;
      }

      .hero .btn-secondary {
        color: white;
        border-color: white;
      }

      .hero .btn-secondary:hover {
        background-color: white;
        color: var(--navy);
      }

      .hero-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
      }

      .shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(
          135deg,
          rgba(0, 119, 255, 0.1) 0%,
          rgba(0, 196, 108, 0.1) 100%
        );
      }

      .shape-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -100px;
        animation: float 20s infinite ease-in-out;
      }

      .shape-2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: -50px;
        animation: float 15s infinite ease-in-out reverse;
      }

/* Stats Counter */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.5s forwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--secondary);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Particle Background */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatParticle 6s infinite ease-in-out;
}

/* ===== CONTENT SECTIONS ===== */
/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  background-color: black;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* CEO Section */
.ceo-section {
  background-color: black;
  color: rgba(255, 255, 255, 0.726);
}

.ceo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.ceo-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.ceo-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.884));
}

.ceo-quote {
  font-style: italic;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}

/* Achievements Section */
.achievements-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.achievement-item {
  padding: 30px 20px;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 10px;
}

.achievement-text {
  font-size: 1.1rem;
  font-weight: 400;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  background-color: var(--light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--primary);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-role {
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 15px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: black;
  transition: var(--transition);
}

.member-social a:hover {
  background-color: var(--primary);
  color: var(--light);
}

.member-p {
  color: black;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgb(151, 153, 151), rgb(0, 0, 0)),
    url("https://images.unsplash.com/photo-1565688840395-37f27d1e7a9d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80");
  background-size: cover;
  background-position: center;
  color: var(--light);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* ===== FOOTER ===== */
footer {
  background-color: black;
  color: var(--light);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary);
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-links h3:after,
.footer-contact h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact ul li i {
  color: var(--primary);
  margin-top: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: var(--primary);
  color: var(--light);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-quote:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(120deg); }
  66% { transform: translateY(15px) rotate(240deg); }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAVIGATION FIXES ===== */
@media (max-width: 768px) {
  /* Header should always be solid on mobile */
  header {
    background-color: var(--dark) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: block !important;
    z-index: 1002;
    position: relative;
  }

  /* Hide desktop navigation by default on mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, #000000 100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 30px 30px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    gap: 0;
  }

  /* Show navigation when active */
  .nav-links.active {
    display: flex;
    transform: translateX(0);
  }

  .nav-links li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 18px 0;
    display: block;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    color: var(--light);
    position: relative;
    z-index: 1002;
  }

  .nav-links a:hover {
    color: #e2b00d;
    padding-left: 15px;
  }

  .nav-links a.active {
    color: #e2b00d;
    font-weight: 400;
    padding-left: 15px;
  }

  .nav-links a.active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
  }

  /* Remove the underline effect on mobile */
  .nav-links a:after {
    display: none;
  }

  /* Menu Overlay - FIXED VERSION */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Adjust header for mobile */
  .navbar {
    padding: 12px 0;
  }

  /* Fix logo size on mobile */
  .logo-image {
    height: 35px;
    margin-left: 0;
  }

  /* Page Hero Mobile Fixes */
  .page-hero {
    height: 60vh;
    min-height: 400px;
    background-attachment: scroll;
    margin-top: 0;
  }
  
  .page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .page-hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Section Padding Mobile */
  .section {
    padding: 50px 0;
  }
  
  .section-title, .section-titles {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  /* Grid Layouts Mobile */
  .about-grid,
  .ceo-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  /* Button Mobile */
  .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 250px;
  }

  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-cta {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  
  .page-hero {
    height: 50vh;
    min-height: 350px;
  }
  
  .page-hero h1 {
    font-size: 1.6rem;
  }
  
  .hero-cta {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .sticky-quote {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 0.8rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
}

/* Remove scroll effect on mobile - header always sticky */
@media (max-width: 768px) {
  header.scrolled {
    background-color: var(--dark) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Enhanced hamburger animation */
.hamburger.active {
  transform: rotate(90deg);
  color: var(--primary);
}