/* ================= General Reset & Body ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0b0f19;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

/* ================= Header ================= */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(15, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.main-header.shrink {
  padding: 6px 60px;
  background: rgba(10, 10, 18, 0.95);
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #ff9800;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff9800;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff9800;
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hamburger for Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 26px;
  background: #fff;
  margin: 4px 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: rgba(15, 15, 25, 0.98);
    width: 260px;
    height: calc(100vh - 70px);
    padding: 30px;
    transition: right 0.4s ease;
  }
  .nav-menu.active {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
}

/* ================= Hero / Slider ================= */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 2;
}

.overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5,5,15,0.85), rgba(5,5,15,0.4));
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
  padding: 60px;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg,#ff9800,#ff6a00);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(255,152,0,0.3);
  transition: all 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,152,0,0.45);
}

/* Slider Arrows & Dots */
.slider-arrows {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 5;
}

.slider-arrows span {
  font-size: 22px;
  color: #fff;
  background: rgba(255,255,255,0.15);
  padding: 10px 14px;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.slider-arrows span:hover {
  background: #ff9800;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 5;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  margin-right: 8px;
}

.dot.active {
  background: #ff9800;
}

/* ================= Sections ================= */
.content {
  padding: 80px 10%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
  padding: 30px 0;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Stats Section */
.stats-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 60px 10%;
  background: rgba(255,255,255,0.03);
  text-align: center;
}

.stats-section .stat h3 {
  font-size: 32px;
  color: #ff9800;
}

.stats-section .stat p {
  font-size: 14px;
  color: #ddd;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: #060912;
}

/* ================= Footer ================= */
.site-footer {
  background: linear-gradient(180deg, #060912, #04060c);
  color: rgba(255,255,255,0.85);
  padding: 80px 10% 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 16px;
  color: #ff9800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff9800;
  padding-left: 5px;
}

/* Social Icons */
.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ff9800;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding: 25px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ================= Scroll to Top ================= */
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  background: #ff9800;
  color: #fff;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  display: none;
}

#scrollTopBtn:hover {
  background: #ff6a00;
  transform: translateY(-3px);
}

/* ================= Responsive ================= */
@media (max-width: 900px) {
  .stats-section {
    flex-direction: column;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-content {
    padding: 40px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
}

/* ================= Home Page Section Specific Styles ================= */
#home-page .hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#home-page .hero-slider .slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.8s ease-in-out;
}

#home-page .hero-slider .slide.active {
  opacity: 1;
  position: relative;
}

#home-page .hero-slider .overlay {
  background: rgba(0,0,0,0.5);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home-page .hero-slider .hero-content h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 20px;
}

#home-page .hero-slider .hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 30px;
}

#home-page .hero-slider .btn {
  background: #ff9800;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

#home-page .hero-slider .btn:hover {
  background: #ff6a00;
}

/* About Section */
#home-page .about-section h2 {
  color: #060912;
  font-size: 36px;
  margin-bottom: 20px;
}

#home-page .about-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* Services Section */
#home-page .services-section .card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
}

#home-page .services-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Stats Section */
#home-page .stats-home .stat {
  text-align: center;
  margin-bottom: 20px;
}

#home-page .stats-home .stat h3 {
  font-size: 32px;
  color: #ff9800;
}

#home-page .stats-home .stat p {
  font-size: 14px;
  color: #333;
}

/* CTA Section */
#home-page .cta-section {
  text-align: center;
  background: #060912;
  color: #fff;
  padding: 60px 20px;
}

#home-page .cta-section .btn {
  background: #ff9800;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
}
/*solutions*/
/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.solutions-section .overlay {
  background: rgba(5, 8, 18, 0.78);
  padding: 100px 10%;
}

.section-title {
  font-size: 42px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  margin: 0 auto 60px;
}

.solutions-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.solution-card {
  text-align: center;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 18px;
  transition: all 0.35s ease;
}

.solution-card i {
  font-size: 42px;
  color: #ff9800;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.solution-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Disable parallax on mobile */
@media (max-width: 768px) {
  .solutions-section {
    background-attachment: scroll;
  }
}
/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
}

/* ===== PARALLAX BASE ===== */
.parallax-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.parallax-bg .overlay {
  background: linear-gradient(
    to right,
    rgba(5,8,18,0.85),
    rgba(5,8,18,0.6)
  );
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #fff;
}

.why-list {
  list-style: none;
  max-width: 700px;
}

.why-list li {
  font-size: 18px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.9);
}

.why-list i {
  color: #ff9800;
  font-size: 20px;
}

/* ===== STATS GRADIENT ===== */
.gradient-bg {
  background: linear-gradient(135deg, #0b0f19, #1e3c72);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 40px;
  text-align: center;
}

.stat h3 {
  font-size: 48px;
  color: #ff9800;
  margin-bottom: 10px;
}

.stat p {
  font-size: 15px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
}

/* ===== CTA ===== */
.cta-section h2 {
  font-size: 44px;
  margin-bottom: 20px;
  color: #fff;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .container {
    padding: 70px 20px;
  }
  .why-choose-section h2,
  .cta-section h2 {
    font-size: 32px;
  }
}

.services-section {
  background: #ffffff;
  color: #111;
}

.section-title h2 {
  font-size: 40px;
}

