* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f6f6f6;
  color: #222;
}

 /* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;

  /* SAME DARK OVERLAY AS HERO */
background: rgba(10, 30, 66, 0.85);

  backdrop-filter: blur(2px); /* subtle luxury effect */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
}

.navbar nav a {
  position: relative;
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 6px;
}

/* underline */
.navbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.35s ease;
}

/* hover animation */
.navbar nav a:hover::after {
  width: 100%;
}
.nav-logo {
  height: 36px;
  width: auto;
}
/* ================= HERO ================= */
.hero {
  background: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2)),
              url("../img/bg.png") center/cover no-repeat;
  min-height: 100vh;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: 70px; /* 🔥 space for fixed header */
}

.hero-content {
  text-align: center;
  padding: 0 20px;
}

.hero-logo {
  width: 120px;
  margin-bottom: 25px;
}

.hero-content h1 {
  font-size: 48px;
  letter-spacing: 3px;
}

.hero-content p {
  margin: 20px 0;
  font-size: 15px;
  color: #ddd;
}
/* Container styling */
.hero-buttons {
  display: flex;
  gap: 20px; /* space between buttons */
  justify-content: center; /* center buttons horizontally */
  margin-top: 30px;
  flex-wrap: wrap; /* for responsive wrapping on small screens */
}

/* Common button styles */
.hero-buttons .btn {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  min-width: 180px; /* optional: make buttons uniform */
}

/* Outline Button */
.hero-buttons .btn-outline {
  border: 2px solid white; /* primary color */
  color: white;
  background-color: transparent;
}

.hero-buttons .btn-outline:hover {
  background-color: white;
   color: #005fa3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 120, 212, 0.3);
}

/* Filled Button */
.hero-buttons .btn-filled {
   
  color: #fff;
  border: 2px solid white;
}

.hero-buttons .btn-filled:hover {
  background-color: white; /* darker shade on hover */
  color: #005fa3;
  border-color: #005fa3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 95, 163, 0.3);
}

 
.who-we-are {
  padding: 80px 20px;
  background: white;
  font-family: 'Poppins', sans-serif;
  color: #1D435F;
}

.who-we-are .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Top Row: Content + Logo */
.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.content {
  flex: 1;
}

.content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  position: relative;
}

.content h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #1D435F;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.content .btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1D435F;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 30px;
  transition: 0.3s ease;
}

.content .btn:hover {
  background: #15324a;
}

.logo-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-side img {
  width: 300px;
  max-width: 100%;
}

/* Second Row: Feature Cards */
.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: #fff;
  border: 2px solid #1D435F;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #333;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .top-row {
    flex-direction: column;
    text-align: center;
  }
  .logo-side {
    margin-top: 30px;
  }
  .features-row {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .features-row {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}
/* ================= 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(5, 1fr); /* 5 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: 0.9rem;
  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;
  }
}

 /* ================= MOBILE & TABLET RESPONSIVE ================= */
 /* ================= MOBILE & TABLET RESPONSIVE ================= */

/* Header */
@media (max-width: 992px) {
  .navbar {
    padding: 20px 40px;
  }
  .navbar nav a {
    margin-left: 15px;
    font-size: 13px;
  }
  .nav-logo {
    height: 32px;
  }
}

/* Hero Section */
@media (max-width: 768px) {
  .hero {
    padding-top: 60px;
  }
  .hero-content h1 {
    font-size: 32px;
    letter-spacing: 1px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .hero-buttons .btn {
    width: 100%;
    min-width: auto;
  }
}

/* Who We Are / Features */
@media (max-width: 992px) {
  .top-row {
    flex-direction: column;
    text-align: center;
  }
  .logo-side {
    margin-top: 30px;
  }
  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-row {
    grid-template-columns: 1fr;
  }
  .content h2 {
    font-size: 28px;
  }
  .content p {
    font-size: 15px;
  }
}

/* Stats Section */
@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;
  }
  .stats-side:hover .stat-block:not(:hover) {
    filter: none;
    opacity: 1;
  }
}

/* CTA Section */
@media(max-width: 768px) {
  .cta-section {
    height: 400px;
    padding: 20px;
  }
  .cta-card {
    padding: 25px 20px;
  }
  .cta-text h2 {
    font-size: 1.5rem;
  }
  .cta-text p {
    font-size: 0.95rem;
  }
  .cta-form input,
  .cta-form button {
    width: 100%;
  }
}

/* News Section */
@media(max-width: 992px) {
  .news-grid {
    flex-direction: column;
  }
  .news-item.large,
  .news-item.small {
    height: 250px;
  }
}

/* Bento Grid / Business Cards */
@media(max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card {
    height: 300px;
  }
}

/* Timeline / History */
@media(max-width: 992px) {
  .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 */
@media(max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .founder-image img {
    max-width: 250px;
  }
  .chairman-message {
    border-left: none;
    border-top: 1px solid #fff;
    padding-left: 0;
    padding-top: 30px;
  }
}

/* Performance Cards */
@media(max-width: 768px) {
  .perf-cards-grid {
    padding-left: 2%;
    padding-right: 2%;
    gap: 20px;
  }
}

/* Contact Section */
@media(max-width: 768px) {
  .alidwan-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Footer */
@media(max-width: 640px) {
  .alidwan-footer-row {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* Group Hero & About */
@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;
  }
}
