:root {
  --blue: #005b96;
  --sea-green: #00a8a8;
  --black: #111111;
  --light-bg: #f5f7fa;
  --text: #222222;
  --white: #ffffff;
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.05;
    display: flex;
    flex-direction: column;
    background: linear-gradient(90deg, #00e0c6, #00a8a8); 
    -webkit-background-clip: text; 
    color: transparent; 
    text-shadow: 0 0 10px rgba(0, 255, 220, 0.35); 
    text-decoration: none;
}

/* WA PTY LTD below main text */
.logo-text span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-top: 3px;

    /* Sea‑green gradient */
    background: linear-gradient(90deg, #00e0c6, #00a8a8);
    -webkit-background-clip: text;
    color: transparent;

    /* Soft glow */
    text-shadow: 0 0 6px rgba(0, 200, 180, 0.4);
}

/* Optional hover glow */
.logo-text:hover span {
    text-shadow: 0 0 10px rgba(0, 255, 220, 0.55);
    transition: 0.3s ease;
}




.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sea-green), var(--blue));
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Force visible hover + active color for header links */
.main-nav .nav-link,
.main-nav .nav-link:visited {
  color: #ffffff;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .nav-link.active {
  color: #ffffff !important;
}


/* MOBILE NAVIGATION — SMALL TOP DROPDOWN */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 9999;
}

@media (max-width: 900px) {

  /* Show hamburger */
  .nav-toggle {
    display: block;
  }

  /* Turn nav into dropdown */
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    z-index: 999;
  }

  /* When opened */
  .main-nav.open {
    padding: 1rem 1.2rem;
    max-height: 300px; /* enough for 4–5 links */
  }

  .main-nav .nav-link {
    padding: 0.6rem 0;
    font-size: 1rem;
    width: 100%;
  }

  .btn-call {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--sea-green));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 91, 150, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0, 91, 150, 0.45);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--black);
}

.btn-call {
  background-color: var(--sea-green);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(0, 168, 168, 0.4);
}

.btn-call:hover {
  background-color: var(--blue);
  color: var(--white);
}

/* HERO SMALL HEIGHT */
.hero-slide {
    height: 90vh; /* smaller height */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark overlay for text visibility */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Make arrows more visible */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 50%;
}

/* Position controls nicely */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators button {
    background-color: #00b894;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slide {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
}


/* SECTIONS */

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--light-bg);
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--sea-green);
  font-weight: 600;
}

.section h2 {
  font-size: 1.9rem;
  margin: 0.5rem 0 0.75rem;
}

.section-header {
  max-width: 720px;
}

/* ABOUT */

.section-about img {
    width: 100%;
    object-fit: cover;
}

/* Left-align the about list */
.about-list {
    padding-left: 0;
    margin-top: 20px;
}

.about-list li {
    text-align: left;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}


/* Colorful Stat Cards */
/* All stat cards use the same theme color */
.stat-card {
    background: linear-gradient(135deg, #0066cc, #00a8a8); /* Blue → Teal gradient */
    color: #fff;
    display: flex;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 12px;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Icon styling */
.stat-card i {
    font-size: 2rem;
    opacity: 0.9;
}

/* Hover effect (desktop only) */
@media (min-width: 768px) {
    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    }
}

/* SERVICES SUMMARY */

.services-grid {
  margin-top: 2.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.7rem;
}

.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 168, 168, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--sea-green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0.9rem;
  font-size: 0.9rem;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-image {
  border-radius: var(--radius-md);
  margin-top: 0.9rem;
}

/* Left align the entire services section */
#services .section-header,
#services .service-card,
#services .service-card h3,
#services .service-card p,
#services .service-card ul {
    text-align: left !important;
}

/* Ensure bullet list aligns properly */
#services .service-card ul {
    padding-left: 0;
}

#services .service-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}


/* WHY US */
/* WHY CHOOSE US CARDS */
.why-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 28px;
    border-left: 6px solid #00a8a8; /* teal accent */
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    text-align: left;

    /* NEW: equal height fix */
    display: flex;
    flex-direction: column;
}

/* Icon */
.why-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0066cc, #00a8a8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.why-icon i {
    font-size: 1.8rem;
    color: #fff;
}

/* Title */
.why-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Description */
.why-card p {
    color: #555;
    margin-bottom: 0;

    /* NEW: pushes content to bottom evenly */
    flex-grow: 1;
}

/* Hover effect */
@media (min-width: 768px) {
    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    }
}

/* HOME CONTACT */

.section-contact {
    padding: 80px 0;
}

.contact-text h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info {
    margin: 20px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.info-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

/* Contact image styling */
.contact-image {
    border-radius: 16px;
    object-fit: cover;
    width: 100%;
    height: auto;
    animation: fadeZoom 1.2s ease forwards;
}

/* Subtle zoom animation */
@keyframes fadeZoom {
    0% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* Fast response badge */
.fast-response {
    margin-top: 18px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .contact-text {
        text-align: left;
    }
}


/* SERVICES PAGE DETAIL */

.page-hero {
  background: radial-gradient(circle at top left, rgba(0, 168, 168, 0.4), transparent 55%),
              linear-gradient(120deg, var(--blue), var(--black));
  color: var(--white);
  padding: 3.2rem 0;
}

/* Full-width modern overview section */
.section-overview {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fbff, #eef7fa);
}

/* Wrapper */
.overview-wrapper {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

/* Title */
.overview-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #003d66;
}

/* Text */
.overview-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}

/* Subtle fade + slide animation */
.reveal-up {
    opacity: 0;
    transform: translateY(25px);
    animation: revealUp 0.9s ease forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional soft shadow card style */
.section-overview .overview-wrapper {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}


.section-service-details {
    padding: 80px 0;
}

.services-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px; } /* Mobile: 1 per row */ @media (max-width: 768px) { .services-detail-grid { grid-template-columns: 1fr; } }

/* Card */
.service-detail-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* Image */
.service-detail-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Text area */
.service-detail-text {
    padding: 25px 28px;
    text-align: left;
}

/* Fancy animated icon */
.service-detail-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0066cc, #00a8a8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    animation: floatIcon 3s ease-in-out infinite;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.service-detail-icon i {
    font-size: 2rem;
    color: #fff;
}

