* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f6f6f6;
  color: #222;
}

 
 /* ================= ROOT COLORS ================= */
:root {
  --navy: #0a1e42;
  --white: #ffffff;
}

/* ================= HEADER (GLOBAL) ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 30, 66, 0.9); /* NAVY */
   backdrop-filter: blur(2px); /* subtle luxury effect */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* NAV LINKS */
.navbar nav a {
  position: relative;
  color: var(--white);
  margin-left: 25px;
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 6px;
}

/* UNDERLINE ANIMATION */
.navbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.35s ease;
}

.navbar nav a:hover::after {
  width: 100%;
}

/* ================= HERO (GLOBAL) ================= */
.hero {
  min-height: 100vh;
  padding-top: 30px; /* space for fixed header */
  color: var(--white);
  display: flex;
  justify-content: center;
}

/* DEFAULT HERO BACKGROUND */
.hero {
  background: linear-gradient(
              rgba(10,30,66,0.45),
              rgba(10,30,66,0.45)
            ),
            url("../img/bg.png") center/cover no-repeat;
}

/* ================= HERO GROUP / GLOBAL ================= */
.hero-group-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

/* TEXT */
.hero-group-text h1 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-group-text p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 520px;
  opacity: 0.9;
}

/* ================= GLOBAL COUNTRIES ================= */
.global-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.global-countries .country {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.global-countries .country img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.global-countries .country:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

/* ================= HERO VISUAL ================= */
.hero-group-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-group-visual img {
  max-width: 550px;
  width: 100%;
}

/* OPTIONAL GLOBE ICON */
.hero-group-visual .globe-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
}

.hero-group-visual .globe-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


 .global-overview {
  padding: 100px 0;
  background: #eef2f7;
  color: #0a1f3d;
}

.global-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.global-intro h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #0a1f3d;
}

.global-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* Key Regions */
.global-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 60px;
}

.region-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  width: 280px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.1);
}

.region-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1d435f;
}

.region-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Stats Row */
.global-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.stat-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stat-item h3 {
  font-size: 36px;
  color: #1d435f;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 14px;
  color: #666;
}

/* Highlights */
.global-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.highlight-box {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.1);
}

.highlight-box h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1d435f;
}

.highlight-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.global-partners {
  background: #fff;
  padding: 80px 0;
  color: #0a1f3d;
}

.partners-header {
  text-align: center;
  margin-bottom: 50px;
}

.partners-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #1d435f;
}

.partners-header p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

/* Partners Logos Grid */
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  background: #f8f9fb;
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.partner-logo img {
  max-width: 200px;
  max-height: 150px;
  object-fit: contain;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}


.global-industries {
  background: #eef2f7;
  padding: 80px 0;
  color: #0a1f3d;
}

.industries-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.industries-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #1d435f;
}

.industries-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

 /* Industries Grid */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Card */
.industry-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 14px;
  width: 280px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover */
.industry-card:hover {
  background: linear-gradient(135deg, #0a2cff, #001f4d);
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

/* Icon */
.industry-icon {
  margin-bottom: 20px;
}

.industry-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: filter 0.35s ease;
}

/* Title */
.industry-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #1d435f;
  transition: color 0.35s ease;
}

/* Description */
.industry-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  transition: color 0.35s ease;
}

/* Hover text color */
.industry-card:hover h3,
.industry-card:hover p {
  color: #ffffff;
}

/* Hover icon color for image icons */
.industry-card:hover .industry-icon img {
  filter: brightness(0) invert(1);
}



#journey-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.journey-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}

.journey-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.journey-title {
  font-size: 40px;
  font-weight: 600;
  color: #1D435F;
  margin-bottom: 14px;
}

.journey-subtitle {
  font-size: 16px;
  color: #555;
}

/* Timeline Track */
.journey-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  position: relative;
}

/* Card */
.journey-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Year Badge */
.journey-year {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #1D435F;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Content */
.journey-heading {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.journey-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .journey-title {
    font-size: 32px;
  }

  .journey-container {
    padding: 0 20px;
  }
}


#industry-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.industry-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}

.industry-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px;
}

.industry-title {
  font-size: 38px;
  font-weight: 600;
  color: #1D435F;
  margin-bottom: 14px;
}

