/* style.css */
/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #121212;
}

header {
  position: relative;
  z-index: 1000;
}

/* HEADER */
.site-header {
  width: 100%;
  padding: 15px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-bottom: 2px solid #eee;
  position: relative;
  z-index: 1000;
}

/* Logo + Company name */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 100px;
  height: auto;
}

.company-name {
  font-weight: bold;
  font-size: 1.2rem;
  color: #bfa145; /* gold */
}

/* Navigation */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: #121212;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #bfa145;
}

/* CTA Button */
.cta-btn {
  background: #bfa145;
  color: #121212;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #121212;
  color: #bfa145;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #121212;
  border-radius: 5px;
  transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar ul {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    transition: left 0.3s ease-in-out;
  }

  .navbar ul.open {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .cta-btn {
    display: none; /* hide CTA on small screens or move inside menu */
  }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Hero Section */
.about-hero {
  position: relative;
  height: 100vh;
  background: url('images/abt\ home.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 34, 57, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #bfa145;
  margin-bottom: 15px;
  animation: slideDown 1.2s ease-in-out;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f9f9f9;
  animation: fadeIn 2s ease-in-out;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { transform: translateY(-60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar.active .nav-links {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    padding: 20px 0;
    gap: 15px;
    text-align: center;
  }

  .navbar.active .nav-links ul {
    flex-direction: column;
  }

  .cta-btn {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}









/* About Section */
/* General */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #121212;
  line-height: 1.6;
}

/* Section */
.about-section {
  padding: 4rem 8%;
  text-align: center;
}

/* Heading */
.about-heading {
  font-size: 2.8rem;
  color: #bfa145;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.about-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #bfa145;
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
  animation: expand 2s infinite alternate;
}

@keyframes expand {
  from { width: 40px; }
  to { width: 80px; }
}

.about-intro {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #333;
}

/* Mission & Vision */
.mission-vision {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.mv-box {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
  border: 2px solid #bfa145;
  border-radius: 12px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-box h3 {
  color: #bfa145;
  margin-bottom: 1rem;
}

.mv-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Values */
/* Core Values Section */
/* Core Values - unique, responsive, icons included */
.core-values,
section.core-values { /* support both selectors if you embed differently */ }
.core-values { padding: 48px 5%; background: #ffffff; color: #121212; }

/* Header */
.section-header {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 700;
  color: #bfa145;
  font-size: 2.25rem;
  margin: 0 auto 28px;
  text-align: center;
  display: block;
  position: relative;
  max-width: 700px;
}
.section-header::after {
  content: "";
  height: 4px;
  width: 80px;
  background: #121212;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
  transform-origin: left center;
  animation: header-underline .9s ease both;
}
@keyframes header-underline {
  from { transform: scaleX(0); opacity:0; }
  to   { transform: scaleX(1); opacity:1; }
}

/* Grid / Row: horizontal on desktop */
.values-grid {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap; /* horizontal row */
  margin-top: 28px;
}

/* Card */
.value-card {
  --card-w: 160px;
  width: var(--card-w);
  height: 160px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s ease, border-color .28s ease, background .28s ease;
  cursor: pointer;
  flex: 0 0 auto;
}

/* Icon */
.value-card .icon svg { width: 48px; height: 48px; display:block; transition: transform .28s ease; }

/* Title */
.value-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #121212;
}

/* Hover & focus (keyboard accessible) */
.value-card:hover,
.value-card:focus {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 40px rgba(191,161,69,0.14); /* soft gold glow */
  border-color: #bfa145;
  background: linear-gradient(180deg, #fff, rgba(255,250,230,0.6));
}
.value-card:hover .icon svg,
.value-card:focus .icon svg {
  transform: rotate(8deg) scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(191,161,69,0.18));
}

/* MOBILE: keep horizontal on wider phones but switch to 3 top / 2 bottom layout on smaller screens */
@media (max-width: 820px) {
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "v1 v2 v3"
      ".  v4 v5";
    gap: 12px;
    justify-items: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }
  .values-grid > .value-card:nth-child(1) { grid-area: v1; }
  .values-grid > .value-card:nth-child(2) { grid-area: v2; }
  .values-grid > .value-card:nth-child(3) { grid-area: v3; }
  .values-grid > .value-card:nth-child(4) { grid-area: v4; }
  .values-grid > .value-card:nth-child(5) { grid-area: v5; }

  /* Make cards smaller on mobile */
  .value-card { width: 120px; height: 120px; }
  .value-card .icon svg { width: 34px; height: 34px; }
  .value-card h3 { font-size: 0.92rem; }
}

/* Small devices: tighten spacing */
@media (max-width: 420px) {
  .value-card { width: 110px; height: 110px; }
  .value-card .icon svg { width: 30px; height: 30px; }
  .section-header { font-size: 1.5rem; }
}












/* Leadership Section */
.leadership {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/abt2.jpg') center/cover no-repeat; /* replace with your image */
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.leadership-container {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.5s ease-out;
}

.leadership h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #bfa145;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.leadership h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #bfa145;
  margin: 10px auto 0;
}

.leadership p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #f1f1f1;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .leadership h2 {
    font-size: 1.8rem;
  }

  .leadership p {
    font-size: 1rem;
  }
}



/* Footer Styling */
.footer {
  background:  rgb(35, 35, 35);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
}

.footer h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #bfa145;
  margin-top: 8px;
  border-radius: 2px;
}

.footer p, 
.footer a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #bfa145;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}



.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a img {
  width: 30px;   /* adjust size */
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);  /* zoom on hover */
}



.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.footer-bottom span {
  color: #bfa145;
  font-weight: 600;
}
