/* Import fonts */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: #f3f4f6;
    color: #000;
    padding-top: 160px; /* Add padding to account for the fixed header and nav */
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Sticky wrapper for header and nav */
.sticky-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background-color: white;
    padding: 1rem 0.5rem;
    height: 90px;
}

header > div {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 80px;
    width: auto;
    margin-top: -15px;
}

.title-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

header h1 {
    color: #1b1401;
    font-weight: 600;
    font-size: 1.775rem;
    line-height: 1.2;
    margin: 0;
}

header p {
    font-size: 11px;
    font-weight: 600;
    color: black;
    margin: 0;
    margin-top: 2px;
    padding-left: 60px;
}

/* Menu container to ensure the hamburger is properly aligned */
.menu-container {
    display: flex;
    align-items: center;
}

/* Navigation */
nav {
    background-color: #f4c542;
    color: white;
    font-size: 0.75rem;
    font-weight: 400;
}

nav > div {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 3rem;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    padding: 0.5rem 0;
    font-weight: 400;
}

nav li {
    display: inline-block;
}

nav a,
nav button {
    color: white;
    font-size: 0.875rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 400;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: background 0.3s ease, color 0.3s ease;
}

nav a:hover,
nav button:hover {
    text-decoration: underline;
}

nav a.active {
    background-color: white;
    color: #f4c542;
    font-weight: 600;
}

nav button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

nav i {
    font-size: 0.75rem;
}

/* Main content area */
.main-content {
    max-width: 1120px;
    margin: 2rem auto;
    padding: 0 3rem;
    min-height: 1000px; /* Just for demo to enable scrolling */
}

/* Glossy effect */
.glossy {
    background: linear-gradient(145deg, #f4c542, #e0b83c);
    border-radius: 10px;
    box-shadow: 6px 6px 12px #b3b3b3, -6px -6px 12px #ffffff;
}

/* Mobile Navigation Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 14px;
    width: 20px;
}

.hamburger-lines .line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #352b0f;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}

.hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}

.hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

/* Menu Open State */
.menu-open .line1 {
    transform: rotate(45deg);
}

.menu-open .line2 {
    transform: scaleY(0);
}

.menu-open .line3 {
    transform: rotate(-45deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 140px; /* Less padding on mobile */
    }

    header > div,
    nav > div,
    .main-content {
        padding: 0 1rem;
    }

    .logo-container img {
        height: 50px;
    }

    .title-container {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
    }

    header h1 {
        font-size: 1.1rem;
    }

    header p {

        font-size: 8px;
        margin: 0px;
        padding: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* Responsive Navigation */
@media (max-width: 768px) {
    nav > div {
        max-width: 100%;
        padding: 0;
    }

    /* Slide-in menu from right */
    nav ul {
        flex-direction: column;
        width: 250px; /* Set fixed width for the menu */
        height: 100vh; /* Full height */
        background-color: #f4c542;
        position: fixed;
        top: 0;
        right: -250px; /* Start off-screen to the right */
        z-index: 1000;
        padding: 80px 0 20px 0; /* Add padding top to account for header */
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    nav.active ul {
        right: 0; /* Slide in from right */
    }

    nav li {
        width: 100%;
        text-align: left; /* Left align text */
        padding: 15px 25px;
    }

    nav a, nav button {
        width: 100%;
        justify-content: flex-start; /* Left align items */
        font-size: 1rem; /* Slightly larger font for better touch targets */
    }

    /* Add overlay when menu is open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Hero Section Animation */
.hero .bg-image {
    animation: zoomInAnimation 12s forwards ease-in-out;
}

@keyframes zoomInAnimation {
    0% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1.1);
    }
}

/* General Animations */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity : 1;
    }
}

.slide-in-right {
    animation: slideInRight 1s ease-in-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.bounce-in {
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}





/* Existing styles retained ... */

/* ✅ DROPDOWN STYLES */
.dropdown {
    position: relative;
}

.dropdown-button {
    background: none;
    border: none;
    color: white;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.dropdown-button:hover,
.dropdown-button.active {
    text-decoration: underline;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #dcb93c;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown[aria-expanded="true"] .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #b89d2f;
}

/* ✅ MOBILE DROPDOWN SUPPORT */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background-color: #e0b83c;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 1.25rem;
    }

    .dropdown[aria-expanded="true"] .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        border: none;
        padding: 0.75rem 0;
        font-size: 0.95rem;
    }
}






/* Apply animations to specific elements */
.hero .text-block {
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.hero h2 {
    animation: slideInLeft 1s ease-out 0.5s both;
}

.hero p {
    animation: slideInLeft 1s ease-out 0.8s both;
}

.hero button {
    animation: fadeIn 1s ease-out 1.1s both;
}

/* Card hover animations */
.key-objectives .card {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.key-objectives .card:hover {
    transform: translateY(-10px);
}

/* Welcome section animations */
.image-gallery img {
    transition: transform 0.5s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

/* Hero Section */
section.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    margin-top: -160px;
}

section.hero img.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -20;
}

section.hero .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(72, 72, 72, 0.6);
    z-index: -10;
}