.industry-subtitle {
  font-size: 16px;
  color: #555;
}

/* Grid Layout */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

/* Card */
.industry-card {
  background: #f9fbff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid #eef2f7;
}

.industry-card:hover {
  background: #1D435F;
  transform: translateY(-10px);
}

.industry-card:hover .industry-name,
.industry-card:hover .industry-icon,
.industry-card:hover .industry-desc {
  color: #ffffff;
}

/* Icon */
.industry-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

/* Text */
.industry-name {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.industry-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .industry-title {
    font-size: 32px;
  }

  .industry-container {
    padding: 0 20px;
  }
}
 


#regional-presence {
  padding: 60px 20px;
  background-color: #f8f9fa;
  font-family: 'Inter', sans-serif;
}

.presence-header {
  text-align: center;
  margin-bottom: 40px;
}

.presence-title {
  font-size: 2rem;
  color: #1D435F;
  margin-bottom: 10px;
}

.presence-subtitle {
  font-size: 1rem;
  color: #555;
}

.presence-map {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

.presence-region {
  flex: 1 1 250px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.presence-region h3 {
  color: #1D435F;
  margin-bottom: 15px;
}

.presence-region ul {
  list-style: none;
  padding: 0;
}

.presence-region ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.presence-region ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1D435F;
}

.presence-map-iframes {
  display: flex;
  flex: 2 1 100%;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.presence-map-iframes iframe {
  flex: 1 1 300px;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* ================= ABOUT + GROUP ================= */
 
/* ================= AL DIWAN STATS SECTION ================= */
.al-diwan-stats {
  padding: 80px 20px;
  background: #f9f9f9;
  color: #222;
  font-family: "Segoe UI", sans-serif;
}

.al-diwan-stats .container {
  max-width: 1200px;
  margin: auto;
}

.al-diwan-stats .content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* Left Side Text */
.text-side {
  flex: 1 1 40%;
}

.text-side h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #1D435F; /* primary color */
}

.text-side p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.text-side .btn {
  padding: 10px 25px;
  background: #1D435F; /* primary color */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.text-side .btn:hover {
  background: #16354a; /* slightly darker shade */
}

/* Right Side Stats Blocks */
.stats-side {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Individual Stat Block */
.stat-block {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-block h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1D435F; /* primary color */
}

.stat-block p {
  font-size: 1rem;
  color: #555;
}

/* Hover Effect: blur other blocks, keep hovered block clear */
.stats-side:hover .stat-block:not(:hover) {
  filter: blur(3px);
  opacity: 0.6;
}

.stat-block:hover {
  transform: translateY(-5px);
}

/* ================= Responsive ================= */
@media(max-width: 992px) {
  .al-diwan-stats .content {
    flex-direction: column;
  }
  .stats-side {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 576px) {
  .stats-side {
    grid-template-columns: 1fr;
  }
  .text-side h2 {
    font-size: 2rem;
  }
  .text-side p {
    font-size: 1rem;
  }
  .stat-block h3 {
    font-size: 1.5rem;
  }
  .stat-block p {
    font-size: 0.95rem;
  }
}
 .cta-section {
  position: relative;
  background: url('../img/cta.png') center center / cover no-repeat fixed; /* parallax */
  height: 500px;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.cta-section .overlay {
  width: 100%;
  height: 100%;
  background: rgba(29, 67, 95, 0.5); /* semi-transparent dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Central Card */
.cta-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 40px 50px;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Text */
.cta-text h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-text p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Form inside card */
.cta-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-form input {
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  outline: none;
  flex: 1 1 200px;
  min-width: 150px;
}

.cta-form button {
  padding: 12px 25px;
  background: #1D435F;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-form button:hover {
  background: #16354a;
  transform: translateY(-2px);
}

/* Responsive */
@media(max-width: 768px) {
  .cta-section {
    height: 400px;
  }
  .cta-card {
    padding: 30px 25px;
  }
  .cta-text h2 {
    font-size: 1.5rem;
  }
  .cta-text p {
    font-size: 0.95rem;
  }
  .cta-form input, .cta-form button {
    width: 100%;
  }
}
.news-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: "Segoe UI", sans-serif;
}

.news-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.news-section .section-header h2 {
  font-size: 2rem;
  color: #1D435F;
  font-weight: 700;
}

.news-section .section-header p {
  font-size: 1rem;
  color: #666;
}

/* Grid layout: 3 columns */
.news-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Column with stacked images */
.news-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

/* News items */
.news-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-item:hover img {
  transform: scale(1.05);
}

.news-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 15px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  width: 100%;
}

.news-caption .news-date {
  font-size: 0.85rem;
  display: block;
  color: #FFA500;
  margin-bottom: 5px;
}

/* Sizes */
.news-item.large {
  flex: 1;
  height: 450px;
}

.news-item.small {
  height: 210px;
}

/* Responsive */
@media(max-width: 992px) {
  .news-grid {
    flex-direction: column;
  }
  .news-item.large,
  .news-item.small {
    height: 250px;
  }
}
  :root {
  
  --main-blue: #1D435F;
  --gold-accent: #c5a059; /* Premium Accent */
  --text-main: #1d1d1f;
  --text-sub: #6e6e73;
  --bg-section: #ffffff;
  --bg-light: #f4f4f4;
  --card-bg: #f5f5f7;
  --radius: 20px;
  --card-shadow: rgba(0, 0, 0, 0.08);
}

/* ===== SECTION CONTAINER ===== */
.business-history-section {
  background-color: var(--bg-light);
  padding: 80px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
 
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.badge {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 3rem;
  margin: 10px 0 15px;
  letter-spacing: -0.5px;
  color: var(--main-blue);
}

.section-header p {
  color: var(--text-sub);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

 /* ===== BENTO GRID (BUSINESS CARDS) ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards in one row */
  gap: 24px;
  margin-bottom: 100px;
}

/* ===== CARD BASE ===== */
.card {
  position: relative;
  height: 420px; /* Tall cards */
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Hover Effect */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px var(--card-shadow);
}

/* ===== IMAGE ===== */
.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

/* Image zoom on hover */
.card:hover img {
  transform: scale(1.06);
}

/* ===== BOTTOM CAPTION ===== */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 18px 20px;
  background: var(--main-blue);
  color: #fff;
  display: flex;
  align-items: center;
}

/* Caption Title */
.card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
  letter-spacing: 0.3px;
}

/* Optional subtitle */
.card-content p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== TIMELINE / HISTORY ===== */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--main-blue);
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--main-blue);
  z-index: 1;
  border-radius: 2px;
}

