html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
}
/* ---------- TOP BAR ---------- */
.top-bar {
  background: #b22222; /* adjust tone later if needed */
  font-size: 14px;
  letter-spacing: 0.5px;
}
/* SOCIAL ICONS */
.social-icons a {
  color: #fff;
  font-size: 18px;
  margin-left: 15px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #000000; /* brand red hover */
}

.top-bar a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
  transition: 0.3s;
}
.top-bar a:hover {
  opacity: 0.8;
}

/* ---------- MAIN NAV ---------- */
.main-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-family: "Montserrat", sans-serif;
}

.navbar-nav .nav-link {
  color: #004f6a;
  font-size: 15px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #b22222; /* brand red underline */
  transition: 0.3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Logo scaling */
.navbar-brand img {
  height: 55px;
}

.navbar-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* ============ HERO BANNER STYLE ============ */
.hero-banner {
  position: relative;
  height: 75vh;
  background: url("assets/bg1.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Dark gradient for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

/* Central text block style */
.hero-content-box {
  position: relative;
  background: rgba(
    0,
    95,
    127,
    0.85
  ); /* teal-blue overlay similar to your example */
  padding: 40px 70px;
  text-align: center;
  color: #fff;
  max-width: 900px;
  border-left: 6px solid #b22222; /* brand red accent */
}

/* Title formatting */
.hero-content-box h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Thin line */
.hero-content-box .divider {
  width: 80%;
  height: 2px;
  background: #ffffff;
  margin: 15px auto;
  opacity: 0.5;
}

/* subtitle */
.hero-content-box p {
  font-size: 1.3rem;
  margin-top: 10px;
  font-weight: 300;
  opacity: 0.9;
}

/* responsive */
@media (max-width: 768px) {
  .hero-content-box {
    padding: 25px 30px;
  }
  .hero-content-box h1 {
    font-size: 2rem;
  }
  .hero-content-box p {
    font-size: 1rem;
  }
  .social-icons {
    display: none;
  }
}
/* --------- Why Choose Us --------- */
.why-choose-us {
  background: #f5f5f5;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
}

.section-subtitle {
  opacity: 0.7;
  margin-top: 10px;
  font-size: 1.1rem;
}

.choose-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  border-top: 4px solid #b22222;
}

.choose-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Icons */
.icon-box i {
  font-size: 40px;
  color: #b22222;
}

/* ================== GLASSMORPHISM SERVICE SECTION ================== */

.services-glass {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0f14 0%, #1a1f24 100%);
  color: #fff;
}

/* Headings */
.glass-title {
  font-size: 2.3rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.glass-subtitle {
  width: 70%;
  margin: auto;
  font-size: 1.1rem;
  opacity: 0.75;
}

/* Grid */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Card style */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 35px 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  transition: 0.35s;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}
.glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

/* Center last two cards */
.glass-card:nth-last-child(2),
.glass-card:nth-last-child(1) {
  grid-column: span 1;
}

@media (max-width: 992px) {
  .glass-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .glass-grid {
    grid-template-columns: 1fr;
  }
}

.glass-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 45px rgba(178, 34, 34, 0.55);
  border-color: #b22222;
}

/* Icons */
.glass-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 30px;
  color: #b22222;
  font-weight: bold;
}

/* Titles */
.glass-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .glass-subtitle {
    width: 100%;
  }
}
/* ================= CTA Section ================= */
.cta-section {
  position: relative;
  padding: 110px 0;
  background: url("assets/cta3.jpg") center/cover no-repeat; /* Add your background */
  text-align: center;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

/* CTA content */
.cta-content {
  position: relative;
  color: #fff;
  max-width: 700px;
  margin: auto;
}

.cta-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.cta-content p {
  font-size: 1.15rem;
  opacity: 0.85;
  margin: 15px 0 30px;
}

/* Button */
.cta-btn {
  display: inline-block;
  background: #b22222;
  color: #fff;
  padding: 14px 38px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.35s;
  font-size: 1rem;
}

.cta-btn:hover {
  background: #8e1616;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.9rem;
  }
}
/* ================= TESTIMONIALS — LIGHT VERSION ================= */

