/* =========================
   Global Styles
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}

html{
    scroll-behavior:smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    transition: background 0.3s ease, color 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
:root {

  --bg-color: #ffffff;
  --section-bg: #f8fafc;
  --card-bg: #ffffff;
  --text-color: #1e293b;
  --border-color: #e2e8f0;
  --accent-color: #2563eb;
  /* ✅ HERO VARIABLES */
  --hero-overlay: rgba(0,0,0,0.35);
  --hero-text: #111;
  --hero-glass: rgba(255,255,255,0.85);
}
body.dark {
  --bg-color: #0f172a;
  --section-bg: #020617;
  --card-bg: #1e293b;
  --text-color: #f1f5f9;
  --border-color: #334155;
  /* ✅ HERO DARK */
  --hero-overlay: rgba(0,0,0,0.65);
  --hero-text: #ffffff;
  --hero-glass: rgba(30,41,59,0.75);
}

/* =========================
   ABOUT PAGE HERO
========================= */

.page-banner {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--hero-text);
}

/* Overlay */
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

/* Glass Content Box */
.page-banner .container {
    position: relative;
    z-index: 2;
    background: var(--hero-glass);
    padding: 45px 55px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 720px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.25);
    animation: bannerFade 0.9s ease forwards;
}

@keyframes bannerFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Text Styling */
.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.page-banner p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* =========================
   About Section
========================= */

.about-section {
    padding: 90px 0;
    background: var(--bg-color);
}

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text Side */
.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
}

/* underline accent */
.about-text h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: var(--accent-color);
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 5px;
}

.about-text h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.about-text p {
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    font-size: 1.05rem;
}

/* Image Side */
.about-image {
    position: relative;
}

/* glow background */
.about-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    top: 20px;
    left: 20px;
    border-radius: 15px;
    opacity: 0.15;
    z-index: 0;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transition: 0.4s ease;
    will-change: transform;
}

/* Hover effect */
.about-image img:hover {
    transform: translateY(-8px) scale(1.02);
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-image::before {
        display: none;
    }
}

/* =========================
   Founder Section
========================= */

.founder-section {
    padding: 80px 0;
    background: var(--section-bg);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.founder-image {
    text-align: center;
}

.founder-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.founder-content h2 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.founder-message {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.founder-name {
    margin-top: 25px;
    color: var(--accent-color);
}

.founder-role {
    color: var(--text-color);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* =========================
   Mission Section
========================= */

.mission-section {
    padding: 90px 0;
    background: var(--section-bg);
}

/* Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-color);
}

.section-title span {
    color: var(--accent-color);
}

/* Grid */
.mission-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Cards */
.mission-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* top accent line */
.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
}

/* Hover Effect */
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Heading */
.mission-card h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Text */
.mission-card p,
.mission-card li {
    color: var(--text-color);
    line-height: 1.7;
    opacity: 0.9;
}

/* List */
.mission-card ul {
    padding-left: 18px;
}

/* Responsive */
@media (max-width: 1000px) {
    .mission-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mission-wrapper {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Core Values Section
========================= */

.values-section {
    padding: 90px 0;
    background: var(--bg-color);
    color: var(--text-color);
}

.values-section h3,
.values-section p {
    color: var(--text-color);
}
.values-section,
.value-box,
.value-box * {
    color: var(--text-color);
}
/* Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}



.values-grid {
    position: relative;
    z-index: 6;
}

.value-box {
    position: relative;
    z-index: 7;
}
/* Card */
.value-box {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: 0.4s ease;  
    position: relative;
}
.mission-card,
.value-box {
    color: var(--text-color);
    will-change: transform;
}
/* Icon */
.value-box i {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Hover */
.value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Heading */
.value-box h3 {
    margin-bottom: 12px;
    color: var(--text-color);
}

/* Text */
.value-box p {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}
.values-section {
    position: relative;
    z-index: 20;
}
.cta {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1000px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* =========================
   Premium CTA Section
========================= */

.cta-premium {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        var(--section-bg),
        var(--bg-color),
        #020617
    );

    color: var(--text-color);
}

/* Glow Background */
.cta-premium::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent-color);
    opacity: 0.15;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    filter: blur(140px);
}

/* Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(255,255,255,0.06),
        transparent
    );
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

/* Heading */
.cta-premium h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.cta-premium h2 span {
    color: #D4AF37;
}

/* Text */
.cta-premium p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    color: var(--text-color);
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ======================
   Primary Button
====================== */

.cta-primary {
    padding: 15px 38px;
    background: linear-gradient(135deg,#D4AF37,#f5d76e);
    color: #0A1F44;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.cta-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(212,175,55,0.6);
}

/* ======================
   Secondary Button
====================== */

.cta-secondary {
    padding: 15px 38px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-color);
    text-decoration: none;
    transition: 0.4s;
}

.cta-secondary:hover {
    background: var(--card-bg);
    color: var(--text-color);
}