/* 
  MIND AXIS CONSULTING
  Premium Light Theme Stylesheet
*/

:root {
    /* Color Palette */
    --bg-main: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-card: #FFFFFF;
    
    --brand-navy: #003366;     /* Deep Navy Blue: Header backgrounds, primary buttons, main text */
    --brand-electric: #0073C1; /* Electric Blue: Sub-headers, links */
    --brand-vibrant: #F7941E;  /* Vibrant Orange: CTA buttons, icons */
    --brand-burnt: #D47012;    /* Burnt Orange: Hover states, gradient accents */
    
    --text-primary: var(--brand-navy);
    --text-secondary: #475569;
    --text-light: #FFFFFF;
    
    --gradient-primary: linear-gradient(135deg, var(--brand-vibrant), var(--brand-burnt));
    --gradient-glow: linear-gradient(135deg, rgba(247, 148, 30, 0.5), rgba(212, 112, 18, 0.5));
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Spacing & Layout */
    --container-max: 1200px;
    --section-padding: 100px 0;
    
    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-light: 1px solid rgba(0, 51, 102, 0.1);
    --shadow-card: 0 10px 30px rgba(0, 51, 102, 0.08);
    --shadow-glow: 0 10px 30px rgba(247, 148, 30, 0.3);
}

/* =========================================
   RESETS & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--brand-electric);
    transition: var(--transition);
}

a:hover {
    color: var(--brand-navy);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.bg-alt {
    background-color: var(--bg-alt);
}

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

.accent-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--brand-navy);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.btn-primary:hover {
    background: var(--brand-electric);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 115, 193, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--brand-navy);
    border: 2px solid var(--brand-vibrant);
}

.btn-outline:hover {
    background: var(--brand-vibrant);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: var(--bg-main);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    max-height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-navy);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: var(--brand-electric);
}

.nav-btn {
    padding: 10px 20px;
    background: var(--brand-vibrant); /* CTA Button */
}

.nav-btn:hover {
    background: var(--brand-burnt);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--brand-navy);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
    background-color: var(--brand-navy); /* Header Background */
    color: var(--text-light);
}

.hero h1, .hero p {
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 115, 193, 0.2) 0%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-buttons .btn-primary {
    background: var(--brand-vibrant);
}
.hero-buttons .btn-primary:hover {
    background: var(--brand-burnt);
}

.hero-buttons .btn-outline {
    color: var(--text-light);
    border-color: rgba(255,255,255,0.5);
}
.hero-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--text-light);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--brand-electric);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--brand-vibrant);
    bottom: 100px;
    left: -50px;
}

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--brand-navy);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header .subtitle {
    color: var(--brand-electric); /* Sub-headers */
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.section-header .desc {
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-content strong {
    color: var(--brand-navy);
}

.glass-card {
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-electric);
    box-shadow: 0 15px 35px rgba(0, 115, 193, 0.1);
}

.card-icon {
    font-size: 2rem;
    color: var(--brand-vibrant); /* Icons */
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: rgba(247, 148, 30, 0.1);
    border-radius: 12px;
}

.glass-card h3 {
    color: var(--brand-electric); /* Sub-headers */
}

.mt-4 {
    margin-top: 30px;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-vibrant);
    box-shadow: 0 15px 35px rgba(247, 148, 30, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--brand-vibrant); /* Icons */
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--brand-electric); /* Sub-headers */
}

.service-desc {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.service-list {
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-list li i {
    color: var(--brand-electric);
    margin-top: 4px;
    font-size: 0.8rem;
}

.service-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.ideal-for {
    font-size: 0.9rem;
    color: var(--brand-burnt);
    font-style: italic;
    font-weight: 500;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--brand-navy);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    padding: 15px 25px;
    border-radius: 12px;
    border: var(--border-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: var(--brand-vibrant);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--brand-vibrant); /* Icons */
    width: 40px;
}

.feature-text {
    font-weight: 500;
    color: var(--text-primary);
}

.image-wrapper {
    position: relative;
    height: 500px;
    border-radius: 20px;
    background: var(--bg-alt);
    border: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: var(--brand-electric);
    top: 50px;
    left: 50px;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: var(--brand-vibrant);
    bottom: 50px;
    right: 50px;
}

.stats-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: var(--border-light);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
}

.stats-card h3 {
    font-size: 4rem;
    margin: 0;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-card span {
    font-size: 3rem;
    color: var(--brand-vibrant);
    font-family: var(--font-heading);
    font-weight: 800;
}

.stats-card p {
    font-size: 1.2rem;
    color: var(--brand-navy);
    margin-top: 10px;
    font-weight: 600;
}

/* =========================================
   FOUNDER SECTION
   ========================================= */
.founder-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: var(--gradient-primary);
}

.founder-img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    display: block;
}

.founder-name-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-card);
    border: var(--border-light);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
    max-width: 90%;
}

.founder-name-badge h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--brand-electric);
}

.founder-name-badge p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.founder-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: var(--border-light);
    box-shadow: var(--shadow-card);
    aspect-ratio: 2/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--brand-navy); /* Header Background color for Footer */
    color: var(--text-light);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-info h3 .accent {
    color: var(--brand-vibrant); /* Axis accent in footer */
}

.footer-info p {
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--brand-vibrant);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4, .footer-qr h4 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.8);
}

.footer-links ul li a:hover {
    color: var(--brand-vibrant);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

.contact-item i {
    color: var(--brand-vibrant);
    margin-top: 5px;
}

.qr-code-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.qr-code-wrapper img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: 2px solid var(--brand-vibrant);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    color: rgba(255,255,255,0.7);
}

/* =========================================
   ANIMATIONS & UTILITIES
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .about-grid, .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .founder-name-badge {
        right: 0;
        left: 0;
        bottom: -20px;
        margin: 0 auto;
        text-align: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        flex-direction: column;
        padding: 30px 0;
        gap: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .image-wrapper {
        height: 300px;
    }
}
