

        @font-face {
    font-family: 'E1234';
    src: url('../../fonts/E1234.ttf') format('truetype');
}

        @font-face {
    font-family: 'ZonaPro-Bold';
    src: url('../../fonts/ZonaPro-SemiBold.ttf') format('truetype');
}
        @font-face {
    font-family: 'ZonaPro-ExtraBold';
    src: url('../../fonts/ZonaPro-ExtraBoldDemo.otf') format('opentype');
}
        @font-face {
    font-family: 'ZonaPro-Light';
    src: url('../../fonts/ZonaPro-Light.otf') format('opentype');
}


@supports (-webkit-touch-callout: none){
    .backGroundImageHome-home, .backGroundImageAbout1, .backGroundImageAbout2 {
        background-attachment: scroll !important;
    }
    
}
/***************************************** Original Navbar Styles *****************************************/
/***************************************** Original Navbar Styles *****************************************/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.extraPage {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    padding-top: 200px; /* Prevent content from going under navbar */
}

.container-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100vw;
    margin: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.container-1 .btn-1 {
    background-color: #009cdc !important;
    color: white !important;
    padding: 5px 25px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: 0.3s ease;
}

.container-1 .btn-1:hover {
    background-color: #007aac !important;
}

.container-1 .lang {
    font-family: 'Tajawal', sans-serif;
    font-size: 18px;
    vertical-align: middle;
}

/* Original Navbar Logo - Larger and Far Right */
.container-1 .navbar-logo {
    padding-top: 10px;
    height: 180px; /* Increased size */
    object-fit: contain;
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
}

.container-1 .nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 20px !important; /* Increased from 15px to 20px */
    margin-left: 0 !important;
    width: 100%;
}

.container-1 .nav-link {
    position: relative;
    color: grey !important;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    margin-right: 10px;
    padding: 8px 12px;
    transition: color 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 60px;
    text-decoration: none;
}

.container-1 .nav-link:not(.active)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: #38b44a;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.container-1 .nav-link:not(.active):hover::after {
    width: 100%;
}

.container-1 .nav-link:not(.active):hover {
    color: #38b44a !important;
}

.container-1 .nav-link.active {
    font-weight: 500;
}
@media (min-width: 1536px) {
    .container {
        max-width: 95% !important;
    }
}
/***************************************** Fixed Navbar Styles (Scrolling Navbar) *****************************************/
.fixed-navbar {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: top 0.4s ease;
    padding: 10px 0;
    backdrop-filter: blur(10px);
    margin: 0 !important;
}

.fixed-navbar.show {
    top: 0 !important;
}

.fixed-navbar .navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px; /* Increased from 15px to 20px */
    width: 100%;
    margin: 0;
}

/* Fixed Navbar Logo - Larger and Far Right */
.fixed-navbar .navbar-logo {
    height: 70px; /* Increased from 50px to 70px */
    position: static;
    padding-top: 0;
    order: 3;
    margin-left: auto; /* This pushes it to the far right */
}

/* Fixed Navbar Login Section - Far Left */
.fixed-navbar .login-section {
    display: flex;
    align-items: center;
    order: 1;
    margin-right: auto;
}

/* Fixed Navbar Navigation - Center */
.fixed-navbar .nav {
    margin: 0;
    padding: 0;
    justify-content: center;
    display: flex;
    order: 2;
    flex-grow: 1;
}

.fixed-navbar .nav-link {
    font-size: 14px;
    margin: 0 5px;
    padding: 8px 12px;
    height: 50px;
    position: relative;
    color: grey !important;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
}

.fixed-navbar .nav-link:not(.active)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: #38b44a;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.fixed-navbar .nav-link:not(.active):hover::after {
    width: 100%;
}

.fixed-navbar .nav-link:not(.active):hover {
    color: #38b44a !important;
}

.fixed-navbar .nav-link.active {
    font-weight: 500;
}

.fixed-navbar .btn-1 {
    padding: 4px 15px;
    font-size: 14px;
    background-color: #009cdc !important;
    color: white !important;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s ease;
}

.fixed-navbar .btn-1:hover {
    background-color: #007aac !important;
}

.fixed-navbar .lang {
    font-size: 14px;
    font-family: 'Tajawal', sans-serif;
    vertical-align: middle;
}

.fixed-navbar .ri-global-line {
    font-size: 18px;
}

/***************************************** Mobile Navbar Styles *****************************************/
.mobile-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 2000;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0);
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(1px);
}

.mobile-navbar .mobile-navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px; /* Increased from 15px to 20px */
    margin: 0;
    width: 100%;
}

/* Mobile Navbar Logo - Larger */
.mobile-navbar .mobile-logo {
    height: 60px; /* Increased from 50px to 60px */
}

.mobile-navbar .hamburger {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-navbar .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    backdrop-filter: blur(10px);
    margin: 0;
    padding: 0;
}

.mobile-navbar .mobile-menu.show {
    max-height: 500px;
}

.mobile-navbar .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 0;
}

.mobile-navbar .mobile-nav-link {
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    display: block;
    margin: 0;
}

.mobile-navbar .mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-navbar .mobile-nav-link.active {
    background-color: #38b44a;
    color: white;
}

.mobile-navbar .mobile-nav-link:not(.active):hover {
    color: #38b44a;
    background-color: rgba(56, 180, 74, 0.1);
}