.timeline-items {
  position: relative;
  z-index: 2;
}

.step {
  display: flex;
  width: 100%;
  margin-bottom: 50px;
  align-items: flex-start;
}

.step-left { justify-content: flex-start; }
.step-right { justify-content: flex-end; margin-top: -150px;}

/* Timeline Card */
.content-card {
  width: 33%;
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 8px 25px var(--card-shadow);
  border-left: 4px solid var(--main-blue);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px var(--card-shadow);
}

.content-card::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--gold-accent);
  border: 3px solid #fff;
  border-radius: 50%;
  top: 25px;
}

.step-left .content-card::before { right: -50px; }
.step-right .content-card::before { left: -50px; }

.year-tag {
  color: var(--gold-accent);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.content-card h3 {
  font-size: 1.4rem;
  color: var(--main-blue);
  margin-bottom: 10px;
}

.content-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-main);
}

.growth-metric {
  margin-top: 12px;
}

.growth-metric label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.5px;
}

.bar {
  height: 6px;
  background: #eee;
  border-radius: 10px;
  margin-top: 5px;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, var(--main-blue), var(--gold-accent));
  border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .card-large, .card-tall { grid-column: span 1; height: 300px; }
  .step { flex-direction: column; align-items: center; margin-bottom: 40px; }
  .step-left, .step-right { justify-content: center; }
  .content-card { width: 90%; padding: 20px; }
  .content-card::before { display: none; }
}
 .founder-section {
  background: radial-gradient(circle at center, #0f1c2e 0%, #050a14 100%);
  padding: 100px 20px;
  color: #fff;
}

.founder-container {
  max-width: 1200px;
  margin: auto;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

/* Image */
.founder-image {
  position: relative;
}

.founder-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 50%;
  border: 3px solid #fff;
  padding: 10px;
  background: linear-gradient(135deg, #1a2a44, #050a14);
}

/* Content */
.founder-badge {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #aaa;
}

.founder-content h2 {
  font-size: 2.8rem;
  margin: 15px 0 25px;
  font-weight: 800;
}

.founder-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

/* Chairman Message */
.chairman-message {
  margin-top: 40px;
  padding-left: 30px;
  border-left: 2px solid #fff;
}

.chairman-message h4 {
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.chairman-message blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin: 0 0 15px;
  color: #fff;
}

.message-text {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.7;
}

/* Signature */
.signature {
  margin-top: 25px;
}

.signature strong {
  display: block;
  font-size: 1.1rem;
}

.signature span {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .chairman-message {
    border-left: none;
    border-top: 1px solid #fff;
    padding-left: 0;
    padding-top: 30px;
  }
}

 

.perf-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  padding-left: 5%;
  padding-right: 5%;
}

/* Card Styling */
.perf-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.perf-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 25px;
}