.testimonials-section-light {
  background: #ffffff;
  padding: 100px 0;
  color: #222;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Light frosted look */
.testimonial-card-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.35s;
}

.testimonial-card-light:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
  border-color: #b22222;
}

/* Text */
.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #333;
}

/* Client Info */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

/* ================= TESTIMONIAL AVATAR ================= */

.client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #b22222; /* brand red */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* Align avatar + text */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Optional: subtle shadow for depth */
.client-avatar {
  box-shadow: 0 4px 12px rgba(178, 34, 34, 0.35);
}

.client-name {
  font-weight: 700;
  margin-bottom: 2px;
}

.client-info span {
  opacity: 0.75;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-card-light {
    text-align: center;
  }
  .client-info {
    justify-content: center;
  }
}
/* ================= FOOTER DARK ================= */

.footer-dark {
  background: #0a0f14;
  color: #d9d9d9;
}

/* FOOTER LOGO */
.footer-logo-img {
  height: 110px; /* Bigger logo */
  width: auto;
  filter: brightness(95%);
  object-fit: contain;
}

.footer-about {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 330px;
}

/* Titles */
.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cfcfcf;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #b22222;
}

/* Social Icons */
.footer-social a {
  color: #cfcfcf;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #b22222;
}

.footer-bottom p {
  font-size: 0.88rem;
  opacity: 0.65;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 15px;
}
/* ================= ABOUT PAGE STYLES ================= */

/* Hero */
.about-hero {
  height: 45vh;
  background: url("assets/about.jpg") center/cover no-repeat;
  position: relative;
  color: white;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.about-hero .container {
  position: relative;
}
.about-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
}
.about-hero p {
  opacity: 0.85;
  margin-top: 10px;
}

/* ============================================================
   ABOUT SECTION - OVERLAY CARD + EXTENDED IMAGE (NO RADIUS)
   ============================================================ */

.about-overlay-section {
  background: #f5f5f5;
  position: relative;
  padding: 110px 0;
}

.about-overlay-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

/* ======================= TEXT CARD ======================= */
.about-text-card {
  background: #b22222; /* deep premium blue */
  color: #fff;
  padding: 45px 40px;
  width: 48%;
  min-width: 350px;
  z-index: 3;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  border-radius: 0; /* ← removed rounding */
  position: relative;
  margin-right: 0; /* ← OVERLAP INTO IMAGE */
  margin-top: 50px; /* ← makes image appear taller */
}

.about-text {
  font-size: 1.06rem;
  line-height: 1.68;
}

.about-social a {
  color: #fff;
  background: #b22222;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px; /* square modern icon buttons */
  margin-right: 10px;
  font-size: 1.15rem;
  transition: 0.3s;
}
.about-social a:hover {
  background: #8e1616;
}

/* ======================= IMAGE SIDE ======================= */
.about-image-box {
  width: 52%;
  min-width: 350px;
  position: relative;
  z-index: 1;
}

.about-img {
  width: 100%;
  height: 460px; /* 🔥 Taller image */
  object-fit: cover;
  border-radius: 0; /* ← removed rounding */
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.22);
}

/* ======================= RESPONSIVE HANDLING ======================= */
@media (max-width: 992px) {
  .about-overlay-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .about-text-card {
    width: 100%;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: -40px; /* keeps overlap feel slightly */
  }

  .about-image-box {
    width: 100%;
  }

  .about-img {
    height: 350px;
  }
}

@media (max-width: 600px) {
  .about-text-card {
    padding: 30px;
  }
  .about-img {
    height: 300px;
  }
}

/* ================= JOURNEY SECTION ================= */

.journey-section {
  background: #fff;
  padding: 100px 0;
}

/* Founder cards */
.founder-card {
  text-align: center;
}

