/*
Theme Name: Bodhi Academy
Theme URI: http://bodhiacademy.com
Author: Antigravity
Description: A premium, visually stunning theme for Bodhi Academy.
Version: 3.1 (Images Update)
Text Domain: bodhi-academy
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* --- Brand Colors (Deep Teal & Gold) --- */
    --primary: #005B4F;
    /* Professional Deep Teal */
    --primary-dark: #003d35;
    --primary-light: #e0f2f1;
    /* Very light teal background */

    --accent: #FFC107;
    /* EdTech Gold/Amber */
    --accent-hover: #FFA000;

    --text-main: #1f2937;
    /* Soft Black */
    --text-muted: #6b7280;
    /* Muted Gray */
    --text-light: #ffffff;

    /* --- Layout --- */
    --container: 1280px;
    --header-height: 85px;
    --radius-card: 16px;
    --radius-btn: 50px;

    /* --- Shadows --- */
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(0, 91, 79, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    /* --- Glass Effects --- */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(12px);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
    color: inherit;
}

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

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 91, 79, 0.2);
}

.btn-accent {
    background-color: var(--accent);
    color: #000;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* --- Academia Style Header --- */
.site-header {
    position: relative;
    /* Changed from absolute to prevent overlapping content */
    width: 100%;
    z-index: 1000;
    background: white;
    /* Default background for consistency */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Top Bar */
.header-top {
    background: var(--primary);
    color: white;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo Group */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-group {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 4px;
    text-transform: uppercase;
}

/* Custom Logo Constraint */
.logo-image .custom-logo-link img,
.logo-image .custom-logo,
.logo-image img {
    max-height: 75px !important;
    width: auto !important;
    max-width: 100%;
}

.logo-image {
    display: flex;
    align-items: center;
    max-height: 80px;
}

/* Header Widgets */
.header-widgets {
    display: flex;
    gap: 40px;
    align-items: center;
}

.widget-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-circle {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: var(--accent);
}

.widget-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.widget-text .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.widget-text .value {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

/* Socials in Header */
.header-socials {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.header-socials a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    color: white;
    transition: 0.3s;
}

.header-socials a:hover {
    background: var(--accent);
    color: black;
}

/* Bottom Bar */
.header-bottom {
    background: rgba(255, 255, 255, 0.1);
    /* Glass Strip */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Nav Menu */
.main-navigation {
    margin: 0;
}

.main-navigation ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--primary);
    /* Dark Teal for visibility on light bg */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    text-decoration: none;
}

.main-navigation a:hover {
    color: var(--accent);
}

/* Dropdown Support */
.main-navigation ul li {
    position: relative;
    padding: 15px 0;
    /* Increase hit area and alignment */
}

.main-navigation ul .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 100;
    flex-direction: column;
    gap: 0;
}

.main-navigation ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul .sub-menu li {
    padding: 0;
    width: 100%;
}

.main-navigation ul .sub-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    transition: 0.2s;
}

.main-navigation ul .sub-menu a:hover {
    background: rgba(0, 191, 165, 0.05);
    color: var(--primary);
    padding-left: 30px;
}

/* Triangle Indicator for dropdown parent */
.main-navigation ul .menu-item-has-children>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.main-navigation ul .menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
    color: var(--accent);
}

/* Angled CTA Button */
.header-cta {
    height: 100%;
    display: flex;
    align-items: center;
}

.btn-angled {
    background: #00bfa5;
    /* Teal Green Pop */
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0% 100%);
    transition: 0.3s;
    text-decoration: none;
    background: linear-gradient(45deg, #009688, #26a69a);
    margin-right: -24px;
    /* Pull to edge if needed, or keep flush */
}

.btn-angled:hover {
    padding-right: 50px;
    background: linear-gradient(45deg, #00897b, #00796b);
}

/* Hide Old Elements */
.logo-text,
.logo-accent,
.auth-buttons,
.btn-login {
    display: none;
}

/* --- Animations --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Ticker Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

.animate-scroll {
    animation: scroll 30s linear infinite;
}

.news-ticker-wrapper:hover .animate-scroll {
    animation-play-state: paused;
}

/* --- Search Form (Premium Glass) --- */
.search-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-field {
    border: none;
    background: transparent;
    padding: 10px 20px;
    flex-grow: 1;
    font-size: 0.95rem;
    color: var(--primary);
    outline: none;
}

.search-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.search-submit:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.05);
}

/* Post Thumb Hover Effect */
.blog-image img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover .blog-image img {
    transform: scale(1.1) rotate(1deg);
}

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Ensure mobile header is also brand-aligned */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .site-header {
        position: relative;
        background: var(--primary);
    }

    .header-bottom {
        background: var(--primary);
        padding: 15px 0;
    }

    .menu-toggle {
        color: white;
        font-size: 1.5rem;
        background: transparent;
        border: none;
    }
}

/* Pillar Items */
.pillar-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 91, 79, 0.1) !important;
    border-color: var(--primary) !important;
}

