/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
        overflow-x: hidden;
}

:root {
    --gradient-primary: linear-gradient(90deg, #8b5cf6, #ec4899, #6366f1);
    --gradient-accent: linear-gradient(90deg, #3b82f6, #06b6d4);
    --text-glow: 0 0 25px rgba(139, 92, 246, 0.45);
    --btn-glow: 0 0 20px rgba(59, 130, 246, 0.45);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
/* === TRANSPARENT / GLASS NAV OVER HERO === */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    pointer-events: none;
}

header::before {
    display: none;
}
/* Glass pill navbar */
.nav {
     width: 100%;
    margin: 0;
    padding: 1rem 5rem; /* Remove side padding from nav */
    display: flex;
    align-items: center;
      justify-content: space-between !important;
    justify-content: center; /* Center the content container */
    background: rgba(2, 4, 10, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav:hover {
    background: rgba(2, 4, 10, 0.2); /* Slightly more visible on hover */
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-menu a {
     position: relative;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.9;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px; /* Your original max-width */
    padding: 0 2rem; /* Side padding inside the content */
}

.nav-menu a:hover {
    opacity: 1;
    color: #00ff88;
}

/* Brand text with same green-blue gradient */
.nav-brand h2 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    background: linear-gradient(90deg, #00ff88, #0090ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Menu */
.nav-menu {
   display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    position: relative;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: #e5f7ff;
    opacity: 0.86;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* gradient underline */
.nav-menu a::after {
     content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #00ff88, #0090ff);
    transition: width 0.35s ease;
}

.nav-menu a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #e5f7ff;
    transition: 0.3s;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav {
        padding: 0.6rem 1.2rem;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 1.2rem;
        flex-direction: column;
        padding: 0.9rem 1.1rem;
        background: rgba(2, 4, 10, 0.96);
        border-radius: 16px;
        border: 1px solid rgba(0, 255, 136, 0.25);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
        display: none; /* you can toggle via JS */
    }

    .nav-toggle {
        display: flex;
    }
}


/* Logo image in navbar */
.nav-logo {
    height: 70px;     /* ⬅️ increase this number (60–80px) */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Adjust logo size on small screens */
@media (max-width: 768px) {
    .nav-logo {
        height: 38px;
    }
}


/* =============================
   GROW WORKS ENERGY - HERO BANNER
============================= */
.energy-hero-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #02040a;
}

/* Brighten the video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(1.2);
}

/* Lighter overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(0, 255, 136, 0.1), transparent 70%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 10, 20, 0.6));
    z-index: 2;
}

/* Text Container with Clear Box */
.hero-text {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 3rem 2.5rem;
    /* background: rgba(2, 4, 10, 0.75); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 255, 136, 0.1); */
    margin: 0.2rem;
}

.small-title {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #00ff88;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
    margin-bottom: 0.5rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    line-height: 1.3;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00ff88, #0090ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.hero-desc {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin: 1.5rem auto 2.5rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button styles (keep your existing button styles) */
.btn-primary-energy {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    color: #fff;
    background: linear-gradient(90deg, #60a5fa, #818cf8, #22d3ee);
    box-shadow: 0 0 18px rgba(99, 102, 241, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-energy:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.5);
    background: linear-gradient(90deg, #2563eb, #6366f1, #06b6d4);
}

.btn-outline-energy {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(147, 197, 253, 0.5);
    color: #e0f2fe;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-energy:hover {
    background: linear-gradient(90deg, #60a5fa, #818cf8, #22d3ee);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 25px rgba(129, 140, 248, 0.4);
    transform: translateY(-3px);
}

/* Floating Icons */
.floating-icons .icon {
    width: 60px;
    position: absolute;
    opacity: 0.8;
    animation: floatUpDown 4s ease-in-out infinite;
    z-index: 2;
}
.icon1 { top: 20%; left: 10%; animation-delay: 0s; }
.icon2 { bottom: 15%; right: 12%; animation-delay: 0.8s; }
.icon3 { top: 40%; right: 25%; animation-delay: 1.5s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .main-title { 
        font-size: 2.2rem; 
    }
    
    .hero-desc { 
        font-size: 1rem; 
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-energy,
    .btn-outline-energy {
        width: 100%;
        max-width: 250px;
    }
}
/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* Features Section */



/* =============================
   ABOUT ENERGY SECTION
============================= */
.about-energy {
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.12), transparent 60%),
        linear-gradient(135deg, #f9fafb 0%, #edf1f5 50%, #f9fafb 100%);
    color: #0f172a; /* dark text for light background */
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-energy .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
}

.about-content {
    line-height: 1.8;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    /* background: linear-gradient(90deg, #00ff88, #0090ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    margin-bottom: 1.2rem;
}

.section-title span {
    display: block;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    /* color: #ccf8ff; */
    margin-bottom: 1rem;
}

.about-energy p {
    margin-bottom: 1rem;
    font-size: 1rem;
    /* color: #c6d7e0; */
}

.about-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

/* Right side image */
.about-video {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.25);
    transition: transform 0.8s ease, box-shadow 0.8s ease;
}

.about-video video {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    filter: brightness(0.85) saturate(1.1);
}

.about-video:hover {
    transform: scale(1.03);
    box-shadow: 0 0 60px rgba(0, 144, 255, 0.35);
}

/* Responsive */
@media (max-width: 900px) {
    .about-energy .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-buttons {
        justify-content: center;
    }

    .about-video {
        margin-top: 2rem;
    }
}
/* =============================
   WHY CHOOSE GROW WORKS ENERGY
============================= */
/* --- FIX POSITION + FULL ROW CARDS --- */
.why-choose-energy {
    position: relative;
   
    color: #e0faff;
    text-align: center;
    padding: 6rem 2rem;
    margin-top: 0;          /* make sure no extra gap */
    overflow: visible;      /* prevents clipping from previous section */
    z-index: 5;             /* ensures it shows above hero/video */
}

/* if the section before (like .about-energy or hero) has overflow hidden */
.about-energy,
.energy-hero-banner {
    overflow: visible !important; /* allows next section to display fully */
}

/* --- CARD GRID ADJUSTMENT --- */



/* Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Base Card Styles */
.reason-card {
    background: linear-gradient(135deg, #00ffb2, #00a2ff);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 255, 200, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 45px rgba(0, 255, 200, 0.35);
}

/* ✅ ICON VISIBILITY FIX */
.reason-icon {
    font-size: 3rem;              /* make icon larger */
    line-height: 1;
    margin-bottom: 1rem;
    display: inline-block;
    color: rgba(255, 255, 255, 0.95); /* ensure white visible tone */
    text-shadow:
        0 0 8px rgba(0, 0, 0, 0.25),
        0 0 12px rgba(0, 0, 0, 0.3);  /* subtle contrast */
}

/* ✅ OPTIONAL: add faint highlight glow on hover */
.reason-card:hover .reason-icon {
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 25px rgba(0, 255, 200, 0.7);
}

/* HEADINGS + TEXT */
.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.reason-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}



/* =============================
   ENERGY SERVICES SECTION
============================= */
.energy-services {
  background: #ffffff; /* keep section white */
  padding: 6rem 2rem;
  text-align: center;
  color: #0b1120;
  position: relative;
}

.energy-services .section-title {
  font-size: 2.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00ff88, #0090ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: stretch;
}

/* SERVICE CARD */
.service-card {
  background: linear-gradient(90deg, #00ff88, #0090ff);
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  color: #ffffff; /* text visible over gradient */
  transition: all 0.4s ease;
  max-width: 380px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* Add a subtle overlay for readability */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.service-card * {
  position: relative;
  z-index: 1;
}

/* Hover Glow */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.35),
              0 0 40px rgba(0, 144, 255, 0.3);
}

/* ICON */
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* HEADINGS & TEXT */
.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.service-card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f9ff;
}

.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card ul li {
  font-size: 0.92rem;
  margin: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  color: #f4fbff;
}

.service-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    max-width: 100%;
  }
}


/* =============================
   SMALL ABOUT HERO BANNER
============================= */
.about-hero {
    position: relative;
    background: radial-gradient(circle at 10% 0%, rgba(0, 255, 136, 0.18), transparent 60%),
                radial-gradient(circle at 90% 0%, rgba(0, 144, 255, 0.18), transparent 60%),
                linear-gradient(180deg, #02040a 0%, #050f20 100%);
    padding: 7rem 2rem 4rem;      /* extra top for fixed navbar */
    color: #e8faff;
    overflow: hidden;
}

.about-hero::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 120%;
    height: 80px;
    transform: translateX(-50%);
    background: radial-gradient(circle at 50% 0, rgba(0,0,0,0.7), transparent 70%);
    opacity: 0.8;
}

.about-hero .container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero-content {
    text-align: left;
}

.about-hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9fffe2;
    margin-bottom: 0.6rem;
}

.about-hero-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    background: linear-gradient(90deg, #00ff88, #0090ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-subtitle {
    max-width: 600px;
    font-size: 1rem;
    color: #cde8f0;
    line-height: 1.7;
}

/* Responsive banner */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1.5rem 3rem;
    }
    .about-hero-title {
        font-size: 1.9rem;
    }
    .about-hero-content {
        text-align: center;
    }
    .about-hero-subtitle {
        margin: 0 auto;
    }
}

/* =============================
   ABOUT PAGE SECTION (reuse / tweak)
============================= */


/* Page Background */
.about-page {
    background: #f5f7fb; /* soft off-white */
    color: #0b1120;
}
/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    /* text-align: center; */
    background: linear-gradient(90deg, #00b894, #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.section-title1 {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(90deg, #00ff88, #00a2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 3rem;
}


/* CARD GRID */
.about-card-grid,
.promise-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    padding-bottom: 4rem;
}

/* Individual Cards */
.about-card,
.promise-card {
     background: linear-gradient(135deg, #ffffff 0%, #e3f2ff 100%);
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 132, 255, 0.25);
    backdrop-filter: blur(6px);
    transition: .35s ease;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

/* Hover Effect */
.about-card:hover,
.promise-card:hover {
  transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.16);
}

/* Card Headings */
.about-card h3,
.promise-card h4 {
      color: #0369a1; /* deep blue */
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Card Text */
.about-card p,
.promise-card p {
    color: #1f2933;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Mission List */
.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card ul li {
    padding-left: 1.4rem;
    margin-bottom: .4rem;
    position: relative;
     color: #1f2933;
}


.about-card ul li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #1f2933;
}

/* Promise Title */
.promise-title {

    text-align: center;
    font-size: 1.9rem;
    margin: 4rem 0;
    background: linear-gradient(90deg, #00b894, #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* SMALL BANNER */
.small-banner {
   padding-top: 120px;   /* Add space below navbar */
    padding-bottom: 60px; /* Nice bottom spacing */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    height: auto;       /* Allow flexible height */
    min-height: 300px;  /* Default height */
 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Visible overlay (lighter so text and image both appear) */
.small-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, #00ffd0 0%, #001324 60%, #000711 100%);
    backdrop-filter: blur(2px);
}

/* Banner Text */
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    color: #ffffff;
        margin-top: 4rem;
}

/* Eyebrow Text */
.banner-content .eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00ffcc;
    margin-bottom: 0.7rem;
}

/* Title */
.banner-content h1 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

/* Subtitle */
.banner-content .subtitle {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .small-banner {
       padding-top: 100px;  /* slightly reduced */
        padding-bottom: 50px;
        min-height: 250px;
    }

    .banner-content h1 {
        font-size: 1.4rem;
    }

    .banner-content .subtitle {
        font-size: 0.85rem;
    }
}


.simple-footer {
     background: radial-gradient(circle at 10% 0%, #00ffd0 0%, #001324 60%, #000711 100%);
    color: #e6faff;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border-top: 1px solid rgba(0, 255, 200, 0.1);
    box-shadow: 0 -2px 30px rgba(0, 255, 200, 0.15);
}

.simple-footer p {
    color: #9fb6c9;
    font-size: 0.95rem;
    margin: 0;
}
/* CONTACT PAGE – LIGHT THEME */
.contact-page {
    background: #f5f7fb; /* off-white like About page */
    padding: 4rem 2rem;
    color: #0b1120;
}

/* Title */
.contact-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00b894, #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

/* Subtitle */
.contact-sub {
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    color: #475569;
}

/* GRID LAYOUT */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

/* CONTACT INFO */
.contact-info {
  background: linear-gradient(135deg, #ffffff 0%, #f2faff 100%);
  border: 1px solid rgba(0, 132, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

/* Hover glow for subtle energy effect */
.contact-info:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 184, 148, 0.15),
              0 20px 45px rgba(9, 132, 227, 0.12);
}

.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0369a1;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #1e293b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  background: rgba(255, 255, 255, 0.6);
  border-left: 4px solid #00b894;
  padding: 1rem 1rem 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  color: #0f172a;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.info-list li:hover {
  background: linear-gradient(90deg, #e8fff6 0%, #e3f2ff 100%);
  transform: translateX(5px);
}

.info-list span {
  font-size: 1.3rem;
  margin-right: 8px;
  color: #00b894;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.contact-info ul li {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #1e293b;
}

.contact-info ul li span {
    font-size: 1.3rem;
    margin-right: 8px;
    color: #00b894;
}

/* FORM BOX – LIGHT CARD STYLE */
.contact-form-box {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2ff 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 132, 255, 0.25);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

/* Inputs & Textarea */
.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    font-size: 0.95rem;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: #64748b;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #00b894, #0984e3);
    border: none;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}

/* SUCCESS BOX */
.success-box {
    background: #d1fae5;
    padding: 1rem;
    border-radius: 6px;
    color: #065f46;
    margin-bottom: 1rem;
}

/* SMALL CONTACT BANNER */
/* CONTACT PAGE BANNER */
.small-contact-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #4a6480 0%, #223344 100%);
  color: #ffffff;
  overflow: hidden;
}

.contact-banner-overlay {
  position: absolute;
  inset: 0;
 background: radial-gradient(circle at 10% 0%, #00ffd0 0%, #001324 60%, #000711 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.contact-banner-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 750px;
  padding: 0 1.5rem;
      margin-top: 8rem;
}

.contact-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00ffcc;
  margin-bottom: 0.7rem;
}

.contact-banner-content h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.contact-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  color: #e0faff;
  max-width: 650px;
  margin: 0 auto;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .small-contact-banner {
    height: 240px;
  }

  .contact-banner-content h1 {
    font-size: 1.5rem;
  }

  .contact-subtitle {
    font-size: 0.9rem;
  }
}