section.hero .content {
    max-width: 1120px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 100vh;
    padding: 3rem;
    color: white;
    padding-top: 190px;
}

section.hero .text-block {
    flex: 1 1 60%;
    max-width: 640px;
}

section.hero h2 {
    font-weight: 800;
    font-size: 3.05rem; /* 6xl */
    line-height: 1.1;
    margin: 0;
    color: #f4c542; /* Updated color */
}

section.hero h2 span {
    color: white;
}

section.hero p {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1rem;
    max-width: 400px;
    line-height: 1.4;
}

section.hero button {
    margin-top: 1.5rem;
    background-color: #f4c542; /* Updated color */
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

section.hero button:hover {
    background-color: #000000; /* black */
}

@media (max-width: 768px) {
    section.hero .content {
        padding: 1rem;
        min-height: auto;
    }
    section.hero h2 {
        font-size: 3rem; /* 5xl */
    }
    section.hero p {
        font-size: 0.875rem;
    }
    section.hero .text-block {
        max-width: 100%;
        flex: 1 1 100%;
    }
    section.hero{
      margin-top: -180px;
      margin-bottom: -120px;
    }
    section.hero .bg-image{
      margin-top: -50px;
    }
}

@media (max-width: 480px) {
    section.hero h2 {
        font-size: 2rem; /* 4xl */
    }
    section.hero p {
        font-size: 0.75rem;
    }
}

    /* Welcome to Sarathi section */
    section.welcome {
    background-color: #f5f5f5;
    }

    .welcome .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 64px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    position: relative;
    }

    @media (min-width: 768px) {
    .welcome .container {
        flex-direction: row;
        align-items: flex-start;
        gap: 96px;
    }
    }

            .image-gallery {
                max-width: 500px;
                width: 100%;
                margin: 0 auto;
            }
            
            .gallery-container {
                width: 100%;
            }
            
            .top-image {
                width: 100%;
                margin-bottom: 15px;
                border-radius: 4px;
                overflow: hidden;
            }
            
            .top-image img {
                width: 100%;
                height: auto;
                display: block;
            }
            
            .bottom-row {
                display: flex;
                gap: 15px;
                width: 100%;
            }
            
            .bottom-image {
                width: 50%;
                border-radius: 4px;
                overflow: hidden;
            }
            
            .bottom-image img {
                width: 100%;
                height: auto;
                display: block;
            }
            
            /* Optional animation classes similar to the ones in your code */
            .wow {
                visibility: visible;
            }
            
            .zoomIn {
                animation-name: zoomIn;
            }
            
            @keyframes zoomIn {
                from {
                    opacity: 0;
                    transform: scale3d(0.3, 0.3, 0.3);
                }
                50% {
                    opacity: 1;
                }
            }
