/* ==========================================================================
   Honors for Justice Foundation - Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variables & Reset
   -------------------------------------------------------------------------- */
:root {
    --primary-color: #001f3f;
    /* Navy Blue */
    --secondary-color: #e67e22;
    /* Warm Orange/Amber */
    --accent-color: #f1c40f;
    /* Sunflower Yellow */
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --grey: #bdc3c7;
    --danger: #e74c3c;
    --success: #2ecc71;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* --------------------------------------------------------------------------
   2. Components & Utilities
   -------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-donate {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 25px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
    border: 2px solid var(--secondary-color);
}

.btn-donate:hover {
    background-color: #d35400;
    border-color: #d35400;
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
}

/* --------------------------------------------------------------------------
   3. Loading Screen
   -------------------------------------------------------------------------- */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    width: 60px;
    height: 60px;
    position: relative;
    margin-bottom: 20px;
}

.leaf {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 0 50%;
    background-color: var(--primary-color);
    transform-origin: bottom right;
}

.leaf1 {
    transform: rotate(0deg) translate(-20px, -20px);
    opacity: 0.8;
    animation: spin 2s linear infinite;
}

.leaf2 {
    transform: rotate(90deg) translate(-20px, -20px);
    opacity: 0.6;
    animation: spin 2s linear infinite 0.5s;
    background-color: var(--secondary-color);
}

.leaf3 {
    transform: rotate(180deg) translate(-20px, -20px);
    opacity: 0.8;
    animation: spin 2s linear infinite 1s;
}

.leaf4 {
    transform: rotate(270deg) translate(-20px, -20px);
    opacity: 0.6;
    animation: spin 2s linear infinite 1.5s;
    background-color: var(--secondary-color);
}

@keyframes spin {
    0% {
        transform: rotate(0deg) scale(0.5);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(0.5);
    }
}

/* --------------------------------------------------------------------------
   4. Floating Particles
   -------------------------------------------------------------------------- */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background-color: rgba(0, 31, 63, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* --------------------------------------------------------------------------
   4.5 Floating Decorative Icons
   -------------------------------------------------------------------------- */
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    color: rgba(42, 110, 63, 0.15);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
    transition: all 0.3s ease;
}

.floating-icon:hover {
    color: rgba(42, 110, 63, 0.35);
    opacity: 1;
    transform: scale(1.2);
    pointer-events: auto;
}

/* Individual icon positioning and animation delays */
.floating-icon.icon-1 {
    top: 10%;
    left: 5%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 25%;
    right: 8%;
    animation-duration: 22s;
    animation-delay: 2s;
    font-size: 28px;
}

.floating-icon.icon-3 {
    top: 45%;
    left: 3%;
    animation-duration: 20s;
    animation-delay: 4s;
    font-size: 20px;
}

.floating-icon.icon-4 {
    top: 60%;
    right: 5%;
    animation-duration: 24s;
    animation-delay: 6s;
}

.floating-icon.icon-5 {
    bottom: 25%;
    left: 8%;
    animation-duration: 19s;
    animation-delay: 3s;
    font-size: 26px;
}

.floating-icon.icon-6 {
    bottom: 40%;
    right: 10%;
    animation-duration: 21s;
    animation-delay: 5s;
}

.floating-icon.icon-7 {
    bottom: 15%;
    left: 12%;
    animation-duration: 23s;
    animation-delay: 1s;
    font-size: 22px;
}

.floating-icon.icon-8 {
    top: 35%;
    left: 50%;
    animation-duration: 25s;
    animation-delay: 7s;
    font-size: 18px;
}

