:root {
  --primary: #b30000; /* Maroon/Red */
  --secondary: #d4af37; /* #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: "Poppins", sans-serif;
  line-height: 1.6;
  color: white;
  background-color: black;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color:#e2b00d;
}

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: red;
}

.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: red;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 4px;
  font-weight: 500;
  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: rgba(26, 26, 26, 0);
  transition: var(--transition);
}

header.scrolled {
  background-color: var(--dark);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.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: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: #e2b00d;
}

.nav-links a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e2b00d;
  transition: var(--transition);
}

.nav-links a:hover:after {
  width: 100%;
}

.nav-links a.active {
  color: #e2b00d;
}

.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: 100px;
  width: auto;
  transition: all 0.3s ease;
  margin-left: -35px;
}

.footer-logo-image {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  height: 100vh;
  min-height: 700px;
  background: 
    linear-gradient(135deg, 
      rgba(179, 0, 0, 0) 0%, 
      rgba(212, 175, 55, 0) 50%,
      rgba(0, 0, 0, 0.418) 100%),
    url("ilovelkitui.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

/* Animated Background Overlay */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(179, 0, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(26, 26, 26, 0.3) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
}

/* Floating Elements */
.page-hero::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-hero h1 {
  font-family: 'Amonos', 'Anonymous Pro', monospace;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 2.0rem;
  background: linear-gradient(135deg, #e2b00d 0%, #e2b00d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  
}

.page-hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
  line-height: 1.6;
  font-weight: 300;
  color: white;
}

/* Animated CTA Button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: red;
  color: var(--light);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.9s forwards;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(179, 0, 0, 0.3);
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.6s ease;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(179, 0, 0, 0.4);
  background: var(--gradient-secondary);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--light);
  text-decoration: none;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.scroll-indicator span {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 8px;
  opacity: 0.8;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 2px;
  height: 30px;
  background: var(--light);
  margin: 0 auto;
  animation: bounce 2s infinite;
}

/* 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: 800;
  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: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.achievement-text {
  font-size: 1.1rem;
  font-weight: 500;
}

/* 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: 500;
  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: 600;
    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);
}