/* Floating animation */
@keyframes floatIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* Titles */
.service-detail-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Paragraph */
.service-detail-text p {
    color: #555;
    margin-bottom: 15px;
}

/* List */
.service-detail-text ul {
    padding-left: 0;
    list-style: none;
}

.service-detail-text ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-text ul li::before {
    content: "✔";
    color: #00a8a8;
    font-weight: 700;
}


/* CONTACT PAGE */

.section-contact-page {
    padding: 80px 0;
}

/* ROW 1: DETAILS + FORM */
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Contact Info */
.contact-info h2,
.contact-form-wrapper h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.contact-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

/* Form */
.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.full-width {
    width: 100%;
}

input, textarea {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #dce3ea;
    transition: 0.3s ease;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 153, 153, 0.15);
}

/* Submit Button */
.submit-btn {
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* MAP FULL WIDTH */
.map-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Reveal Animation */
.reveal-up {
    opacity: 0;
    transform: translateY(25px);
    animation: revealUp 0.9s ease forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .contact-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}
.map-wrapper {
    width: 100%;
    margin-top: 25px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
    width: 100% !important;
    height: 350px;
    display: block;
}


/* FOOTER */

/* Remove underline from ALL <a> tags site-wide */
a {
    text-decoration: none !important;
}

/* Footer styling */
.site-footer {
    background: #0a0a0a;
    padding: 60px 0 25px;
    color: #cccccc;
    margin-top: 60px;
}

/* 3-column grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Column titles */
.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Footer text */
.footer-col p {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Quick links list */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cccccc;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--sea-green);
}

/* Bottom credit line */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
}

.footer-bottom .designer a {
    color: var(--sea-green);
    font-weight: 600;
}

.footer-bottom .designer a:hover {
    color: var(--blue);
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
}


/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  z-index: 200;
  animation: pulse 3.2s infinite;
}

.whatsapp-float i {
  font-size: 1.6rem;
}

/* ANIMATIONS */

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .about-grid,
  .contact-home-grid,
  .service-detail-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-stats {
    position: static;
    margin-top: 1rem;
  }

  .service-detail-card:nth-child(even) .service-detail-media {
    order: 0;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem 0.9rem;
    gap: 0.75rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .btn-call {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-slider {
    height: 70vh;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-meta {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 0.9rem;
    bottom: 0.9rem;
  }
}
/* =========================================
   FULL MOBILE OPTIMIZATION FIX
========================================= */

/* HERO FIX */
@media (max-width: 992px) {
  .hero-slide {
    height: 75vh;
  }

  .hero-content {
    max-width: 100%;
    padding-right: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    height: 65vh;
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

/* FIX CAROUSEL CONTROLS ON MOBILE */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 14px;
  }
}

/* ABOUT SECTION FIX */
@media (max-width: 960px) {
  .about-grid {
    gap: 1.5rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .stat-card {
    justify-content: center;
    text-align: center;
  }
}

/* CONTACT HOME FIX */
@media (max-width: 960px) {
  .contact-home-grid {
    gap: 1.5rem;
  }

  .badge-overlay {
    position: static;
    margin-top: 1rem;
    justify-content: center;
  }
}

/* SERVICE DETAIL CARDS FIX */
@media (max-width: 960px) {
  .service-detail-card {
    gap: 1.2rem;
  }

  .service-detail-text h3 {
    font-size: 1.2rem;
  }
}

/* CONTACT PAGE FORM FIX */
@media (max-width: 768px) {
  .contact-layout {
    gap: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 1.2rem;
  }
}

/* GENERAL SECTION SPACING FIX */
@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .section-header {
    max-width: 100%;
  }
}
/* =========================================
   ABOUT SECTION — MOBILE FIXES
========================================= */

/* Move image + stats BELOW text on mobile */
@media (max-width: 991px) {
    .section-about .col-lg-6.order-1 {
        order: 2 !important;
    }
    .section-about .col-lg-6.order-2 {
        order: 1 !important;
    }
}

/* Fix spacing for mobile */
@media (max-width: 768px) {

    .about-text {
        text-align: left;
    }

    .about-image-main img {
        width: 100%;
        border-radius: 12px;
    }

    /* Stack blue boxes */
    .about-stats {
        margin-top: 15px;
    }

    .about-stats .stat-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 12px;
        background: #0077ff;
        color: #ffffff;
        box-shadow: 0 6px 18px rgba(0, 80, 200, 0.25);
    }

    .about-stats .stat-card i {
        font-size: 1.6rem;
    }

    /* Make each stat box full width on mobile */
    .about-stats .col-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}



