/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ================= NAVBAR (SAME AS HOME) ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 8px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  z-index: 1000;
  transition: all 0.4s ease;
}

header.scrolled {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.logo img {
  width: 230px;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

header.scrolled nav ul li a {
  color: #000;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff2e2e;
}

/* =========================
   HAMBURGER MENU
========================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: 0.3s ease;
}

/* Change hamburger color when scrolled */
header.scrolled .hamburger span {
  background: #000;
}

/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 768px) {

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Hide desktop nav */
  nav ul {
    display: none;
  }

  /* Mobile slide menu */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100vh;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 1500;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  nav ul li a {
    font-size: 18px;
    color: #fff;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

}

/* ================= ABOUT HERO ================= */
.about-hero {
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)
  ), url("images/home2.jpg") center/cover no-repeat;
  height: 60vh;
  padding-top: 160px;
  display: flex;
  align-items: center;
  padding-left: 5%;

}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero p {
  color: #ccc;
  max-width: 500px;
}


/* ================= ABOUT MAIN ================= */
.about-main {
  background: #fff;
  padding: 80px 5%;
  color: #000;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
}

/* Images */
.about-images {
  flex: 1 1 450px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-images img {
  width: 100%;
  border-radius: 10px;
}

/* Text */
.about-text {
  flex: 1 1 450px;
}

.section-tag {
  color: #ff2e2e;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-text h2 {
  font-size: 34px;
  margin: 10px 0 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-highlight {
  border-left: 4px solid #ff2e2e;
  padding-left: 15px;
  margin-top: 20px;
  color: #333;
}

/* ================= WHAT WE DO ================= */
.what-we-do {
  background: #f8f8f8;
  padding: 80px 5%;
  text-align: center;
  color: #000;
}

.what-we-do h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.services-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.service-box.highlight {
  background: #ff2e2e;
  color: #fff;
}

.service-box h3 {
  margin-bottom: 15px;
}

.service-box p {
  font-size: 14px;
  line-height: 1.6;
}

.service-box a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 600;
  color: inherit;
}

/* ================= FOOTER (SAME AS HOME) ================= */
.site-footer {
  background: #000;
  color: #fff;
  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 5% 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: -55px;
  margin-top: -50px;
}

.footer-about {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-box h4 {
  color: #ff2e2e;
  margin-bottom: 15px;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-box ul li a:hover {
  color: #ff2e2e;
}

/* Social Icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  background: #111;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #ff2e2e;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 20px 5%;
  font-size: 13px;
  color: #aaa;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  header {
    padding: 0 25px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-hero h1 {
    font-size: 32px;
  }
}

.mv-exact {
  position: relative;
  padding: 100px 5%;
  background: #fff;
  color: #000;
}

/* =========================
   VERTICAL HEADING
========================= */

.mv-heading-row.vertical {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}

.mv-heading-row.vertical h2 {
  transform: rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
  font-size: 58px;
  font-weight: 800;
  margin: 0;
}

/* DIVIDER */

.mv-divider {
  display: flex;
  gap: 10px;
}

.mv-heading-row.vertical .mv-divider {
  flex-direction: column;
     margin-left: -30%;
     margin-top: 60%;

}

.mv-divider .line.dark {
  width: 4px;
  height: 80px;
  background: #000;
  
}

.mv-divider .line.red {
  width: 4px;
  height: 40px;
  background: #ff2e2e;

}

/* =========================
   ROW STRUCTURE
========================= */

.mv-row-exact {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  margin-bottom: 100px;
}

.mv-left.empty {
  visibility: hidden;
}

/* =========================
   RIGHT SIDE
========================= */

.mv-right {
  position: relative;
}

/* PANEL */

.mv-panel {
  background: #f2f2f2;
  padding: 40px 40px 40px 140px;
  border-radius: 6px;
  min-height: 180px;
}

.mv-panel h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.mv-panel p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* =========================
   CIRCLE IMAGE
========================= */

.mv-circle {
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
}

.mv-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.mv-circle.vision img {
  filter: grayscale(100%) contrast(1.1);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .mv-heading-row.vertical {
    position: static;
    transform: none;
    margin-bottom: 40px;
  }

  .mv-heading-row.vertical h2 {
    transform: none;
  }

  .mv-heading-row.vertical .mv-divider {
    flex-direction: row;
  }

  .mv-row-exact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mv-left.empty {
    display: none;
  }

  .mv-circle {
    position: static;
    transform: none;
    margin-bottom: 20px;
  }

  .mv-panel {
    padding: 30px;
  }
}


/* =========================================
   RESPONSIVE FIXES – BODY SECTIONS ONLY
========================================= */

/* ===== TABLET (≤1024px) ===== */
@media (max-width: 1024px) {

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-text {
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px) {

  /* Hero spacing fix */
  .about-hero {
    height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .about-hero p {
    font-size: 14px;
    margin: auto;
  }

  /* About images full width */
  .about-images {
    grid-template-columns: 1fr;
  }

  /* Reduce section padding */
  .about-main,
  .what-we-do,
  .mv-exact {
    padding: 60px 20px;
  }

  /* Services single column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    padding: 25px 20px;
  }

  /* Mission Vision */
  .mv-panel {
    padding: 25px;
  }

  .mv-heading-row.vertical h2 {
    font-size: 36px;
  }

}


/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {

  .about-hero h1 {
    font-size: 24px;
  }

  .about-text h2 {
    font-size: 22px;
  }

  .what-we-do h2 {
    font-size: 24px;
  }

  .mv-heading-row.vertical h2 {
    font-size: 28px;
  }

  .mv-panel p {
    font-size: 14px;
  }

}


/* =========================================
   REMOVE VERTICAL LINE ON MOBILE
========================================= */

@media (max-width: 768px) {

  .mv-divider {
    display: none !important;
  }

}
/* =========================================
   SHOW ONLY ONE IMAGE ON MOBILE
========================================= */

@media (max-width: 768px) {

  .about-images img:not(:first-child) {
    display: none;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

}

/* =========================================
   COMBINE IMAGE + BOX TOGETHER (MOBILE)
========================================= */

@media (max-width: 768px) {

  .mv-row-exact {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f2f2f2;
    padding: 15px;
    border-radius: 8px;
  }

  .mv-circle {
    position: static;
    transform: none;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .mv-panel {
    background: transparent;
    padding: 0;
    min-height: auto;
  }

  .mv-panel h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .mv-panel p {
    font-size: 13px;
    line-height: 1.5;
  }

}

/* =========================================
   FIX RED QUOTE BOX ON MOBILE
========================================= */

@media (max-width: 768px) {

  .quote-box {
    position: static !important;
    margin: 20px auto 0;
    max-width: 100%;
  }

}