.founder-image-wrapper {
  position: relative;
}

.founder-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* LinkedIn icon */
.linkedin-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #0a66c2;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.founder-card h4 {
  margin-top: 18px;
  font-weight: 700;
}

.role {
  display: block;
  font-size: 0.9rem;
  opacity: 0.7;
}

.contact {
  margin-top: 6px;
  font-size: 0.95rem;
}

.bio {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Shared journey story */
.journey-story {
  margin-top: 70px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  background: #f7f7f7;
  border-left: 6px solid #b22222;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   MISSION & VALUES SECTION - RED + DIVIDER STYLE
   ============================================================ */

.mission-values-red {
  background: #b22222; /* Brand red */
  padding: 90px 0;
  color: #fff;
}

/* Title styling */
.mission-values-red .section-title {
  color: #fff;
  font-weight: 700;
}

/* Flex layout for three items */
.mv-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* Individual item style */
.mv-item {
  flex: 1;
  padding: 0 20px;
}

.mv-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* vertical line */
.mv-divider {
  width: 2px;
  background: rgba(255, 255, 255, 0.4);
  height: 110px;
  align-self: center;
}

/* Paragraph styling */
.mv-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #fff;
  opacity: 0.95;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .mv-flex {
    flex-direction: column;
    text-align: center;
  }
  .mv-divider {
    display: none; /* No vertical lines on phone */
  }
  .mv-item {
    margin-bottom: 35px;
  }
}

/* ============================================================
   GRAPHICAL PROCESS TIMELINE
   ============================================================ */

.approach-timeline {
  background: #ffffff;
  padding: 100px 0;
}

.timeline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: nowrap;
}

/* Step Blocks */
.timeline-step {
  text-align: center;
  width: 22%;
}

.timeline-step h5 {
  font-weight: 700;
  margin-top: 15px;
  font-size: 1.1rem;
}

.timeline-step p {
  font-size: 0.97rem;
  opacity: 0.85;
  line-height: 1.5;
  margin-top: 8px;
}

/* Circle Icons */
.icon-circle {
  width: 80px;
  height: 80px;
  background: #b22222;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.icon-circle:hover {
  transform: scale(1.1);
  background: #8e1616;
}

/* Connecting Line */
.timeline-line {
  flex: 1;
  height: 3px;
  background: #b22222;
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .timeline-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .timeline-line {
    width: 3px;
    height: 55px;
    margin: auto;
  }

  .timeline-step {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .icon-circle {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
/* ================= INSIGHTS HERO ================= */

.insights-hero {
  background: #111;
  padding: 120px 0;
  color: #fff;
}

.insights-hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
}

.insights-hero p {
  max-width: 720px;
  margin: 15px auto 0;
  opacity: 0.85;
  font-size: 1.1rem;
}

/* ================= INSIGHTS PANEL UI ================= */

.insights-panel-section {
  background: #fff;
}

/* LEFT NAV */
.insight-nav {
  list-style: none;
  padding: 0;
}

.insight-nav li {
  padding: 16px 20px;
  border-left: 4px solid transparent;
  background: #f6f6f6;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.insight-nav li.active,
.insight-nav li:hover {
  border-left-color: #b22222;
  background: #fff;
}

/* RIGHT PANEL */
.insight-panel {
  display: none;
  background: #fff;
  padding: 35px;
  border: 1px solid #eee;
}

.insight-panel.active {
  display: block;
}

.insight-panel h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

/* BLOCKS */
.panel-block {
  margin-bottom: 20px;
}

.panel-block .label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #b22222;
  margin-bottom: 6px;
}

.panel-block ul {
  padding-left: 18px;
}

.panel-block li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* IMPACT */
.impact-row {
  margin-top: 20px;
}

.impact-row span {
  display: inline-block;
  margin-right: 12px;
  background: #f7f7f7;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
  .insight-nav {
    display: none;
  }

  .insight-panel {
    display: block;
    margin-bottom: 30px;
  }
}