.pillar-item:hover i {
    transform: scale(1.2);
    transition: 0.3s;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

.animate-glow {
    transition: all 0.4s ease;
}

.animate-glow:hover {
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.4);
    border-color: var(--accent) !important;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* --- Modern Hero (Glassmorphism) --- */
.hero-section {
    padding: 80px 0;
    min-height: 80vh;
    background: radial-gradient(circle at top right, #fffbec 0%, #ffffff 50%, #e0f2f1 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Decor Blob */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left Content */
.hero-content {
    position: relative;
    z-index: 20;
    padding-right: 20px;
}

.hero-content h1 span {
    color: var(--primary);
    background: -webkit-linear-gradient(45deg, var(--primary), #00897b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 0px rgba(255, 193, 7, 0.3));
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 25px 0 40px;
    line-height: 1.8;
}

/* Right Image Area */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-main {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 91, 79, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    border: 4px solid rgba(255, 255, 255, 0.6);
}

.hero-visual:hover .hero-img-main {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* --- Glass Stats Card (Floating) --- */
.stats-glass-card {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.7);
    /* Translucent White */
    backdrop-filter: blur(12px);
    /* Frost Effect */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 25px 40px;
    box-shadow: 0 15px 35px rgba(0, 91, 79, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 25;
}

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

.stat-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Mobile Responsiveness for Glass */
@media (max-width: 900px) {
    .stats-glass-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 30px;
        width: 100%;
    }
}

/* --- Section Styling --- */
.section-padding {
    padding: 80px 0;
}

.bg-offset {
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--text-muted);
    margin-top: 10px;
}

/* --- Course Cards --- */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: white;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: 0.3s ease;
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

/* --- Mission/Vision Cards --- */
.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 91, 79, 0.12);
}

@media (max-width: 768px) {
    .mission-vision .container>div {
        grid-template-columns: 1fr !important;
    }
}

.course-thumb {
    height: 200px;
    background-color: var(--primary-light);
    overflow: hidden;
}

.course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.course-card:hover .course-thumb img {
    transform: scale(1.05);
}

.course-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-badge {
    background: #e0f2f1;
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 15px;
}

.course-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.course-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.course-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* --- Premium Footer --- */
.site-footer {
    background-color: #00251a;
    /* Deepest Teal/Black */
    color: #cbd5e1;
    padding: 80px 0 0;
    font-size: 0.95rem;
    position: relative;
    border-top: 4px solid var(--accent);
    /* Gold Top Border */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    /* Adjusted for content balance */
    gap: 50px;
    padding-bottom: 60px;
}

.footer-heading {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin-top: 8px;
    border-radius: 2px;
}

/* Links */
.footer-links li,
.course-list li,
.contact-list li {
    margin-bottom: 14px;
}

.footer-links a,
.course-list a {
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover,
.course-list a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* Social Icons (Circles) */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    /* Glass Style */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Contact List */
.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    line-height: 1.5;
}

.contact-list i {
    color: var(--accent);
    margin-top: 4px;
}

/* Footer Bottom */
.site-info-strip {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
    /* Legacy override if needed */
    display: none;
}

/* --- Mobile Responsiveness --- */
/* Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 20px;
}

@media (max-width: 900px) {

    /* --- Header Fixes --- */
    .top-inner {
        flex-direction: column !important;
        height: auto !important;
        padding: 15px 10px;
    }

    .header-widgets {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    }

    .widget-item {
        width: 100%;
        justify-content: center;
    }

    .widget-text {
        display: flex !important;
        /* Keep visible but stacked */
        align-items: center;
        text-align: left;
    }

    /* Hide large CTA on mobile to make room for menu */
    .header-cta {
        display: none !important;
    }

    .bottom-inner {
        justify-content: space-between;
        padding: 0 20px;
    }

    /* --- Hero & Stats Fixes --- */
    h1 {
        font-size: 2rem !important;
        /* Smaller title */
        line-height: 1.2;
    }

    .stats-card-container {
        width: 100% !important;
        /* Full width */
        margin: 20px 0 0 0 !important;
        /* Stack below image */
        left: 0 !important;
        transform: none !important;
        position: relative !important;
        top: 0 !important;
    }

    .hero-visual {
        margin-top: 30px;
    }

    .animate-float {
        animation: none !important;
        /* Disable float animation on mobile */
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        /* Stack stats vertically */
        gap: 20px;
        text-align: center;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 15px;
    }

    /* General Grids */
    .courses-grid,
    .hero-grid,
    .footer-grid,
    .tracks-grid,
    .pro-grid,
    .why-grid,
    .infra-grid {
        grid-template-columns: 1fr !important;
    }

    .logo-main {
        font-size: 1.5rem;
    }

    /* --- Header --- */
    /* .top-inner {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    } */

    /* .header-widgets {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    } */

    /* .widget-text {
        display: none;
    } */

    .widget-item .icon-circle {
        border-color: rgba(255, 255, 255, 0.2);
    }

    /* .bottom-inner {
        justify-content: space-between;
    } */

    .menu-toggle {
        display: block;
    }

    /* Mobile Nav */
    .main-navigation {
        display: none;
        position: absolute;
        top: 60px;
        /* Below header bottom */
        left: 0;
        width: 100%;
        background: #004d40;
        z-index: 999;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .main-navigation.toggled {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        /* Contrast on dark bg */
    }

    /* .header-cta {
        display: none;
    } */

    /* --- Typography & Layout --- */
    /* h1 {
        font-size: 2.2rem !important;
    } */

    h2 {
        font-size: 1.8rem !important;
    }

    /* .courses-grid,
    .hero-grid,
    .footer-grid,
    .stats-grid,
    .tracks-grid,
    .why-grid,
    .infra-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    } */

    .about-hero,
    .hero-section {
        height: auto !important;
        padding: 80px 0 !important;
    }

    .container {
        padding: 0 20px;
    }
}

/* Simple Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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