/*About us Section*/
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* About Overview Section */
        .about-overview {
            padding: 70px 0;
            background-color: #fff;
        }

        .about-overview-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h2 {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 25px;
            position: relative;
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #f4c542;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #666;
        }

        .about-gallery {
            flex: 1;
            min-width: 300px;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 15px;
        }

        .gallery-item:first-child {
            grid-column: 1 / -1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.03);
        }

        /* Four Pillars Section */
        .four-pillars {
            padding: 70px 0;
            background-color: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #f4c542;
        }

        .pillars-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .pillar-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .pillar-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .pillar-icon {
            font-size: 2.5rem;
            color: #f4c542;
            margin-bottom: 20px;
            background-color: rgba(244, 197, 66, 0.1);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px;
        }

        .pillar-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #444;
        }

        .pillar-card p {
            color: #666;
            font-size: 1rem;
        }

        /* Vision & Mission Section */
        .vision-mission {
            padding: 70px 0;
            background-color: #fff;
        }

        .vm-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .vm-card {
            flex: 1;
            min-width: 300px;
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .vm-icon {
            background-color: #f4c542;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .vm-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #444;
        }

        .vm-content p {
            color: #666;
            font-size: 1rem;
        }

        /* Quote & Stats Section */
        .quote-stats {
            margin-top: 50px;
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
        }

        .quote-container {
            flex: 2;
            min-width: 300px;
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .quote-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid #f4c542;
        }

        .quote-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .quote-text {
            flex: 1;
        }

        .quote-text p {
            font-style: italic;
            color: #555;
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .quote-author {
            color: #f4c542;
            font-weight: 600;
        }

        .stats-container {
            flex: 1;
            min-width: 200px;
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #f4c542;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-description {
            font-size: 1.2rem;
            font-weight: 600;
            color: #555;
        }

        /* Programs List */
        .programs-list {
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            
        }

        .programs-list-col {
            flex: 1;
            min-width: 250px;
        }

        .programs-list ul {
            list-style: none;
        }

        .programs-list li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            color: #555;
        }

        .programs-list li i {
            color: #f4c542;
            margin-right: 15px;
        }

        /* In Loving Memory Section */
        .memorial-section {
            padding: 70px 0;
            background-color: #f8f9fa;
            text-align: center;
        }

        .memorial-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 40px;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
            position: relative;
            overflow: hidden;
        }

        .memorial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: #f4c542;
        }

        .memorial-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .memorial-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid rgba(244, 197, 66, 0.3);
        }

        .memorial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .memorial-text h2 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 10px;
        }

        .memorial-text .dates {
            color: #777;
            font-style: italic;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .memorial-text p {
            color: #555;
            font-size: 1.05rem;
            margin-bottom: 15px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .memorial-text .quote {
            font-style: italic;
            color: #f4c542;
            font-weight: 600;
            margin-top: 25px;
            font-size: 1.2rem;
        }

        /* Founder's Message Section */
        .founder-section {
            padding: 70px 0;
            background-color: #f8f9fa;
            text-align: center;
        }

        .founder-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 40px;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
            position: relative;
            overflow: hidden;
        }
        .founder-content{
            display: flex;
            flex-direction: column;
            align-items:center;
            gap: 30px;
            

        }


        .founder-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .founder-header h2 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 10px;
        }

        .founder-header p {
            color: #777;
            font-style: italic;
        }

        .founder-message {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .founder-message p {
            margin-bottom: 15px;
            font-size: 1.05rem;
            margin-bottom: 15px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-align: justify;
        }

        .signature {
            margin-top: 30px;
            text-align: right;
        }

        .signature p {
            font-weight: 600;
            color: #333;
            margin: 5px 0;

        }

        .signature .name {
            font-size: 1.2rem;
            color: #f4c542;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 1s ease-out;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .signature p{
                text-align: right;
            }

            .about-text h2, .section-title {
                font-size: 1.8rem;
            }

            .gallery-container {
                grid-template-columns: 1fr;
            }

            .quote-container {
                flex-direction: column;
                text-align: center;
            }

            .quote-image {
                margin-bottom: 20px;
            }

            .memorial-card, .founder-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .vm-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .stats-container {
                margin-top: 30px;
            }

            .memorial-image {
                width: 150px;
                height: 150px;
            }

            .programs-list li {
                font-size: 0.9rem;
            }
            
        }



   /* Footer */
.footer {
    margin: 0 auto;
    padding-left: 84px;
    padding-right: 84px;
    padding-top: 30px;
    background-color: #000000;
    color: #ffffff;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.md-flex-row {
    flex-direction: row;
}

.justify-between {
    justify-content: space-between;
}

.space-x-20 > * + * {
    margin-left: 80px;
}

.mb-12 {
    margin-bottom: 48px;
}

.md-mb-0 {
    margin-bottom: 0;
}

.w-1-3 {
    width: 33.3333%;
}

h2 {
    font-weight: 800;
 font-size: 1.25rem;
    margin-bottom: 24px;
}

.text-orange {
    color: #f4c542; /* Updated color */
}

p {
    color: #9ca3af;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 32px;
}

button {
    background-color: #f4c542; /* Updated color */
    color: #0f243e;
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: #000000; /* black */
    color: #ffffff;
}

.text-gray-600 {
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 16px;
}

.flex-center {
    display: flex;
    align-items: center;
}

.space-x-4 > * + * {
    margin-left: 16px;
}

.icon-box {
    background-color: #f4c542; /* Updated color */
    padding: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f243e;
    font-size: 1.125rem;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-box:hover {
    background-color: #000000; /* black */
    color: #ffffff;
}

.text-gray-400 {
    color: #9ca3af;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #9ca3af;
}

ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

ul li i {
    color: #f4c542; /* Updated color */
    margin-right: 12px;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
    transition: color 0.3s ease;
}

ul li:hover i {
    color: #000000; /* black */
}

hr {
    border: none;
    border-top: 1px solid #374151;
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
    font-size: 0.875rem;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom a {
    color: #f4c542; /* Updated color */
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #fb923c;
}

/* Responsive */
@media (min-width: 768px) {
    .flex-col.md-flex-row {
        flex-direction: row;
    }
    .mb-12.md-mb-0 {
        margin-bottom: 0;
    }
    .w-1-3 {
        width: 33.3333%;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 48px 16px;
    }
    p {
        max-width: 100%;
    }
    .space-x-20 > * + * {
        margin-left: 0;
    }
    .flex-col.md-flex-row {
        flex-direction: column;
    }
    .w-1-3 {
        width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-bottom p {
        margin: 0;
    }
}