/* Fixed Mobile Login Section */
.mobile-navbar .mobile-login-section {
    padding: 20px 15px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.mobile-navbar .mobile-login-section .btn-1 {
    background-color: #009cdc !important;
    color: white !important;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    cursor: pointer;
}

.mobile-navbar .mobile-login-section .btn-1:hover {
    background-color: #007aac !important;
}

.mobile-navbar .mobile-login-section .lang {
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    vertical-align: middle;
    color: #333;
    white-space: nowrap;
}

.mobile-navbar .mobile-login-section  {
    font-size: 18px;
    color: #333;
    vertical-align: middle;
}

/***************************************** Utility Classes *****************************************/
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-start {
    justify-content: flex-start;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.ms-2 {
    margin-left: 0.5rem;
}

.ms-3 {
    margin-left: 1rem;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, 
                border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/***************************************** Responsive Styles *****************************************/
/* Large Desktop (1280px and above) */
@media (min-width: 1280px) {
    .container-1,
    .fixed-navbar,
    .mobile-navbar {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .container-1 .nav {
        padding-left: 20px !important;
    }
    
    .fixed-navbar .navbar-content {
        padding: 0 25px; /* Slightly more padding on large screens */
    }
    
    /* Even larger logo on big screens */
    .container-1 .navbar-logo {
        height: 200px;
        right: 0px;
    }
    
    .fixed-navbar .navbar-logo {
        height: 80px;
    }
}

/* Medium Desktop (1028px to 1279px) */
@media (min-width: 1028px) {
    .mobile-navbar {
        display: none;
    }
}

/* Fix for navbar wrapping issue - Medium Desktop */
@media (min-width: 1028px) and (max-width: 1279px) {
    .container-1 .nav {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        padding-left: 15px !important;
    }
    
    .container-1 .nav-link {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 13px;
        margin-right: 5px;
        padding: 8px 10px;
    }
    
    .fixed-navbar .nav {
        flex-wrap: nowrap !important;
        overflow-x: auto;
    }
    
    .fixed-navbar .nav-link {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 12px;
        margin: 0 3px;
        padding: 8px 8px;
    }
    
    /* Adjust logo size to free up more space */
    .container-1 .navbar-logo {
        height: 150px;
        right: 15px;
    }
    
    .fixed-navbar .navbar-logo {
        height: 60px;
    }
}

/* Additional fix for smaller desktop screens */
@media (min-width: 1028px) and (max-width: 1150px) {
    .container-1 .nav-link {
        font-size: 12px;
        padding: 8px 8px;
        margin-right: 3px;
    }
    
    .fixed-navbar .nav-link {
        font-size: 11px;
        padding: 8px 6px;
        margin: 0 2px;
    }
    
    .container-1 .navbar-logo {
        height: 140px;
    }
    .fixed-navbar .nav {
    flex-wrap: nowrap;
    min-width: 0;
    overflow: hidden; /* Hide overflow instead of wrapping */
}
    
    .fixed-navbar .navbar-logo {
        order: 3;
        margin-left: 0;
    }
}

/* Ensure the fixed navbar layout stays in one line */
.fixed-navbar .navbar-content {
    flex-wrap: nowrap;
    min-width: 0; /* Allow content to shrink */
}




/* Tablets and Small Laptops (768px to 1027px) */
@media (max-width: 1027px) {
    .container-1, .fixed-navbar {
        display: none;
    }
    
    .mobile-navbar {
        display: block;
        width: 100vw;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
    }
    
    .mobile-navbar .mobile-navbar-content {
        padding: 15px 20px;
        margin: 0;
    }
    
    .mobile-navbar .mobile-nav-link {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .mobile-navbar .mobile-logo {
        height: 65px; /* Increased for tablets */
    }
    
    /* Tablet Login Section */
    .mobile-navbar .mobile-login-section {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        padding: 15px;
    }
    
    .mobile-navbar .mobile-login-section .btn-1 {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .mobile-navbar .mobile-login-section .lang {
        font-size: 14px;
    }
    
    .mobile-navbar .mobile-login-section .ri-global-line {
        font-size: 16px;
    }
}

/* Mobile Devices (576px to 767px) */
@media (max-width: 767px) {
    .mobile-navbar .mobile-navbar-content {
        padding: 10px 20px;
    }
    
    .mobile-navbar .mobile-logo {
        height: 55px; /* Adjusted for mobile */
    }
    
    .mobile-navbar .hamburger {
        font-size: 22px;
    }
    
    .mobile-navbar .mobile-nav-link {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    /* Mobile Login Section */
    .mobile-navbar .mobile-login-section {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }
    
    .mobile-navbar .mobile-login-section .btn-1 {
        padding: 5px 14px;
        font-size: 12px;
        width: 100%;
        max-width: 120px;
    }
    
    .mobile-navbar .mobile-login-section .lang {
        font-size: 13px;
    }
    .extraPage {
        padding-top: 55px;
    }
}

/* Small Mobile Devices (480px to 575px) */
@media (max-width: 575px) {
    .mobile-navbar .mobile-logo {
        height: 50px; /* Adjusted for small mobile */
    }
    
    .mobile-navbar .hamburger {
        font-size: 20px;
    }
    
    .mobile-navbar .mobile-nav-link {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .mobile-navbar .mobile-navbar-content {
        padding: 10px 15px; /* Slightly less padding on small screens */
    }
}

/* Extra Small Mobile Devices (below 480px) */
@media (max-width: 479px) {
    .mobile-navbar .mobile-logo {
        height: 45px; /* Adjusted for extra small mobile */
    }
    
    .mobile-navbar .hamburger {
        font-size: 18px;
    }
    
    .mobile-navbar .mobile-nav-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .mobile-navbar .mobile-navbar-content {
        padding: 8px 15px; /* Even less padding on very small screens */
    }
    
    /* Small Mobile Login Section */
    .mobile-navbar .mobile-login-section {
        padding: 10px;
        gap: 8px;
    }
    
    .mobile-navbar .mobile-login-section .btn-1 {
        padding: 4px 12px;
        font-size: 11px;
    }
    
    .mobile-navbar .mobile-login-section .lang {
        font-size: 12px;
    }
    
    .mobile-navbar .mobile-login-section .ri-global-line {
        font-size: 14px;
    }
}

/* Force remove any container padding/margin globally */
@media (min-width: 1028px) {
    .container-1 > .container,
    .fixed-navbar > .container,
    .mobile-navbar > .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
}

/***************************************** Login Popup Styles *****************************************/
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-modal.show {
    opacity: 1;
    animation: fadeIn 0.3s ease forwards;
}

.login-modal.hiding {
    opacity: 0;
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

@keyframes fadeOut {
    from { 
        opacity: 1; 
    }
    to { 
        opacity: 0; 
    }
}

.login-modal-content {
    background-color: white;
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.login-modal.show .login-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.login-modal.hiding .login-modal-content {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
}

.login-modal-header {
    background: linear-gradient(135deg, #009cdc 0%, #007aac 100%);
    color: white;
    padding: 25px 30px;
    position: relative;
}

.login-modal-header h2 {
    font-weight: 600;
    font-size: 24px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.login-modal-header p {
    opacity: 0.9;
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.close-login-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 18px;
    z-index: 10;
}

.close-login-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.login-modal-body {
    padding: 30px;
}

.login-modal-body .form-floating {
    margin-bottom: 20px;
}

.login-modal-body .form-floating > label {
    padding-left: 12px;
    font-family: 'Poppins', sans-serif;
}

.login-modal-body .form-control {
    border-radius: 8px;
    padding: 16px 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.login-modal-body .form-control:focus {
    border-color: #38b44a;
    box-shadow: 0 0 0 0.25rem rgba(56, 180, 74, 0.25);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 7px;
    cursor: pointer;
}

.remember-me label {
    color: #38b44a;
}

.login-btn {
    background: linear-gradient(135deg, #38b44a 0%, #2d8f3c 100%);
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 180, 74, 0.3);
}

.divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
    color: #38b44a;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 35%;
    height: 1px;
    background-color: #38b44a;
}

.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 35%;
    height: 1px;
    background-color: #38b44a;
}

.google-login-btn {
    background-color: white;
    color: #38b44a;
    border: 1px solid #38b44a;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.google-login-btn:hover {
    background-color: rgba(56, 180, 74, 0.1);
    border-color: #2d8f3c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 180, 74, 0.1);
}

.google-icon {
    color: #38b44a;
    font-size: 18px;
}

/* Responsive adjustments for login modal */
@media (max-width: 576px) {
    .login-modal-content {
        max-width: 100%;
    }
    
    .login-modal-header {
        padding: 20px;
    }
    
    .login-modal-body {
        padding: 20px;
    }
    
    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .login-modal-header h2 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .login-modal {
        padding: 10px;
    }
}

/* Make sure modal appears above everything */
.login-modal {
    z-index: 10000;
}



/*****************************************footer*********************************************/







/* Make all content before footer grow to push footer down */
body > *:not(footer) {
    flex: 1 0 auto;
}

/* Footer styles - stick to bottom */
.custom-footer {
    background-color: #404041;
    color: white;
    padding: 40px 0 20px;
    flex-shrink: 0;
    width: 100%;
    margin-top: auto; /* This pushes footer to bottom */
}
    
.footer-heading {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    font-family: 'ZonaPro-Bold', sans-serif;
}
    
.footer-link {
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s;
    font-family: 'ZonaPro-Light', sans-serif;
}
    
.footer-link:hover {
    color: #3498db;
}
    
.contact-item {
    margin-bottom: 12px;
}
    
.contact-item .bold {
    font-weight: bold;
}
    
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
    
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: white;
    color: #404041;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}
    
.social-icon:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-3px);
}
    
.footer-logo {
    max-width: 200px;
    height: auto;
}
    
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
    
/* Custom spacing for better mobile experience */
@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/************************** Home **************************/
/******************************************Background 1*******************************************************/
        .backGroundImageHome-home {
            background-attachment: fixed;
            background-image: url(../../images/background-image-1.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            height: 600px;
            width: 100%;
        }



/********************************* Section 1 Styles *********************************/
        .container-text-home {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .marathon-section-home {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            justify-content: space-between;
        }

        .image-container-home {
            flex: 1;
            min-width: 300px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
            position: relative;
            z-index: 10;
            max-width: 400px;
        }

        .image-container-home.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .image-container-home img {
            width: 350px;
            height: 550px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .text-container-home {
            flex: 1;
            min-width: 300px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out 0.2s;
            padding: 0px 50px 0px 5px;
        }

        .text-container-home.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title-home {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title-home::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2c3e50);
        }

        .highlight-home {
            color: #3498db;
            font-weight: bold;
        }

        .landmark-home {
            font-weight: bold;
            color: #2c3e50;
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }


/****************************************** Section 2 Styles ******************************************/
        .blue-section {
            background-color: #3498db;
            color: white;
            text-align: center;
            padding: 60px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .blue-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .text-content-home {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .text-content-home.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .text-content-home p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
            padding: 0px 80px;
        }

        .cta-button-home {
            display: inline-block;
            background-color: #2c3e50;
            color: white;
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out 0.3s;
        }

        .cta-button-home.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-button-home:hover {
            background-color: #1a252f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Adjustments */
        /* Tablets and below */
        @media (max-width: 992px) {
            .container-text-home {
                padding: 50px 20px;
            }

            .marathon-section-home {
                gap: 30px;
            }

            .section-title-home {
                font-size: 2.2rem;
            }

            .blue-section {
                padding: 50px 20px;
            }
        }

        /* Small tablets and large phones */
        @media (max-width: 768px) {
            .backGroundImageHome-home
            {
                height: 250px;
            }
            .text-container-home
            {
                padding: 10px;
                text-align: justify;
            }
            .marathon-section-home {
                flex-direction: column;
            }

            .image-container-home,
            .text-container-home {
                min-width: 100%;
            }

            .section-title-home {
                font-size: 2rem;
                text-align: center;
            }

            .section-title-home::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .blue-section {
                padding: 40px 20px;
                margin: 30px 0;
            }

            .text-content-home p {
                font-size: 1.1rem;
            }

            .cta-button-home {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        /* Mobile phones */
        @media (max-width: 576px) {
            .container-text-home {
                padding: 40px 15px;
            }

            .marathon-section-home {
                gap: 25px;
            }

            .section-title-home {
                font-size: 1.8rem;
            }

            p {
                font-size: 1rem;
            }

            .blue-section {
                padding: 30px 15px;
                margin: 0px;
            }

            .text-content-home p {
                font-size: 1rem;
                padding: 0;
            }
            .contact-item .bold
            {
                display: unset !important;
            }
            .cta-button-home {
                padding: 10px 20px;
                font-size: 0.95rem;
                width: 100%;
                max-width: 300px;
            }
            .location-info p, .location-info span,.event-description 
            {
                font-size: 11px;
                text-align: justify;
            }
            .event-title
            {
                font-size: 18.2px !important;
            }
        }

        /* Extra small phones */
        @media (max-width: 380px) {
            .container-text-home {
                padding: 30px 10px;
            }

            .section-title-home {
                font-size: 1.6rem;
            }

            .blue-section {
                padding: 25px 10px;
            }

            .cta-button-home {
                font-size: 0.9rem;
                padding: 8px 15px;
            }
        }
   


        /******************************** Carousel Styles ********************************/
        .carousel-container {
            position: relative;
            width: 100%;
            height: 800px;
            overflow: hidden;
            margin-top: 0;
        }

        .carousel-slides {
            display: flex;
            width: 700%; /* 7 slides = 700% */
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            width: 14.2857%; /* 100% / 7 = 14.2857% */
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            padding: 20px;
            position: relative;
        }

        /* Carousel slide backgrounds - using placeholder images */
        .carousel-slide:nth-child(1) {
            background: url('../../images/banner/main page slides-01.jpg');
            background-size: cover;
            background-position: center;
        }

        .carousel-slide:nth-child(2) {
            background: url('../../images/banner/main page slides-02.jpg');
            background-size: cover;
            background-position: center;
        }

        .carousel-slide:nth-child(3) {
            background: url('../../images/banner/main page slides-03.jpg');
            background-size: cover;
            background-position: center;
        }

        .carousel-slide:nth-child(4) {
            background: url('../../images/banner/main page slides-04.jpg');
            background-size: cover;
            background-position: center;
        }

        .carousel-slide:nth-child(5) {
            background: url('../../images/banner/main page slides-05.jpg');
            background-size: cover;
            background-position: center;
        }

        .carousel-slide:nth-child(6) {
            background: url('../../images/banner/main page slides-06.jpg');
            background-size: cover;
            background-position: center;
        }

        .carousel-slide:nth-child(7) {
            background: url('../../images/banner/main page slides-07.jpg');
            background-size: cover;
            background-position: center;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
            z-index: 100;
        }

        .carousel-indicator {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: rgb(255, 255, 255);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgb(105, 105, 105);
        }

        .carousel-indicator.active {
            background-color: rgb(68, 68, 68);
            transform: scale(1.2);
        }


     /* Content container */
        .carousel-content {
            position: absolute;
            top: 50%;
            left: 6%;
            right: 6%;
            width: 88%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(-50%);
            z-index: 10;
        }

        /* Left text */
        .carousel-left {
            max-width: 550px;
        }

        .carousel-title {
            font-size: 32px;
            font-weight: 700;
            color: #25ad4f;
            margin-bottom: 15px;
        }

        .carousel-sub {
            font-size: 22px;
            color: #ffffff;
            margin-bottom: 30px;
        }

        /* Button */
        .carousel-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #333;
            color: #fff;
            border: none;
            padding: 12px 22px;
            font-size: 18px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: #25ad4f;
            transform: translateY(-2px);
        }

        .play-icon {
            font-size: 16px;
        }

        /* Countdown (right side) */
        .countdown {
            display: flex;
            gap: 20px;
            align-items: flex-end;
            justify-content: flex-end;
            margin-right: 00px;
        }

        .time-box {
            background: #333;
            padding: 12px 22px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .time-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .time-box .num {
            font-size: 26px;
            font-weight: 700;
            color: #25ad4f;
            display: block;
            font-family: 'E1234', sans-serif;
        }

        .time-box .label {
            font-size: 14px;
            color: #ffffff;
            margin-top: 5px;
            display: block;
        }

        /* Responsive styles for carousel content */


        @media (max-width: 992px) {
            .carousel-content {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .countdown {
                margin-right: 0;
                justify-content: center;
            }

            .carousel-left {
                max-width: 100%;
            }

            .carousel-btn {
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .carousel-title {
                font-size: 28px;
            }

            .carousel-sub {
                font-size: 18px;
            }

            .carousel-btn {
                font-size: 16px;
                padding: 10px 18px;
            }

            .countdown {
                gap: 15px;
            }

            .time-box {
                padding: 10px 15px;
            }

            .time-box .num {
                font-size: 22px;
            }
        }

        @media (max-width: 576px) {
            .carousel-title {
                font-size: 24px;
            }

            .carousel-sub {
                font-size: 16px;
            }

            .carousel-btn {
                font-size: 14px;
                padding: 8px 16px;
            }

            .countdown {
                gap: 10px;
            }

            .time-box {
                padding: 8px 12px;
            }

            .time-box .num {
                font-size: 18px;
            }

            .time-box .label {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .carousel-title {
                font-size: 20px;
            }

            .carousel-sub {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .countdown {
                gap: 8px;
            }

            .time-box {
                padding: 6px 10px;
            }

            .time-box .num {
                font-size: 16px;
            }

            .time-box .label {
                font-size: 10px;
            }
        }

        @media (max-width: 400px) {
            .carousel-title {
                font-size: 18px;
            }

            .carousel-sub {
                font-size: 13px;
            }

            .carousel-btn {
                font-size: 13px;
                padding: 7px 14px;
            }

            .countdown {
                gap: 5px;
            }

            .time-box {
                padding: 5px 8px;
            }

            .time-box .num {
                font-size: 14px;
            }

            .time-box .label {
                font-size: 9px;
            }
        }



        /****************************************** Polygon Styles ******************************************/
       /****************************************** Polygon Styles ******************************************/
        .polygons-container {
            position: relative;
            width: 100%;
            height: 200px;
            margin-top: -100px;
        }

        .polygon {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .polygon-green {
            position: absolute;
            background-color: #38b44a;
            clip-path: polygon(0% 63.5%, 4.26% 74.33%, 13.69% 81.15%, 23.59% 87.28%, 33.91% 92.66%, 68.75% 100%, 68.75% 100%, 68.75% 100%, 0% 100%);
        }

        .polygon-blue {
            background-color: #009CDC;
            clip-path: polygon(0% 110%, 81% 79.15%, 100% 66.66%, 100% 100%, 88.5% 100%, 0% 100%);
            bottom: 60px;
        }




     @media (max-width: 1027px) {
                
                        .polygons-container {
            position: relative;
            width: 100%;
            height: 400px;
        }
      }
                        @media (max-width: 768px) {
                
                        .polygons-container {
            position: relative;
            width: 100%;
            height: 400px;
            margin-top: -125px !important; /* This makes the polygons touch the carousel */
        }

        .polygon {
            position: absolute;
            width: 100%;
            height: 50%;
        }
                
                }


                                        @media (max-width: 576px) {
                
                        .polygons-container {
            position: relative;
            width: 100%;
            height: 400px;
            margin-top: -100px !important; /* This makes the polygons touch the carousel */
        }
      }




        @media (max-width: 1027px) {
            .container-1  {
                display: none;
            }
            
           
            .carousel-container {
                height: 700px;
            }
            
            .carousel-content {
                left: 5%;
                max-width: 90%;
            }
            
            .carousel-content h1 {
                font-size: 2.5rem;
            }
            
            .polygons-container {
                height: 300px;
            }
        }


        @media (max-width: 768px) {
            .carousel-container {
                height: 600px;
            }
            
            .carousel-content h1 {
                font-size: 2rem;
            }
            
            .carousel-content p {
                font-size: 1rem;
            }
            
            .polygons-container {
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            .carousel-container {
                height: 500px;
            }
            
            .carousel-content {
                text-align: center;
                left: 5%;
                right: 5%;
            }
            
            .carousel-content h1 {
                font-size: 1.8rem;
            }
            
            .carousel-indicators {
                bottom: 20px;
            }
            
            .carousel-indicator {
                width: 18px;
                height: 18px;
            }
            
            .polygons-container {
                height: 200px;
            }
        }




/**********About Us************/
    /******************************************Background 2*******************************************************/
.backGroundImageHome {
    background-attachment: fixed;
    background-image: url(../../images/background-image-2.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    width: 100%;
    position: relative; /* Added for positioning organizer section */
}
/**************************section 1****************************/
.about-section {
    padding: 40px 0;
    background: #fff;
}

.about-content {
    text-align: center;
    margin-bottom: 40px;
}

.about-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'ZonaPro-ExtraBold', serif;
}

.about-content .highlight {
    color: #38b44a;
    font-weight: 700;
}

.about-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 100%;
    word-wrap: break-word;
}

/* Limit characters per line for better readability */
.about-text-container {
    max-width: 100%;
}

.about-text-container p {
    /* Limit to approximately 60-75 characters per line */
    max-width: 30em;
    margin-left: auto;
    margin-right: auto;
    font-family: 'ZonaPro-Light', serif;
}

.about-image {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Prevent cropping */
    border-radius: 8px;
}

/* Center the image column content */
.align-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

  /****************************************** Polygon Styles ******************************************/
        .polygons-container {
            position: relative;
            width: 100%;
            height: 200px;
            margin-top: -100px; /* This makes the polygons touch the carousel */
        }

        .polygon {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .polygon-green {
            position: absolute;
            background-color: #38b44a;
            clip-path: polygon(0% 63.5%, 4.26% 74.33%, 13.69% 81.15%, 23.59% 87.28%, 33.91% 92.66%, 68.75% 100%, 68.75% 100%, 68.75% 100%, 0% 100%); 
            bottom: 100px;
           }

        .polygon-blue {
            background-color: #009CDC;
            top: 40px;
            clip-path: polygon(0% 110%, 81% 79.15%, 100% 66.66%, 100% 100%, 88.5% 100%, 0% 100%);
            top: -62px;
        }




     @media (max-width: 1027px) {
                
                        .polygons-container {
            position: relative;
            width: 100%;
            height: 400px;
            margin-top: -150px !important; /* This makes the polygons touch the carousel */
        }
      }
    
      @media (max-width: 768px) {
                
        .polygons-container {
            position: relative;
            width: 100%;
            height: 400px;
            margin-top: -125px !important; /* This makes the polygons touch the carousel */
        }

        .polygon {
            position: absolute;
            width: 100%;
            height: 50%;
        }
    }           


    @media (max-width: 576px) {
                
        .polygons-container {
            position: relative;
            width: 100%;
            height: 400px;
            margin-top: -100px !important; /* This makes the polygons touch the carousel */
            display: none;
        }
      }

      /*********************** Organizer Section Styles ****************/
.organizer-section {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; /* Use percentage instead of 100% to avoid edge issues */
    z-index: 10;
    background-color: #fff;
    margin-top: 300px;
}

.meetTeam {
    margin-bottom: 40px;
}

.text-colorBlack {
    color: #000;
}

.bg-colorGreen {
    background-color: #38b44a;
}

.bg-colorBlue {
    background-color: #009CDC;
}

.lg\:writing-sideways-lr {
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

/* Team Section Styles */
.team-section {
    padding: 60px 0;
    background: #fff;
}

.text-colorGreen {
    color: #38b44a;
}

/* NEW: Specific fix for 1023px breakpoint */
@media (max-width: 1100px) and (min-width: 769px) {
    .organizer-section {
        width: 98%;
        padding: 20px 15px;
    }
    
    .organizer-section .flex {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .meetTeam p {
        font-size: 2.5rem !important;
    }
    
    .organizer-section img {
        max-width: 280px !important;
    }
    
    .organizer-section .desc {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    .organizer-section .w-\[80\%\] {
        width: 85% !important;
    }
    
    .organizer-section .w-\[70\%\] {
        width: 65% !important;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .about-text-container p {
        max-width: 32em;
    }
}

@media (max-width: 1023px) {

    .lg\:writing-sideways-lr {
        writing-mode: horizontal-tb;
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 150px;
    }
    
    .about-text-container p {
        max-width: 28em;
    }
    
    .lg\:writing-sideways-lr {
        writing-mode: horizontal-tb;
    }
    
    .organizer-section {
        width: 98%;
        padding: 25px 15px;
    }
}

/* Updated: Changed from 768px to 1024px to catch the 1023px issue */
@media (max-width: 1024px) {
    .organizer-section {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin: 40px 0;
        padding: 20px 15px;
    }
    
    /* Make organizer content more compact on tablet */
    .meetTeam {
        margin-bottom: 20px;
    }
    
    .meetTeam p {
        font-size: 2.2rem !important;
    }
    
    .organizer-section img {
        max-width: 250px !important;
        margin: 0 auto;
    }
    
    .organizer-section .desc {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    .organizer-section .w-\[80\%\] {
        width: 90% !important;
    }
    
    .organizer-section .w-\[70\%\] {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }
    
    .about-section {
        padding: 30px 0;
    }
    
    .about-content h1 {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-text-container p {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .about-image {
        margin-bottom: 20px;
        margin-top: 30px;
    }
    
    /* On mobile: text first (order 1), image second (order 2) */
    .order-mobile-1 {
        order: 1 !important;
    }
    
    .order-mobile-2 {
        order: 2 !important;
    }
    
    /* Further adjustments for mobile */
    .organizer-section {
        padding: 20px 10px;
        margin: 30px 0;
    }
    
    .meetTeam p {
        font-size: 2rem !important;
    }
    
    .organizer-section img {
        max-width: 200px !important;
    }
    
    .organizer-section .desc {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 55px;
    }
    
    .about-section {
        padding: 20px 0;
    }
    
    .about-content h1 {
        font-size: 1.6rem;
    }
    
    .about-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .about-text-container p {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .about-image img {
        max-width: 90%;
    }
    
    .organizer-section {
        padding: 15px 8px;
        margin: 100px 0;
    }
    .backGroundImageHome
    {
        margin-top: 0px !important;
    }
    .gap-5 {
        gap: 1rem !important;
            margin-bottom: 0px !important;
    }
    .meetTeam p {
        font-size: 1.8rem !important;
    }
    
    .organizer-section img {
        max-width: 180px !important;
    }
    
    .organizer-section .desc {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 400px) {
    .about-text-container p {
        padding: 0 5px;
    }
    
    .about-image img {
        max-width: 85%;
    }
    
    .organizer-section {
        padding: 10px 5px;
    }
    
    .meetTeam p {
        font-size: 1.6rem !important;
    }
    
    .organizer-section img {
        max-width: 150px !important;
    }
    
    .organizer-section .desc {
        font-size: 0.75rem !important;
    }
}
/*************About us 2 **************/
.backGroundImageAbout1, .backGroundImageAbout2 {
    background-attachment: fixed;
    background-image: url(../../images/background-image-2.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    width: 100%;
}

.mt-\[125px\] {
    margin-top: 35px;
}

.mt-\[50px\] {
    margin-top: 25px;
}
.px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
}
.justify-evenly {
    justify-content: space-evenly;
}
.items-center {
    align-items: center;
}
.flex {
    display: flex;
}
.mt-10 {
    margin-top: 2.5rem;
}

html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: none;
}
html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform;
}
html:not(.no-js) [data-aos=fade-up] {
    transform: translate3d(0, 100px, 0);
}
[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: 
ease;
}
[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1s;
}
[data-aos].aos-animate {
    pointer-events: auto;
}
[data-aos] {
    pointer-events: none;
}
.items-center {
    align-items: center;
}

@media (min-width: 1024px) {
    .lg\:writing-sideways-lr {
        writing-mode: sideways-lr;
    }
}
.text-colorBlack {
    --tw-text-opacity: 1;
    color: #404041;
    color: rgb(64 64 65 / var(--tw-text-opacity, 1));
}
.font-bold {
    font-weight: 700;
}
.text-\[45px\] {
    font-size: 45px;
}
@media (min-width: 1024px) {
    .lg\:w-\[20px\] {
        width: 20px;
    }
}
@media (min-width: 1024px) {
    .lg\:h-\[270px\] {
        height: 270px;
    }
}
@media (min-width: 1024px) {
    .lg\:ml-\[-28px\] {
        margin-left: -28px;
    }
}
@media (min-width: 1024px) {
    .lg\:relative {
        position: relative;
    }
}
.bg-colorGreen {
    --tw-bg-opacity: 1;
    background-color: #38b44a;
    background-color: rgb(56 180 74 / var(--tw-bg-opacity, 1));
}
.z-\[-1\] {
    z-index: -1;
}
html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: none;
}
[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
    transition-delay: 1s;
}
html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform;
}
[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
    transition-delay: 0s;
}
html:not(.no-js) [data-aos=fade-up] {
    transform: translate3d(0, 100px, 0);
}
[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: 
ease;
}
[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1s;
}
[data-aos].aos-animate {
    pointer-events: auto;
}
[data-aos] {
    pointer-events: none;
}
.w-\[80\%\] {
    width: 80%;
}
.gap-5 {
    gap: 3rem !important;
}

.py-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
}
.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}


.gap-5 {
    gap: 1.25rem;
}
.justify-between {
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .lg\:m-auto {
        margin: auto;
    }
}
.w-\[300px\] {
    width: 300px;
}
.leading-6 {
    line-height: 1.5rem;
}

.flex-col {
    flex-direction: column;
}
.w-\[70\%\] {
    width: 70%;
}

.m-0 {
    margin: 0 !important;
}

.leading-\[26px\] {
    line-height: 26px;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.m-0 {
    margin: 0;
}
.text-\[\#ed1c24\] {
    --tw-text-opacity: 1;
    color: #ed1c24;
    color: rgb(237 28 36 / var(--tw-text-opacity, 1));
}
.font-bold {
    font-weight: 700;
}
 @media (max-width: 480px) {
    .max-lg\:flex-col
    {
        flex-direction: column;
    }
    .lg\:writing-sideways-lr
    {
        writing-mode: horizontal-tb;
    }
    .max-lg\:w-\[250px\] {
        width: 250px;
    }
    .max-md\:w-\[100\%\] {
        width: 100%;
    }
    .px-20
    {
        padding-left: 10px;
        padding-right: 10px;
    }
    .w-\[70\%\]
    {
        width: 100%;
    }
    .custom-flex
    {
        display: block !important;
    }
    .lg\:w-2
    {
        height: 5px !important;
        width: 200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 10px  !important;
    }
    .meetTeam p
    {
        display: none;
    }
 }
  @media (max-width: 768px) {
    
    .max-lg\:flex-col
    {
        flex-direction: column;
    }
    .lg\:writing-sideways-lr
    {
        writing-mode: horizontal-tb;
        border-bottom: 5px solid green;
    }
    .max-lg\:w-\[250px\] {
        width: 250px;
    }
    .max-md\:w-\[100\%\] {
        width: 100%;
    }
    .px-20
    {
        padding-left: 16px;
        padding-right: 16px;
    }
    .lg\:m-auto, .desc
    {
        text-align: center;
    }
    .w-\[70\%\]
    {
        width: 100%;
    }
   
    .text-\[45px\]
    {
        font-size: 24px;;
    }
    .custom-flex
    {
        display: block !important;
        text-align: center;
    }
    
    .lg\:w-2
    {
         height: 5px;
        width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
  }
/***************************************/
 .text-25 
 {
    font-size: 25px;
 }
.w-80px 
{
    width: 80px;
}
.w-80
{
    width: 80%;
}
.h-5 {
    height: 5px;
}
.w-70
{
    width: 70%;
}
.border-solid
{
    border-color: #e7e7e754;
}
/***************************************/

/*/****************************************** section 3 *******************************************************/
.text-base{
    font-family: 'ZonaPro-Light';
    text-align: justify;
}

.team-section{
    padding: 0px !important;
}


/******************************************* race info *****************************************/
    /* Hero Section */
        .ri-hero {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }

        .ri-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ri-hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 1.5rem;
        }
        
        .title-ri {
            text-align: center;
            margin-bottom: 40px;
            margin-top: 40px;
            color: #ABABAB;
            font-family: 'ZonaPro-Light', sans-serif;
            font-size: 29px;
        }
        
        .races-grid-ri {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        @media (max-width: 768px) {
            .races-grid-ri {
                grid-template-columns: 1fr;
            }
        }
        
        .raceCard {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-right: 4px solid #26AAE1;
            transition: transform 0.3s ease;
        }
        

        
        .raceCard h3 {
            color: #ABABAB;
            font-weight: bold;
            text-align: center;
            font-size: 24px;
            margin-bottom: 20px;
            font-family: 'ZonaPro-Bold';
        }
        
        .raceContent {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: center;
            font-family: 'ZonaPro-Light';
            font-size: small;
        }
        
        @media (max-width: 768px) {
            .raceContent {
                grid-template-columns: 1fr;
            }
        }
        
        .raceImage {
            position: relative;
            overflow: hidden;
            border-radius: 3px;
            width: 100%;     
           }
        
        .raceImage img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
.raceImage {
  position: relative;
  display: block;
  overflow: hidden;
}

.raceImage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.raceImage:hover::before {
  opacity: 0.4;
  width: 100%;
  height: 100%;
}

        .buttonRoute {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #26AAE1;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }
        
        .raceImage:hover .buttonRoute {
            opacity: 1;
        }
        
        .raceDesc {
            color: #555;
            line-height: 1.6;
        }




















        /* Modern Schedule Styles */
.schedule-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.schedule-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    font-family: 'ZonaPro-Bold', sans-serif;
}

.schedule-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 60px;
    font-family: 'ZonaPro-Light', sans-serif;
}

/* Timeline Container */
.schedule-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #26AAE1, #38b44a);
    border-radius: 10px;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #26AAE1;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #26AAE1;
    z-index: 10;
}

.timeline-content {
    width: calc(50% - 50px);
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #26AAE1;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Date Badge */
.date-badge {
    background: linear-gradient(135deg, #26AAE1, #1e88e5);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

/* Time Badge */
.time-badge {
    background: #38b44a;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

/* Event Header */
.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    font-family: 'ZonaPro-Bold', sans-serif;
}

.event-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'ZonaPro-Light', sans-serif;
}

/* Location Section */
.location-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-family: 'ZonaPro-Light', sans-serif;
}

.location-icon {
    color: #26AAE1;
    font-size: 1.2rem;
}

.location-link {
    background: #26AAE1;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.location-link:hover {
    background: #1e88e5;
    transform: translateY(-2px);
    color: white;
}

/* Race Specific Styles */




.race-half-marathon .timeline-dot {
    background: #30af90;
    box-shadow: 0 0 0 3px #30af90;
}

.race-10k .timeline-dot {
    background: #10b981;
    box-shadow: 0 0 0 3px #10b981;
}

.race-5k .timeline-dot {
    background: #38b44a;
    box-shadow: 0 0 0 3px #38b44a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .schedule-timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .event-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .location-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .schedule-title {
        font-size: 2rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item {
    opacity: 0;
    transform: translateY(40px);
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }


/******************************************* Registration Tickets *****************************************/
    /**************************section 1****************************/
.rt-section {
    padding: 40px 0;
    background: #fff;
}



.rt-image {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.rt-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Prevent cropping */
    border-radius: 8px;
}

/* Center the image column content */
.align-center {
    display: flex;
    justify-content: center;
    align-items: center;
}


.rt-image img {
    max-width: 60%;
    height: auto;
    margin: 0 auto;
    display: block;
}

        .button-rt {
            background-color: #4CAF50 !important; /* Green background */
            border: 0 !important;
            padding: 12px 24px !important;
            margin: auto !important;
            font-family: 'ZonaPro-Light', Arial, sans-serif !important;
            font-size: 16px;
            color: white;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: block;
        }
        
        .button-rt:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }


        /************************* Section 3: Policy Card Styles ****************************/

        .policy-card {
            background-color: #F6F6F6;
            margin: 80px auto;
            max-width: 1200px;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .card-content-rt {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            border: 1px solid rgba(65, 64, 64, 0.26);
            border-radius: 8px;
            padding: 24px 40px;
            gap: 24px;
            align-items: center;
        }
        
        .image-container-rt {
            width: 100%;
            max-width: 150px;
            margin: 0 auto;
        }
        
        .image-container-rt img {
            width: 100%;
            height: auto;
        }
        
        .text-content-rt {
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex: 1;
        }
        
        .title-container-rt {
            position: relative;
        }
        
        .title-rt {
            font-size: 28px;
            color: #333;
            font-weight: bold;
            line-height: 1.3;
            margin-bottom: 8px;
        }
        
        .title-underline-rt {
            width: 390px;
            height: 15px;
            background-color: #4CAF50;
            margin-top: -30px;
        }
        
        .policy-list {
            list-style-type: disc;
            padding-left: 20px;
            font-size: 18px;
            color: #444;
        }
        
        .policy-list li {
            margin-bottom: 12px;
            line-height: 1.5;
        }
        
        /* Responsive styles */
        @media (max-width: 1024px) {
            .card-content-rt {
                flex-direction: column;
                text-align: center;
            }
            
            .image-container-rt {
                margin: 0 auto;
            }
            
            .title-underline-rt {
                display: none;
            }
            
            .title-rt {
                border-bottom: 8px solid #4CAF50;
                padding-bottom: 8px;
                display: inline-block;
            }
        }
        
        @media (max-width: 768px) {
            .card-content-rt {
                padding: 16px 20px;
            }
            
            .title-rt {
                font-size: 24px;
            }
            
            .policy-list {
                font-size: 16px;
            }
            
            .title-underline-rt {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .policy-card {
                margin: 40px auto;
            }
            
            .title-rt {
                font-size: 22px;
            }
            
            .policy-list {
                font-size: 15px;
            }
        }


        /************************* Section 4: FAQ Styles ****************************/


        .faq-title {
            color: #2E7D32;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            font-size: 36px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .faq-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4CAF50, #2E7D32);
            border-radius: 2px;
        }
        
        .accordion {
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
            max-height: 500px;
            overflow-y: auto;
            padding-right: 10px;
            padding-left: 10px;
        }
        
        .accordion::-webkit-scrollbar {
            width: 8px;
        }
        
        .accordion::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .accordion::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #4CAF50, #2E7D32);
            border-radius: 10px;
        }
        
        .accordion-item {
            margin-bottom: 16px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
            background: white;
        }
        
        .accordion-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }
        
        .accordion-header {
            background: linear-gradient(to right, #f8f9fa, #ffffff);
        }
        
        .accordion-button {
            width: 100%;
            padding: 20px 25px;
            text-align: left;
            background: transparent;
            border: none;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #2c3e50;
        }
        
        .accordion-button:hover {
            background: rgba(76, 175, 80, 0.05);
        }
        
        .accordion-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(to right, rgba(76, 175, 80, 0.1), transparent);
            transition: width 0.4s ease;
        }
        
        .accordion-button.active::before {
            width: 6px;
        }
        
        .accordion-button.active {
            color: #2E7D32;
            background: rgba(76, 175, 80, 0.08);
        }
        
        .accordion-collapse {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .accordion-collapse.show {
            max-height: 500px;
        }
        
        .accordion-body {
            background-color: #F8F9FA;
            padding: 0 25px;
            font-size: 16px;
            line-height: 1.7;
            color: #555;
            border-top: 1px solid #eaeaea;
        }
        
        .accordion-body-content {
            padding: 25px 0;
        }
        

/******************************************* participants-area *****************************************/
   /* Hero Section */
        .pa-hero {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }

        .pa-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pa-hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 1.5rem;
        }
        
        

/************************************section 2****************************************/
/* Training and Health Tips Section Styles */
.training-section {
    margin-bottom: 4rem;
}

.section-title-pa {
    color: #939498;
    font-family: 'ZonaPro-Light', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.health-tips-container {
    font-family: 'ZonaPro-Light', sans-serif;
    transition: all 0.7s ease-in-out;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Desktop - 2 cards per row */
@media (min-width: 576px) {
    .health-tips-container {
        padding-left: 4rem;
        padding-right: 4rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 1 card per row */
@media (max-width: 575px) {
    .health-tips-container {
        grid-template-columns: 1fr;
    }
}

.race-card {
    font-family: 'ZonaPro-Light', sans-serif;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    border-right: 4px solid #26AAE1 !important;
    border-radius: 4px;
    transition: all 0.7s ease-in-out;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.race-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.race-title {
    color: #ABABAB;
    font-family: 'ZonaPro-Bold', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}



.distance-container {
    display: flex;
    flex-grow: 1;
    align-items: center;
    transition: all 0.7s ease-in-out;
}

/* Mobile layout for card content */
@media (max-width: 767px) {
    .distance-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.distance-image {
    display: flex;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .distance-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.distance-box {
    width: 126px;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.distance-42k {
    background-color: #231f20;
}

.distance-21k {
    background-color: #808285;
}

.distance-10k {
    background-color: #8BC34A; /* Green color */
}

.distance-5k {
    background-color: #2196F3; /* Blue color */
}

.distance-text {
    font-size: 2.5rem;
    font-family: 'ZonaPro-Bold', sans-serif;
    font-weight: 700;
    color: white;
    margin: 0;
}

.download-items {
    margin-top: 0.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767px) {
    .download-items {
        margin-top: 1rem;
        width: 100%;
    }
}

.download-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .download-item {
        flex-direction: column;
        text-align: center;
    }
}

.download-icon {
    width: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .download-icon {
        margin-right: 0;
        margin-bottom: 8px;
    }
}

.download-link {
    font-family: 'ZonaPro-Bold', sans-serif;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-word;
}

.download-link:hover {
    color: #26AAE1;
}

@media (max-width: 767px) {
    .download-link {
        text-align: center;
    }
}

.keep-english-numbers {
    font-family: 'ZonaPro-Bold', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .race-title {
        font-size: 1.5rem;
        text-align: center;
    }
}

/* Ensure all cards have equal height */
.health-tips-container {
    align-items: stretch;
}




/*************************section 3***********************************/
/* Running Communities Section Styles */
.running-communities-section {
    font-family: 'ZonaPro-Light', sans-serif;
    padding: 2.5rem 1rem;
}

@media (min-width: 576px) {
    .running-communities-section {
        padding: 2.5rem 4rem;
    }
}

@media (min-width: 992px) {
    .running-communities-section {
        padding: 2.5rem 8rem;
    }
}

.communities-title {
    color: #939498;
    font-family: 'ZonaPro-Light', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.communities-grid {
    margin-bottom: 2.5rem;
}

.community-card-container {
    height: 300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
}

.community-card-container:hover {
    transform: translateY(-5px);
    border-color: #26AAE1;
    box-shadow: 0 10px 30px rgba(38, 170, 225, 0.15);
}

.community-image-wrapper {
    height: 100%;
    overflow: hidden;
    background: white;
    position: relative;
    display: block;
    border-radius: 8px;
}

.community-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    border-radius: 8px;
}

.community-image-wrapper:hover::before {
    opacity: 0.4;
    width: 100%;
    height: 100%;
}

.community-image {
    height: 100%;
    width: 80%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 0;
    transition: transform 0.5s ease;
}

.community-card-container:hover .community-image {
    transform: scale(1.05);
}

.community-button-link {
    width: 100%;
    text-decoration: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.community-card-container:hover .community-button-link {
    opacity: 1;
}

.community-btn {
    width: 100%;
    padding: 12px 24px !important;
    background-color: #2196F3 !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 0 0 6px 6px !important;
    font-family: 'ZonaPro-Bold', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
}

.community-btn:hover {
    background-color: #0d8bf2 !important;
}

/* Contact Banner Styles */
.community-contact-banner {
    max-width: 1200px;
    margin: 0 auto;
}

.community-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 1.5rem;
    gap: 1.5rem;
    align-items: center;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .community-contact-wrapper {
        flex-wrap: nowrap;
    }
}

.community-logo {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .community-logo {
        margin: 0;
    }
}

.community-logo img {
    width: 100%;
    height: auto;
}

.community-contact-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.community-contact-text {
    font-size: 1.25rem;
    color: #333;
    font-family: 'ZonaPro-Bold', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

@media (min-width: 768px) {
    .community-contact-text {
        font-size: 1.5rem;
    }
}

.contact-us-btn {
    background-color: #8BC34A !important;
    border: 0 !important;
    width: fit-content !important;
    font-family: 'ZonaPro-Bold', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem !important;
    border-radius: 6px !important;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-us-btn:hover {
    background-color: #7cb342 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .communities-title {
        font-size: 2rem;
    }
    
    .community-contact-text {
        text-align: center;
    }
    
    .contact-us-btn {
        margin: 0 auto;
    }
    
    .community-card-container {
        height: 280px;
    }
    
    .community-btn {
        padding: 10px 20px !important;
        font-size: 0.95rem;
    }
}

/*************************section 4********************************/
/* Race Information Section Styles */
.race-info-section {
    font-family: 'ZonaPro-Light', sans-serif;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        #f8f9fa 0%, 
        #e9f5ff 25%, 
        #e3f2fd 50%, 
        #f1f8e9 75%, 
        #f8f9fa 100%);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animated floating shapes */
.race-info-section::before,
.race-info-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.race-info-section::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #38b44a 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.race-info-section::after {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #C34040 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Additional floating elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatElement 25s ease-in-out infinite;
    z-index: 0;
}

.floating-element:nth-child(1) {
    width: 150px;
    height: 150px;
    background: #2196F3;
    top: 20%;
    left: 10%;
    animation-delay: -5s;
}

.floating-element:nth-child(2) {
    width: 100px;
    height: 100px;
    background: #8BC34A;
    bottom: 30%;
    right: 15%;
    animation-delay: -15s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -20px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
    }
    75% {
        transform: translate(-30px, -30px) scale(1.05);
    }
}

.race-info-section .container {
    padding-left: 60px; /* Added left space */
}

.race-info-section .row {
    position: relative;
    z-index: 2;
}

.race-info-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid rgba(56, 180, 74, 0.2);
    width: 100%;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 30px; /* Added left margin for card */
}

.race-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.race-info-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.race-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.race-info-item:nth-child(1) { animation-delay: 0.1s; }
.race-info-item:nth-child(2) { animation-delay: 0.2s; }
.race-info-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.race-info-icon {
    width: 26px;
    height: 26px;
    margin-right: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.race-info-item:hover .race-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.race-info-title {
    color: #38b44a;
    font-family: 'ZonaPro-Bold', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    position: relative;
    padding-bottom: 5px;
}

.race-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #38b44a;
    transition: width 0.3s ease;
}

.race-info-item:hover .race-info-title::after {
    width: 100%;
}

.race-info-text {
    font-size: 0.95rem;
    color: #444;
    margin-left: 38px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeIn 0.8s ease-out;
    animation-fill-mode: both;
}

.race-info-text:nth-child(2) { animation-delay: 0.15s; }
.race-info-text:nth-child(4) { animation-delay: 0.25s; }
.race-info-text:nth-child(6) { animation-delay: 0.35s; }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.race-notice {
    background: linear-gradient(135deg, #C34040, #e53935);
    color: white;
    margin-top: auto;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 15px rgba(195, 64, 64, 0.3);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(195, 64, 64, 0.3);
    }
    50% {
        box-shadow: 0 5px 20px rgba(195, 64, 64, 0.5);
    }
}

.what-to-bring-section {
    padding-left: 3rem;
    padding-top: 1rem;
    padding-right: 30px; /* Added right padding for balance */
}

.section-title-pb {
    color: #333;
    font-family: 'ZonaPro-Bold', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    animation: titleReveal 0.8s ease-out;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title-underline {
    width: 400px;
    height: 4px;
    background: linear-gradient(90deg, #38b44a, #8BC34A);
    margin-top: -25px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.section-title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.what-to-bring-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.what-to-bring-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    animation: slideInRight 0.6s ease-out;
    animation-fill-mode: both;
}

.what-to-bring-list li:nth-child(1) { animation-delay: 0.1s; }
.what-to-bring-list li:nth-child(2) { animation-delay: 0.2s; }
.what-to-bring-list li:nth-child(3) { animation-delay: 0.3s; }
.what-to-bring-list li:nth-child(4) { animation-delay: 0.4s; }
.what-to-bring-list li:nth-child(5) { animation-delay: 0.5s; }
.what-to-bring-list li:nth-child(6) { animation-delay: 0.6s; }
.what-to-bring-list li:nth-child(7) { animation-delay: 0.7s; }
.what-to-bring-list li:nth-child(8) { animation-delay: 0.8s; }
.what-to-bring-list li:nth-child(9) { animation-delay: 0.9s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.what-to-bring-list li:hover {
    background: rgba(56, 180, 74, 0.1);
    transform: translateX(5px);
    padding-left: 16px;
}

.check-icon {
    color: #38b44a;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.what-to-bring-list li:hover .check-icon {
    transform: scale(1.2) rotate(10deg);
}

.keep-english-numbers-one {
    font-family: 'ZonaPro-Bold', sans-serif;
    background: linear-gradient(135deg, #38b44a, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .race-info-section .container {
        padding-left: 40px;
    }
    
    .race-info-card {
        margin-left: 20px;
    }
    
    .what-to-bring-section {
        padding-left: 2rem;
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .race-info-section {
        padding: 3rem 1rem;
    }
    
    .race-info-section .container {
        padding-left: 20px;
    }
    
    .race-info-card {
        margin-left: 10px;
    }
    
    .what-to-bring-section {
        padding-left: 1.5rem;
        padding-right: 15px;
    }
    
    .section-title-underline {
        width: 300px;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 767px) {
    .race-info-section {
        margin: 2rem 0;
        padding: 2rem 1rem;
    }
    
    .race-info-section .container {
        padding-left: 15px;
    }
    
    .race-info-card {
        margin-left: 0;
        margin-right: 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
        border-bottom: 3px solid #38b44a;
        padding-bottom: 0.5rem;
        margin-bottom: 2rem;
        display: inline-block;
    }
    
    .section-title-underline {
        display: none;
    }
    
    .what-to-bring-section {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-top: 2rem;
    }
    
    .race-info-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .race-info-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .race-info-title {
        font-size: 1.1rem;
    }
    
    .race-info-text {
        font-size: 0.85rem;
        margin-left: 32px;
    }
    
    .what-to-bring-list li {
        font-size: 0.9rem;
    }
    
    .race-info-icon {
        width: 22px;
        height: 22px;
    }
    .lightbox-close
    {
        top: 50px !important;
    }
}


/*****************************section 5**********************************/
/* Race Day Instructions Section Container */
.race-instructions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Section Styles */
.race-instructions-section {
    margin-bottom: 2.5rem;
    font-family: 'ZonaPro-Light', sans-serif;
}

.race-instructions-section h1 {
    font-family: 'ZonaPro-Bold', sans-serif;
    color: #939498;
    text-align: center;
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

/* Grid Container - Pure CSS Grid */
.race-grid-container {
    display: grid;
    gap: 15px;
}

/* Large screens: 3 columns, 3 rows */
@media (min-width: 1024px) {
    .race-grid-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, auto);
    }
      .container-1 .navbar-logo
    {
        right: -60px;
    }
}

/* Medium screens: 2 columns, 5 rows */
@media (min-width: 768px) and (max-width: 1023px) {
    .race-grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, auto);
    }
   
}

/* Small screens: 1 column, 9 rows */
@media (max-width: 767px) {
    .race-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(9, auto);
    }
    .lightbox-close
    {
        top: 50px !important;
    }
   
}

/* Instruction Card Styles - Smaller Containers */
.race-instruction-card {
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 15px;
    min-height: 120px;
}

/* Card Colors */
.race-card-blue {
    background-color: #009cdc !important;
}

.race-card-green {
    background-color: #38b44a !important;
}

/* Card Content Layout */
.race-card-img {
    width: 80px;
    min-width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.race-card-text {
    color: white;
    flex: 1;
}

.race-card-text h3 {
    font-family: 'ZonaPro-Bold', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
}

.race-card-text p {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .race-instruction-card {
        padding: 12px;
        min-height: 110px;
    }
    
    .race-card-img {
        width: 70px;
        min-width: 70px;
        margin-right: 12px;
    }
    
    .race-card-text h3 {
        font-size: 17px;
    }
    
    .race-card-text p {
        font-size: 12.5px;
    }
}

@media (max-width: 767px) {
    .race-instruction-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        min-height: auto;
    }
    
    .race-card-img {
        width: 60px;
        min-width: 60px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .race-card-text h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .race-card-text p {
        font-size: 12px;
    }
    
    .race-instructions-container {
        padding: 0 15px;
    }
}

/* Card Image Styling */
.race-card-img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .race-card-img img {
        width: 45px;
        height: 45px;
    }
}



/********************************************************************************/
/*************************Login & Registration****************************************/
/* Trigger button to open popup */
        .trigger-btn {
            background: white;
            color: #009cdc;
            border: none;
            padding: 16px 32px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .trigger-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            background: #f8f9fa;
        }
        
        /* Overlay for popup */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Flip card container */
        .flip-card {
            width: 440px;
            height: 445px;
            perspective: 1500px;
        }
        .flipped
        {
            height: 650px;
        }
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }
        
        .flip-card.flipped .flip-card-inner {
            transform: rotateY(180deg);
        }
        
        /* Front and back of the card */
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            background: white;
        }
        
        .flip-card-back {
            transform: rotateY(180deg);
            height: 666px;
        }
        
        /* Form containers */
        .form-container {
            padding: 35px 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .form-header {
            margin-bottom: 5px;
            text-align: center;
        }
        
        .form-header h2 {
            font-size: 26px;
            color: #333;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .form-header p {
            color: #666;
            font-size: 14px;
        }
        
        /* Form elements */
        .form-group {
            margin-bottom: 18px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #555;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .input-with-icon {
            position: relative;
        }
        
        .input-with-icon i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            font-size: 16px;
        }
        .fa-eye, .fa-eye-slash
        {
            left:-10px !important;
        }

        .form-control {
            width: 100%;
            padding: 5px 5px 5px 42px;
            border: 1.5px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s;
            background: #fafafa;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #009cdc;
            box-shadow: 0 0 0 3px rgba(0, 156, 220, 0.1);
            background: white;
        }
        
        /* Name fields in one row */
        .name-row {
            display: flex;
            gap: 15px;
        }
        
        .name-row .form-group {
            flex: 1;
            margin-bottom: 18px;
        }
        
        /* Button styling */
        .btn {
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            letter-spacing: 0.5px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #38b44a 0%, #009cdc 100%);
            color: white;
            margin-top: 5px;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 156, 220, 0.3);
            background: linear-gradient(135deg, #2fa03f 0%, #0088c4 100%);
        }
        
        .btn-secondary {
            background: #f5f5f5;
            color: #333;
            margin-top: 12px;
            border: 1px solid #e0e0e0;
        }
        
        .btn-secondary:hover {
            background: #eaeaea;
            border-color: #ccc;
        }
        
        .btn-link {
            background: transparent;
            color: #009cdc;
            text-decoration: none;
            font-size: 14px;
            padding: 5px;
            width: auto;
            margin-top: 10px;
            font-weight: 500;
            border: none;
        }
        
        .btn-link:hover {
            color: #38b44a;
            text-decoration: underline;
        }
        
        #showRegister, #showLogin
        {
            margin: 0px;
            padding: 0px;
            font-size: 12px;
        }
        /* Terms and conditions */
        .terms {
            margin: 18px 0;
            font-size: 12px;
            color: #666;
            text-align: left;
            line-height: 1.5;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        
        .terms input[type="checkbox"] {
            margin-top: 2px;
            accent-color: #009cdc;
        }
        
        .terms a {
            color: #009cdc;
            text-decoration: none;
        }
        
        .terms a:hover {
            text-decoration: underline;
        }
        
        /* Close button */
        .close-btn {
            position: absolute;
            top: 18px;
            right: 18px;
            background: #f8f9fa;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            color: #666;
            z-index: 10;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .close-btn:hover {
            background: #e9ecef;
            transform: rotate(90deg);
            color: #009cdc;
        }
        
        /* Password toggle */
        .password-toggle {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #888;
            cursor: pointer;
            font-size: 16px;
        }
        
        /* Form actions */
        .form-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .form-actions .btn-link {
            margin: 0;
        }
        
        /* Responsive */
        @media (max-width: 480px) {
            .flip-card {
                width: 90%;
                height: 425px;
                min-height: 400px;
            }
            
            .form-container {
                padding: 25px 20px;
            }
            
            .form-header h2 {
                font-size: 20px;
            }
            
            .name-row {
                flex-direction: column;
                gap: 0;
            }
            .form-group label
            {
                font-size: 10px;
            }
            .input-with-icon .form-control
            {
                font-size: 10px;
            }
            .close-btn
            {
                top: 70px;
                right: 25px;
            }
            .flip-card-back
            {
                height: 666px;
            }
            .flipped{
                height: 620px !important;
            }
            
        }
/********************************************************************************/
/* More practical range query */
@media (min-width: 1250px) and (max-width: 1300px) {
  /* Covers 150% zoom on various screens */

  .container-1 .navbar-logo
  {
    height: 150px;
    right: -110px;
  }
  .container-1 .nav-link, .container-1 .btn-1
  {
    font-size: 13px;
  }
  .fixed-navbar .nav-link
  {
    font-size: 12px;
  }

}
.fixed-navbar .container a
{
    order: 3;
}
/********************************************************************************/
.volunteer-section {
            height: 600px !important;
            position: relative;
            width: 100%;
            overflow: hidden;
            
        }
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/
/********************************************************************************/        