/* Floating animation keyframes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) translateX(20px) rotate(5deg);
    }

    50% {
        transform: translateY(-15px) translateX(-20px) rotate(-5deg);
    }

    75% {
        transform: translateY(-40px) translateX(15px) rotate(3deg);
    }
}

/* --------------------------------------------------------------------------
   5. Header & Navigation
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.contact-item {
    margin-right: 20px;
}

.contact-item i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 25px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
    font-size: 15px;
}

.nav-link i {
    margin-right: 3px;
    font-size: 14px;
    color: var(--grey);
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover i,
.nav-link.active i {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Modern multi-layer gradient overlay */
    background:
        /* Subtle vignette effect from edges */
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.15) 100%),
        /* Brand color accent gradient from bottom-left */
        linear-gradient(135deg, rgba(42, 110, 63, 0.35) 0%, transparent 50%),
        /* Subtle dark gradient for text contrast at bottom */
        linear-gradient(to top, rgba(0, 31, 63, 0.6) 0%, transparent 40%);

    /* Add subtle backdrop blur for modern glass effect */
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.3s ease;
}

.hero-content {
    width: 100%;
    z-index: 10;
}

.hero-text {
    max-width: 700px;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons .btn {
    margin-right: 15px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 0;
}

.slideshow-controls {
    position: absolute;
    bottom: 30px;
    right: 50px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.slideshow-prev,
.slideshow-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: var(--primary-color);
}

.slideshow-dots {
    display: flex;
    margin: 0 15px;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.slideshow-dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.slide-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: left;
    z-index: 10;
}

.slide-caption p {
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* --------------------------------------------------------------------------
   7. Features Section
   -------------------------------------------------------------------------- */
.features-section {
    padding: 60px 0;
    background-color: var(--white);
    position: relative;
    top: -60px;
    margin-bottom: -60px;
    z-index: 20;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--secondary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 31, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 32px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.feature-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   8. About Section
   -------------------------------------------------------------------------- */
.about-section {
    padding: 100px 0;
    background-color: #f8fcf9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.about-founder {
    display: flex;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.founder-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    position: relative;
    /* Elegant gradient border effect */
    padding: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    box-shadow:
        0 4px 15px rgba(42, 110, 63, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.founder-image:hover {
    transform: scale(1.05);
    box-shadow:
        0 8px 25px rgba(42, 110, 63, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: var(--white);
    display: block;
}

.founder-info h4 {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--primary-color);
}

.founder-info p {
    margin-bottom: 0;
    font-size: 13px;
    color: #888;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-left: 3px solid var(--primary-color);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.impact-chart h4 {
    margin-bottom: 20px;
    text-align: center;
}

.chart-bar {
    margin-bottom: 15px;
}

.chart-bar span {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
}

.chart-bar .bar {
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.chart-bar .bar-fill {
    height: 100%;
    background-color: var(--secondary-color);
    width: 0;
    transition: width 1.5s ease-out;
}

.chart-bar .percentage {
    font-size: 12px;
    float: right;
    margin-top: -20px;
}

/* --------------------------------------------------------------------------
   9. Services Section (What We Do)
   -------------------------------------------------------------------------- */
.services-section {
    padding: 100px 0;
    background: url('assets/images/pattern.png') repeat;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f7f2;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    min-height: 60px;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   10. Help Section
   -------------------------------------------------------------------------- */
.help-section {
    padding: 100px 0;
    background-color: #2a6e3f;
    background-image: linear-gradient(135deg, #2a6e3f 0%, #1e5230 100%);
    color: var(--white);
}

.help-section .section-title {
    color: var(--white);
}

.help-section .section-title::after {
    background-color: var(--accent-color);
}

.help-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.help-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--text-color);
    transition: var(--transition);
}

.help-card.featured {
    transform: scale(1.05);
    border: 4px solid var(--accent-color);
    position: relative;
    z-index: 5;
}

.help-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.featured .help-icon {
    color: var(--secondary-color);
}

.help-card h3 {
    margin-bottom: 15px;
}

.help-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.help-features {
    text-align: left;
    margin-bottom: 25px;
}

.help-features span {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}

.help-features i {
    color: var(--success);
    margin-right: 5px;
}

.btn-help {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.btn-help:hover {
    background-color: #1e5230;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.amount-btn {
    padding: 8px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.custom-donation {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-donation input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.sponsorship-options {
    text-align: left;
    margin-bottom: 20px;
}

.option {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.option input {
    margin-right: 10px;
}

/* --------------------------------------------------------------------------
   11. Projects Section
   -------------------------------------------------------------------------- */
.projects-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-view {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:hover .project-view {
    transform: scale(1);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.project-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    font-size: 12px;
    color: #888;
}

.project-meta i {
    color: var(--secondary-color);
    margin-right: 3px;
}

.btn-project {
    display: block;
    text-align: center;
    background: #f0f7f2;
    color: var(--primary-color);
    padding: 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.btn-project:hover {
    background: var(--primary-color);
    color: var(--white);
}

.projects-cta {
    text-align: center;
    margin-top: 40px;
}

.projects-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   12. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img,
.author-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary-color);
}

.author-info h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 16px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.testimonial-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-dots {
    display: flex;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.testimonial-dot.active {
    background: var(--secondary-color);
}

/* --------------------------------------------------------------------------
   13. Newsletter Section
   -------------------------------------------------------------------------- */
.newsletter-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.newsletter-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-text {
    flex: 1;
    padding-right: 40px;
}

.newsletter-text h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.newsletter-text p {
    color: #666;
    margin-bottom: 0;
}

.newsletter-form {
    flex: 1;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 50px 0 0 50px;
    outline: none;
}

.btn-newsletter {
    border-radius: 0 50px 50px 0;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-weight: 600;
}

.newsletter-form .form-check {
    font-size: 12px;
    color: #888;
    margin-left: 10px;
}

/* --------------------------------------------------------------------------
   14. Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    padding: 20px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f7f2;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.contact-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-social .social-icons a {
    color: var(--primary-color);
    background: #f0f7f2;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-left: 0;
}

.contact-social .social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #1e5230;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--primary-color);
    color: #bdc3c7;
    padding: 80px 0 0;
    font-size: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 30px;
}

.footer-logo .logo-main {
    font-size: 20px;
}

.footer-logo .logo-sub {
    font-size: 12px;
}

.footer-about {
    margin-bottom: 20px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bdc3c7;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    font-size: 10px;
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.footer-social .social-icons a {
    margin-left: 0;
    margin-right: 10px;
    color: #bdc3c7;
}

.footer-social .social-icons a:hover {
    color: var(--white);
}

.footer-newsletter-form {
    display: flex;
    margin-top: 15px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    border-radius: 4px 0 0 4px;
}

.footer-newsletter-form button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links-bottom a {
    color: #bdc3c7;
    margin-left: 20px;
    font-size: 13px;
}

.footer-links-bottom a:hover {
    color: var(--secondary-color);
}

/* --------------------------------------------------------------------------
   16. Back to Top Button
   -------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: var(--transition);
}

.back-to-top:hover {
    background-color: #d35400;
    transform: translateY(-5px);
}

.back-to-top.visible {
    display: flex;
    animation: bounceIn 0.5s;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* --------------------------------------------------------------------------
   17. Modal & Toast
   -------------------------------------------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    transform: translateY(-50px);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: var(--danger);
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    color: var(--primary-color);
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.payment-method {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.payment-method:hover {
    border-color: var(--secondary-color);
    background: #fff9f0;
}

.payment-method input {
    margin-bottom: 5px;
}

.payment-method i {
    font-size: 24px;
    color: var(--primary-color);
}

.btn-donate-modal {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transition: var(--transition);
    opacity: 0;
}

.toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
}

.toast-icon {
    font-size: 24px;
    color: var(--success);
    margin-right: 15px;
}

.toast-message h4 {
    margin-bottom: 2px;
    font-size: 16px;
    color: var(--text-color);
}

.toast-message p {
    font-size: 12px;
    color: #666;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   14. Upcoming Events Section (HUD Style)
   -------------------------------------------------------------------------- */
.events-section {
    padding: 100px 0;
    background-color: #f8fbff;
    position: relative;
    overflow: hidden;
}

.events-hud-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 20px;
}

.hud-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 31, 63, 0.1);
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hud-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 31, 63, 0.15);
    border-color: var(--primary-color);
}

/* HUD Corners */
.hud-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hud-card:hover .hud-corner {
    border-color: var(--secondary-color);
}

.top-left {
    top: -2px;
    left: -2px;
    border-top-color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.top-right {
    top: -2px;
    right: -2px;
    border-top-color: var(--primary-color);
    border-right-color: var(--primary-color);
}

.bottom-left {
    bottom: -2px;
    left: -2px;
    border-bottom-color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.bottom-right {
    bottom: -2px;
    right: -2px;
    border-bottom-color: var(--primary-color);
    border-right-color: var(--primary-color);
}

/* Event Styles */
.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hud-card:hover .event-image img {
    transform: scale(1.1);
}

.event-status {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(5px);
}

.event-status.live {
    background: rgba(231, 76, 60, 0.9);
}

.event-status.upcoming {
    background: var(--primary-color);
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.event-date .day {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #888;
    margin-top: 2px;
}

.event-details {
    padding: 20px 10px 10px;
}

.event-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.event-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

.event-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.event-details p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 20px;
}

.event-actions {
    display: flex;
    gap: 10px;
}

.btn-hud-primary {
    flex: 1;
    padding: 10px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-hud-primary:hover {
    background: #003366;
}

.btn-hud-secondary {
    width: 40px;
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hud-secondary:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* --------------------------------------------------------------------------
   15. Meet the Team Section
   -------------------------------------------------------------------------- */
.team-section {
    padding: 100px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 31, 63, 0.8);
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
}

.team-social a:hover {
    color: var(--secondary-color);
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.team-role {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

/* Partners Section Styles */
.partners-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.partners-grid {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.partner-placeholder-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed var(--grey);
    border-radius: var(--border-radius);
    background: var(--white);
    transition: var(--transition);
    min-width: 200px;
}

.partner-placeholder-simple:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.partner-logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    /* Subtle professional glow */
    filter: drop-shadow(0 0 5px rgba(0, 31, 63, 0.1));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.partner-placeholder-simple:hover .partner-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(230, 126, 34, 0.3));
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.2);
}

.partner-label {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* --------------------------------------------------------------------------
   16. Contact Section Redesign (Glassmorphism)
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 40px;
}

/* Left Column: Contact Info */
.contact-info-box {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003366 100%);
    padding: 50px 40px;
    color: #fff;
    position: relative;
}

.contact-info-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--white);
}

.info-desc {
    color: var(--white);
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.info-item:hover .icon-circle {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.info-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--white);
}

.info-text p {
    color: var(--white);
    font-size: 14px;
}

.social-connect {
    margin-top: 50px;
}

.social-connect h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

/* Right Column: Contact Form */
.contact-form-box {
    flex: 1.5;
    min-width: 350px;
    padding: 50px;
    background: #fff;
}

.contact-form-box h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Floating Label Styles */
.floating-label-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    border: none;
    border-bottom: 2px solid #ddd;
    outline: none;
    background: transparent;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-bottom-color: var(--primary-color);
}

.floating-label-group label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-control:focus~label,
.form-control:not(:placeholder-shown)~label {
    top: -10px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Select Styling hack for placeholder */
select.form-control:invalid {
    color: #999;
}

select.form-control option {
    color: #333;
}

.submit-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 51, 102, 0.3);
}

.submit-btn i {
    margin-left: 10px;
}

/* Response for form layout */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form-box {
        padding: 30px;
    }

    .contact-info-box {
        padding: 40px 30px;
    }
}