/* ================= 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;
}

/* ================= 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;
  }
}
