/* Root Variables */
:root {
  --primary-color: #eb4d14;
  --secondary-color: #031070;
  --light-color: #f4f4f4;
  --dark-color: #292929;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background: #ee2405;
  transform: translateY(-3px);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 80px;
  background: #fff;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(211, 205, 205, 0.9);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: 200px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
  position: relative;
}

.nav-links a {
  color: #080808;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 5px 5px;
  z-index: 1001;
}

.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: #333;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background: #f4f4f4;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #333;
  transition: all 0.3s ease;
}

/* Hero Section */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 60vh;
  min-height: 550px;
  background: url('../images/about_homepage.jpg') no-repeat center center/cover;
  text-align: left;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  color: #e94128;
}

.hero-content h1 span {
  color: var(--secondary-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  color: #090101;
}

/* Animation Classes */
.animate-from-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Content Sections */
.vision-section,
.mission-section,
.values-section {
  padding: 80px 0;
}

.vision-section { background: #031240; }
.mission-section { background: #ac2102; }
.values-section { background: #e63108; }

.vision-content,
.mission-content,
.values-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.vision-text,
.mission-text,
.values-text {
  flex: 1 1 500px;
  padding: 20px;
  color: #fff;
}

.vision-text h3,
.mission-text h3,
.values-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.vision-text p,
.mission-text p,
.values-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.mv-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 25px;
  margin-bottom: 20px;
}

.vision-image,
.mission-image,
.values-image {
  flex: 1 1 400px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vision-image img,
.mission-image img,
.values-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vision-image:hover img,
.mission-image:hover img,
.values-image:hover img {
  transform: scale(1.05);
}

/* CTA Section */
.cta {
  padding: 80px 20px;
  background: #040449;
  text-align: center;
  color: #fff;
}

.cta h2 {
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.cta .btn-primary {
  width: 200px;
  height: 50px;
  font-size: 1.2rem;
  border-radius: 30px;
  padding: 10px;
}

/* Footer */
.footer {
  background: #282829;
  color: #fff;
  padding: 80px 20px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: var(--primary-color);
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  color: var(--primary-color);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-col ul li:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-col ul li i {
  margin-right: 10px;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { font-size: 1rem; }
}

@media (max-width: 768px) {
  .vision-content,
  .mission-content,
  .values-content {
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0; left: -100%;
    width: 100%; height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
  }
}

@media (max-width: 576px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  .cta p {
    font-size: 1rem;
  }
}
