:root {
    --primary-color: #123764;
    --secondary-color: #6c757d;
    --light-grey: #f8f9fa;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
}

@media (min-width: 1200px) and (max-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 94%;
    }

}

/* Custom Text Utils */
.text-dark-blue {
    color: var(--primary-color) !important;
}

.bg-dark-blue {
    background-color: var(--primary-color) !important;
}

/* Navigation */
.navbar-nav .nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-dark-blue {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-dark-blue:hover {
    background-color: #0a1b2f;
    border-color: #0a1b2f;
    color: #fff;
}

.btn-outline-dark-blue {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-dark-blue:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 3rem;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Footer */
footer {
    font-size: 0.85rem;
    opacity: 0.9;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsiveness */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-top: 1px solid #eee;
        margin-top: 1rem;
        z-index: 1000;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .stepper-wrapper {
        width: 100% !important;
        /* Override user's fixed width */
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .stepper-item {
        min-width: 70px;
        /* Ensure touch targets */
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    /* Ensure footer text stacks nicely */
    footer .d-md-flex {
        text-align: center;
    }
}

/* Dropdown Menu Styles - Added Global Styles */
.dropdown-menu {
    border-top: 3px solid var(--primary-color) !important;
    padding: 0.5rem 0;
    margin-top: 10px !important;
    /* Spacing for the arrow */
    border-radius: 0;
    /* Square edges as per image */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    /* Hidden by default */
}

/* Show Dropdown on Hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
    background: #123764;
    color: white;
}

/* Dropdown Arrow/Triangle */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    /* Adjust position to align with the text link */
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-color);
}

.dropdown-item {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: transparent;
    /* Keeping white background on hover based on image, maybe changing text color? */
    color: var(--primary-color) !important;
    /* Text becomes blue on hover based on typical "clean" designs, or background blue? */
    /* User previously asked for "bg blue use in text whitw use in", but the new image shows a white menu. 
       Let's stick to the previous request for hover state (Blue BG, White Text) 
       UNLESS the new image implies otherwise. 
       The new image shows the menu *open*. It doesn't explicitly show a hovered item.
       It shows the list: Events, Fundraisers, Programs, Partners.
       I will keep the Blue BG / White Text hover effect as requested earlier, 
       but ensure the menu *itself* simply looks correctly positioned with the arrow.
    */
    background-color: var(--primary-color);
    color: #ffffff !important;
}
.navbar-nav .nav-link {
    padding: 20px 0px !important;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        top: 47px;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.btn-att-red {
   background: #dc3545 !important;
   padding: 5px 0 0 !important;
}

.btn-att-green {
  background: #28a745 !important ;  
  color: white ! important;
  padding: 5px 0 0 !important;
}
/* Full width container */
.select2-container {
    width: 100% !important;
}

    /* Match Bootstrap input height */
    .select2-container .select2-selection--single {
        height: 48px !important; /* adjust if your input height differs */
        border: 1px solid #dfe6ee !important; /* similar to your custom-input border */
        border-radius: 10px !important; /* match your rounded fields */
        display: flex !important;
        align-items: center !important;
        padding: 0 12px !important;
    }

/* Text alignment */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1 !important;
    padding-left: 0 !important;
    color: #0d233e;
}

/* Arrow alignment */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    right: 8px !important;
}

/* Placeholder color like your inputs */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #9aa6b2;
}

/* Clear (x) position */
.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 28px;
}

/* Invalid (red border) when you add .is-invalid to select */
select.is-invalid + .select2 .select2-selection {
    border-color: #dc3545 !important;
}


.iti {
    width: 100%;
}

.iti__tel-input {
    width: 100%;
}