/* SVG Graph Scaling */
.perf-svg-graph {
  width: 100%;
  height: auto;
  max-height: 250px;
  display: block;
  overflow: visible; /* Crucial for labels */
}

/* Line & Point Styles */
.line-cust { stroke: #1e3a8a; stroke-width: 4; fill: none; }
.line-bran { stroke: #10b981; stroke-width: 4; fill: none; }
.line-coun { stroke: #f59e0b; stroke-width: 4; fill: none; }

.circle-cust { fill: #1e3a8a; }
.circle-bran { fill: #10b981; }
.circle-coun { fill: #f59e0b; }

.grid-line {
  stroke: #e2e8f0;
  stroke-width: 1.5;
}

.perf-y-label {
  font-size: 26px;
  fill: #64748b;
  font-weight: 500;
}

/* Labels & Captions */
.perf-x-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 5px;
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

.perf-card-caption {
  font-size: 16px;
  color: #1D435F;
  margin-top: 20px;
  font-weight: 700;
}


.alidwan-contact-section {
  background: #f8fafc;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.alidwan-contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

/* Info Cards */
.alidwan-contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.alidwan-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.alidwan-info-icon {
  font-size: 26px;
  background: #1D435F;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alidwan-info-card h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1D435F;
}

.alidwan-info-card p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #1D435F;
}

/* Form */
.alidwan-contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.alidwan-contact-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1D435F;
}

.alidwan-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.alidwan-contact-form input,
.alidwan-contact-form textarea {
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}

.alidwan-contact-form button {
  margin-top: 10px;
  padding: 12px;
  background: #1D435F;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .alidwan-contact-wrapper {
    grid-template-columns: 1fr;
  }
}


.alidwan-footer {
  background-color: #1D435F;
  padding: 18px 24px;
}

.alidwan-footer-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alidwan-footer-left {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.alidwan-footer-right {
  font-size: 13px;
  color: #cbd5e1;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .alidwan-footer-row {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}
 /* ===== THE GROUP – HERO SECTION ===== */
.groupHeroSection {
  background: linear-gradient(135deg, #0f2a44, #1d435f);
  padding: 100px 20px;
  color: #ffffff;
}

.groupHeroContainer {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.groupHeroTitle {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.groupHeroSubtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.9;
}

.groupHeroDescription {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
}

/* ===== WHO WE ARE SECTION ===== */
.groupAboutSection {
  padding: 80px 20px;
  background-color: #ffffff;
}

.groupAboutContainer {
  max-width: 1100px;
  margin: 0 auto;
}

.groupAboutContent {
  text-align: center;
}

.groupAboutTitle {
  font-size: 36px;
  font-weight: 700;
  color: #1d435f;
  margin-bottom: 25px;
}

.groupAboutText {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .groupHeroTitle {
    font-size: 36px;
  }

  .groupHeroSubtitle {
    font-size: 18px;
  }

  .groupAboutTitle {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .groupHeroSection {
    padding: 70px 15px;
  }

  .groupHeroTitle {
    font-size: 30px;
  }

  .groupHeroDescription,
  .groupAboutText {
    font-size: 15px;
  }
}