.section-title p {
  color: #666;
  margin-bottom: 50px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.services-section .card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.services-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.services-section i {
  font-size: 38px;
  color: #ff9800;
  margin-bottom: 20px;
}

.about-section {
  background: #f8f9fc;
  color: #222;
}

.about-section h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about-section p {
  max-width: 850px;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}
/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
}

/* ===== PARALLAX BASE ===== */
.parallax-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.parallax-bg .overlay {
  background: linear-gradient(
    to right,
    rgba(5,8,18,0.85),
    rgba(5,8,18,0.6)
  );
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #fff;
}

.why-list {
  list-style: none;
  max-width: 700px;
}

.why-list li {
  font-size: 18px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.9);
}

.why-list i {
  color: #ff9800;
  font-size: 20px;
}

/* ===== STATS GRADIENT ===== */
.gradient-bg {
  background: linear-gradient(135deg, #0b0f19, #1e3c72);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 40px;
  text-align: center;
}

.stat h3 {
  font-size: 48px;
  color: #ff9800;
  margin-bottom: 10px;
}

.stat p {
  font-size: 15px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
}

/* ===== CTA ===== */
.cta-section h2 {
  font-size: 44px;
  margin-bottom: 20px;
  color: #fff;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .container {
    padding: 70px 20px;
  }
  .why-choose-section h2,
  .cta-section h2 {
    font-size: 32px;
  }
}

/* ===== INNER HERO (ABOUT) ===== */
.about-hero {
  height: 65vh;
  background: linear-gradient(135deg, #0b0f19, #1e3c72);
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-hero-overlay {
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255,152,0,0.15),
    rgba(0,0,0,0.6)
  );
  display: flex;
  align-items: center;
}

.inner-hero-content {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.inner-hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.inner-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== ABOUT PAGE CONTENT ===== */
.about-page {
  background: #f8f9fc;
  color: #222;
}

.about-intro h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about-intro p {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* ===== MISSION & VISION ===== */
.mission-vision-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
/* ================= Inner Hero Section ================= */
.inner-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* overlay for readability */
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 900px;
}

.inner-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.inner-hero p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .inner-hero {
    min-height: 38vh;
  }

  .inner-hero h1 {
    font-size: 28px;
  }

  .inner-hero p {
    font-size: 15px;
  }
}
/*contct form */
/* ================= Contact Section ================= */
.contact-section {
  padding: 80px 20px;
  background: #0b0f1a;
  color: #fff;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-info p {
  opacity: 0.9;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* Form */
.contact-form form {
  display: grid;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 14px;
  background: #ff7a18;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #ff8c3a;
}

/* Map */
.map-section iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 50px 15px;
  }
}

/*solutions*/
.solutions-grid-section {
  padding: 80px 20px;
  background: #0f1322;
}

.solutions-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.solution-card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
  color: #fff;
  transition: transform 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
}

.solution-card i {
  font-size: 36px;
  color: #ff7a18;
  margin-bottom: 15px;
}

.solution-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.solution-card ul {
  margin-top: 10px;
  padding-left: 18px;
}

.solution-card li {
  font-size: 14px;
  opacity: 0.85;
}

/* Process */
.solutions-process .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.process-steps div {
  background: #11152a;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.process-steps span {
  font-size: 28px;
  font-weight: 700;
  color: #ff7a18;
}
/*service pge*/
/* =====================================================
   SERVICES PAGE ONLY (SCOPED)
===================================================== */

#services-page {}

/* ---------- INNER HERO ---------- */
#services-page .inner-hero {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#services-page .inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(5,10,25,0.85),
    rgba(5,10,25,0.65)
  );
}

#services-page .inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

#services-page .inner-hero-content h1 {
  font-size: 52px;
  color: #fff;
  margin-bottom: 15px;
}

#services-page .inner-hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}

/* ---------- PAGE CONTENT ---------- */
#services-page .services-intro,
#services-page .service-block,
#services-page .services-why {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

#services-page h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #060912;
}

#services-page p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

/* ---------- SERVICE BLOCK ---------- */
#services-page .service-block {
  border-left: 4px solid #ff9800;
  padding-left: 30px;
}

#services-page .service-block.alt-bg {
  background: #f8f9fb;
  border-left-color: #060912;
  padding: 80px 40px;
}

/* ---------- WHY CHOOSE ---------- */
#services-page .services-why {
  background: linear-gradient(120deg, #060912, #0b0f19);
}

#services-page .services-why h2 {
  color: #fff;
}

#services-page .services-why p {
  color: rgba(255,255,255,0.85);
}

/* ---------- CTA ---------- */
#services-page .cta-section {
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

#services-page .cta-section h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

#services-page .cta-section p {
  font-size: 17px;
  margin-bottom: 30px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  #services-page .inner-hero-content h1 {
    font-size: 38px;
  }

  #services-page .services-intro,
  #services-page .service-block,
  #services-page .services-why {
    padding: 60px 20px;
  }
}

@media (max-width: 600px) {
  #services-page .inner-hero {
    min-height: 50vh;
  }

  #services-page .inner-hero-content h1 {
    font-size: 30px;
  }

  #services-page h2 {
    font-size: 28px;
  }

  #services-page .cta-section h2 {
    font-size: 30px;
  }
}

.mv-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.mv-card i {
  font-size: 42px;
  color: #ff9800;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.mv-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .about-hero {
    height: 55vh;
  }

  .inner-hero-content h1 {
    font-size: 32px;
  }

  .inner-hero-content p {
    font-size: 16px;
  }

  .about-intro h2 {
    font-size: 30px;
  }
}
