/* Tezzon Charge - Powered by Earth - Custom Styles */

/* Import Google Fonts - Outfit for Headings, Inter for Body */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-color: #ff8f00;
    --secondary-color: #007bff;

    /* Core whites (IMPORTANT) */
    --pure-white: #ffffff;


    --dark-color: #0f172a;
    --text-dark: #0f172a;
    /* slightly deeper = whiter perception */
    --text-light: #64748b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff8f00 0%, #ff5100 100%);
    --gradient-secondary: linear-gradient(135deg, #007bff 0%, #007bff 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(255, 143, 0, 0.12) 0%, transparent 70%);
    --gradient-glass: linear-gradient(145deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.7) 100%);

    /* Lighter shadows = brighter UI */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 14px 30px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 18px rgba(255, 143, 0, 0.25);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--pure-white);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8f00;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* Text Gradients */
.text-gradient-orange {
    background: linear-gradient(135deg, #ff8f00 0%, #ff2200 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #0056b3 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Styles */
.navbar {
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    transition: var(--transition);
    color: #f16506;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: var(--pure-white);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    /* Account for fixed navbar */
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    transition: var(--transition);
}

.hero-stats:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-card {
    background: rgba(4, 4, 4, 0.95);
    /* much clearer */
    backdrop-filter: blur(10px);

    /* IMPORTANT: darker border for contrast */
    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}


.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.hero-logo img {
    max-height: 550px;
    width: auto;
    transform: scale(1.1);
    transform: translateX(-10px) translateY(-10px);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: slideInLeft 1s ease-out;
    transform: translateX(-10px) translateY(-10px);

}

.hero-heading {
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out;
    transform: translateY(-230px) translateX(90px);
    will-change: transform;
    z-index: 5;
    scale: 0.85;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;

    background-color: orange;
    /* base orange */
    color: #000;
    border: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* 🔒 LOCK SAME ORANGE ON HOVER */
.hero-buttons .btn:hover,
.hero-buttons .btn:focus {
    background-color: orange;
    /* SAME COLOR */
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn:active {
    background-color: orange;
    /* SAME COLOR */
    transform: scale(0.97);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.hero-buttons .btn i {
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(4px);
}


/* Charging Station Animation */
.charging-station-mockup {
    position: relative;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.charging-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(5, 5, 5, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

/* Stats Section Items */
.stat-item {
    background-color: var(--pure-white);
    border-radius: 20px;

    /* Invisible by default to match about-card */
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border 0.4s ease;

    position: relative;
    z-index: 2;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-item h2 {
    /* Removed text shadow for cleaner look matching the new design */
    text-shadow: none;
}

/* Technology Section */
.technology-features .feature-item {
    transition: var(--transition);
    padding: 1rem;
    border-radius: 10px;
}

.technology-features .feature-item:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateX(10px);
}

.technology-visual {
    background: var(--gradient-earth) !important;
    color: black;
    position: relative;
    overflow: hidden;
}

.technology-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 86, 146, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

/* Features Section */
.feature-card {
    transition: var(--transition);
    border-radius: 20px;
    /* Soft modern corners */
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    background: orange;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 143, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 143, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    transition: var(--transition);
}

.feature-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.about-card {
    background-color: #ffffff;
    /* pure white */
    border-radius: 20px;
    padding: 3rem 2.5rem;

    /* Invisible by default */
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

#about {
    cursor: pointer;
}

/* Contact Section */
.contact-buttons .btn {
    transition: var(--transition);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 1200;
    margin: 0.5rem;
}

.contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.social-links a {
    transition: var(--transition);
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.2);
    color: var(--secondary-color) !important;
}

/* Contact Card Hover Effect */
.contact-card {
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0056b3 0%, white 100%);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.1);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .charging-station-mockup {
        margin-top: 2rem;
    }

    .pulse-ring {
        width: 150px;
        height: 150px;
    }

    .stats-section .stat-item {
        margin-bottom: 2rem;
    }

    .technology-features .feature-item:hover {
        transform: none;
    }

    .contact-buttons .btn {
        display: block;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 1.5rem;
    }

    .display-5 {
        font-size: 1.25rem;
    }

    .pulse-ring {
        width: 100px;
        height: 100px;
    }
}

/* Custom Utilities */
.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-earth {
    background: var(--gradient-earth) !important;
}

.text-earth {
    color: var(--secondary-color) !important;
}

.border-earth {
    border-color: var(--secondary-color) !important;
}

.btn-earth {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-earth:hover {
    background: #1e7e34;
    border-color: #1e7e34;
    color: white;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.loading.delay-1 {
    animation-delay: 0.2s;
}

.loading.delay-2 {
    animation-delay: 0.4s;
}

.loading.delay-3 {
    animation-delay: 0.6s;
}

/* Hover Effects */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

/* Brand Colors for Earth Theme */
.earth-accent {
    background: rgb(255, 143, 0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Custom Button Styles */
.btn-custom {
    background: var(--gradient-primary);
    border: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: var(--dark-color);
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: #ff8f00 !important;
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: #ff8f00 !important;
}

.text-dark {
    --bs-text-opacity: 1;
    color: white !important;
}

.charging-steps .step:last-child {
    background: linear-gradient(135deg, #ff8f00 0%, #ff6f00 100%) !important;
    color: white !important;
    border-left: 4px solid #007bff;
}

.charging-steps .step:last-child:hover {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    border-left: 4px solid #ff8f00;
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #ff8f00;
    border-color: var(--bs-btn-hover-border-color);
}

.btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: #ff8f00;
    --bs-btn-border-color: #ffc107;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffca2c;
    --bs-btn-hover-border-color: #ffc720;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffcd39;
    --bs-btn-active-border-color: #ffc720;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ffc107;
    --bs-btn-disabled-border-color: #ffc107;
}

#media {
    --bs-bg-opacity: 1;
    background: white
}

.stat-counter {
    font-size: 24px;
    animation: countUp 3s ease-out forwards;
}

@keyframes countUp {
    from {
        counter-reset: stat 0;
    }

    to {
        counter-reset: stat var(--target);
    }
}

.floating-icons {
    position: relative;
}

.icon-float {
    position: absolute;
    background-color: rgba(255, 143, 0, 0.8);
    color: black;
    padding: 10px;
    border-radius: 5px;
    animation: floatIcon 4s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 70%;
}

.icon-2 {
    top: 50%;
    left: 85%;
}

.icon-3 {
    top: 80%;
    left: 70%;
}

.icon-4 {
    top: 30%;
    left: 50%;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.text-light {
    --bs-text-opacity: 1;
    color: #212529 !important;
}

.testimonial-slider {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    display: none;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content {
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-author {
    margin-top: 10px;
    font-style: italic;
}

.location-preview {
    text-align: left;
    background: rgba(0, 123, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.text-light {
    --bs-text-opacity: 1;
    color: black !important;
}

.bg-dark {
    --bs-bg-opacity: 1;
}

.text-warning {
    --bs-text-opacity: 1;
    color: #ff8f00 !important;
}


/* Media Section Uniform Sizing */
.image-container,
.video-container {
    width: 100%;
    height: 350px;
    /* Uniform fixed height */
    position: relative;
    overflow: hidden;
    background: #000;
    /* Placeholder background */
}

.media-image,
.media-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Image Uniform Sizing */
.gallery-item {
    height: 100%;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Social Media Icons */
.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none !important;
    /* No underline for icons */
}

.social-icon-link i {
    font-size: 30px;
    color: #000;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background-color: #ff8f00;
    transform: scale(1.15) translateY(-5px);
}

.social-icon-link:hover i {
    color: #fff;
}

/* Moat Card Styles */
.moat-card-wrapper {
    perspective: 1200px;
    cursor: pointer;
    max-width: 1100px;
    margin: 0 auto;
}

.moat-card {
    position: relative;
    width: 100%;
    min-height: 380px;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    border-radius: 20px;
    transform: translateY(-470px) translateX(40px);
}

/* Flip on click */
/* Flip on click */
.moat-card-wrapper.flipped .moat-card {
    transform: translateY(-470px) translateX(40px) rotateY(180deg);
}

/* Common face styles */
.moat-card-front,
.moat-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* FRONT */
.moat-card-front {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.moat-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.moat-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f66643;
    margin-bottom: 1.2rem;
}

.moat-text {
    color: #0f172a;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.moat-hint {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* BACK */
.moat-card-back {
    transform: rotateY(180deg);
    padding: 0;
}

.moat-card-back img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

/* Overlap the product image into the space left by the shifted Moat Card */
.product-overlap {
    margin-top: -380px;
    /* Pulls image up to fill the Moat Card's ghost space */
    transition: var(--transition);

    transform: translateX(40px);
    /* Align with the Moat Card above */
}

/* Vision Flip Card Styles (Clean version of Moat Card) */
.vision-card-wrapper {
    perspective: 1000px;
    cursor: pointer;
    width: 100%;
}

.vision-card {
    position: relative;
    width: 100%;
    min-height: 400px;
    /* Adjust as needed for content */
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    border-radius: 20px;
    color: #007bff;
}

.vision-card-wrapper.flipped .vision-card {
    transform: rotateY(180deg);
}

.vision-card-front,
.vision-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center content */
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
    /* Light blue shadow */
}

.vision-card-back {
    transform: rotateY(180deg);
    background: var(--pure-white);
    /* Ensure it matches front */
}


/* 📱 Responsive Adjustments */
@media (max-width: 991px) {

    /* Reset Hero Image Position */
    .hero-image {
        transform: none !important;
        margin-bottom: 30px !important;
        scale: 1 !important;
        margin-top: 2rem;
    }

    /* Center Hero Logo */
    .hero-logo {
        text-align: center;
        margin-bottom: 2rem !important;
        transform: none !important;
    }

    .hero-logo img {
        max-height: 200px !important;
        transform: none !important;
        /* Reset desktop transforms */
        margin: 0 auto !important;
        display: inline-block;
        width: auto !important;
        max-width: 80% !important;
        /* Prevent overflowing screen width */
    }

    /* Reset Moat Card Position - make it stack naturally */
    .moat-card {
        transform: none !important;
        min-height: 450px;
        /* Ensure space for content/flip */
        margin-bottom: 2rem;
    }

    /* Ensure the flip still works but without the offset */
    .moat-card-wrapper.flipped .moat-card {
        transform: rotateY(180deg) !important;
    }

    /* Remove the negative overlap for the product image */
    .product-overlap {
        margin-top: 2rem !important;
        transform: none !important;
    }

    /* Adjust container widths */
    .moat-card-wrapper {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    /* Center align buttons */
    .hero-buttons {
        align-items: center !important;
    }

    /* Ensure text is readable */
    .hero-heading {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-content p {
        text-align: center;
    }

    /* Fix Contact Email on Mobile */
    .contact-buttons .btn {
        width: 100%;
        margin-right: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: normal;
        /* Allow text wrapping */
        word-break: break-all;
        /* Break long email if needed */
        font-size: 0.9rem;
        /* Slightly smaller font for mobile */
        padding: 10px;
    }

    /* Fix Hero Stats on Mobile - Stack them */
    .hero-stats .row {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats .col-4 {
        width: 100%;
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        /* Horizontal separator */
        padding-bottom: 1rem;
    }

    .hero-stats .col-4:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}