:root {
    --navy: #0a192f;
    --graphite: #2d3748;
    --ivory: #f8f5f0;
    --gold: #c5a47e;
    --gold-light: #d9c6af;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    max-width: 250px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--graphite);
    background-color: var(--ivory);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--navy);
}

/* Hero Section */
.hero {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.92)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    color: var(--ivory);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.logo-container {
    margin: 80px 0 50px 0;
}

.main-logo {
    max-width: 250px;
    height: auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--ivory);
    line-height: 1.3;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 2rem 0;
}

.brand-logo {
    width: 120px;
    height: auto;
    transition: var(--transition);
}

.brand-logo-link:hover .brand-logo {
    transform: translateY(-5px);
}

.btn-join {
    background-color: var(--gold);
    color: var(--navy);
    padding: 14px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    transition: var(--transition);
    margin: 1rem 0;
    font-size: 16px;
}

.btn-join:hover {
    background-color: var(--gold-light);
    transform: translateY(-3px);
}

.scroll-prompt {
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
}

.scroll-prompt p {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.scroll-prompt .line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Lead Section */
.lead-section {
    padding: 7rem 0;
    background-color: var(--navy);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
}

.form-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--ivory);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ivory);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
        border-radius: 4px
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
}

.preference-group {
    margin: 2rem 0;
}

.preference-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--ivory);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    cursor: pointer;
    color: #fff;
}
.sub-lable{
    color: #fff;
}

.checkbox-label input {
    margin-right: 0.5rem;
}

.contact-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-btn {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ivory);
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-btn.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.contact-btn input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.newsletter-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: var(--ivory);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--gold);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.submit-btn {
    width: 70%;
    padding: 10px 0;
    margin: 0 15%;
    border-radius: 10px;
    background-color: var(--gold);
    color: var(--navy);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.submit-btn:hover {
    background-color: var(--gold-light);
}

/* Phone input group */
.phone-input-group {
    position: relative;
    display: flex;
    /* width: 100%; */
    padding: 0 15px;
}

.country-code-select {
    width: 30%;
    height: 100% !important;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ivory);
    font-size: 0.9rem;
    padding: 1rem;
    appearance: none;
    border-radius: 0;
    border-right: none;
}

.country-code-select:focus {
    outline: none;
    border-color: var(--gold);
}

.phone-input-group input[type="tel"] {
    /* width: 70%; */
    padding-left: 1rem;
    border-left: none;
}
.country-code-select span{
    height: 100% !important;
}
/* Select2 customization */
.select2-container--default {
    width: 100% !important;
}
.select2-dropdown {
    z-index: 9999 !important;
}
.select2-container--default .select2-selection--single {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    height: 48px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--ivory);
    padding-left: 1rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    right: 10px;
}

.select2-container--default .select2-dropdown {
    background-color: var(--navy);
    border: 1px solid var(--gold);
    border-radius: 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--gold);
    color: var(--navy);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ivory);
    padding: 6px;
    margin-bottom: 10px;
}

.select2-search--dropdown {
    padding: 10px;
}

/* Modal styles */
.modal-content {
    background-color: var(--navy);
    color: var(--ivory);
    border: 1px solid var(--gold);
    border-radius: 0;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.modal-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--ivory);
    font-size: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body .form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ivory);
}

.modal-body .form-input:focus {
    border-color: var(--gold);
}

.modal-body .select2-container--default .select2-selection--single {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Success modal styles */
#successModal .modal-content {
    background-color: var(--ivory);
    border: 1px solid var(--gold);
    border-radius: 0;
}

#successModal .modal-body {
    padding: 3rem;
}

#successModal .success-icon {
    color: var(--gold);
}

#successModal h3 {
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 1rem;
}

#successModal p {
    color: var(--graphite);
    margin-bottom: 2rem;
}

#successModal .btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    padding: 0.75rem 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

#successModal .btn-primary:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
}

/* Editorial Gallery */
.gallery {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--gold);
}

.section-header p {
    max-width: 600px;
    margin: 25px auto 0;
    color: var(--graphite);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: var(--ivory);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item:nth-child(1) { animation: fadeInUp 0.8s 0.2s forwards; }
.gallery-item:nth-child(2) { animation: fadeInUp 0.8s 0.4s forwards; }
.gallery-item:nth-child(3) { animation: fadeInUp 0.8s 0.6s forwards; }
.gallery-item:nth-child(4) { animation: fadeInUp 0.8s 0.8s forwards; }

.gallery-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.gallery-content {
    padding: 25px;
}

.gallery-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.gallery-content p {
    font-size: 0.9rem;
    color: var(--graphite);
    opacity: 0.8;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-item:hover h3 {
    color: var(--gold);
}

/* Footer */
.footer {
    background: var(--ivory);
    padding: 70px 20px 40px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--graphite);
    color: var(--graphite);
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ivory);
    transform: translateY(-3px);
}

.linktree-btn,.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--navy);
    color: var(--ivory);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-bottom: 40px;
    transition: var(--transition);
    border-radius: 5px;
}

.linktree-btn:hover ,.footer-btn:hover{
    background: var(--gold);
}
.footer-btn{
    margin: 0 0 10px 0;
    width: 200px;
    border: none;
    text-align: center !important  ;
    justify-content: center;
    align-items: center;
    
}

.manifesto {
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--navy);
    padding: 20px 0;
    position: relative;
}

.manifesto::before,
.manifesto::after {
    content: "";
    font-size: 2.5rem;
    color: var(--gold-light);
    position: absolute;
    line-height: 1;
}

.manifesto::before {
    top: 0;
    left: -20px;
}

.manifesto::after {
    bottom: -20px;
    right: -20px;
}

.copyright {
    padding-top: 40px;
    font-size: 0.85rem;
    color: var(--graphite);
    opacity: 0.6;
}
.footer a,.footer div{
        font-size: 16px;
    }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    .footer a,.footer div{
        font-size: 14px;
    }
    .preloader-logo {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 14px;
    }
    
    .brand-logos {
        /* flex-direction: column; */
        align-items: center;
        gap: 20px;
    }
    .form-input,.contact-dropdown-btn{
   
    padding: 10px;
    
    font-size: 14px;
    
}
    .form-container {
        padding: 2rem;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .phone-input-group {
        display: flex;
        /* flex-direction: column; */
    }
    
    .country-code-select {
        width: 100%;
        margin-bottom: 0.5rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .phone-input-group input[type="tel"] {
        width: 100%;
        padding-left: 1rem;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .gallery {
        padding: 70px 20px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .lead-section {
        padding: 70px 20px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 20px;
    }
    
    .main-logo {
        max-width: 150px !important;
    }
    .footer a,.footer div{
        font-size: 12px;
    }
    .section-header h2,
.gallery-content h3  {
        font-size: 20px;
    }
    .preference-title,.section-header p,.gallery-content p{
        font-size: 12px;
    }
    .contact-btn label,.checkbox-label,.newsletter-toggle span,.submit-btn{
        font-size: 12px;
    }
    .container {
    
    padding: 0 0;
}
.lead-section {
    padding: 10px 10px;
}
    .manifesto {
        font-size: 1rem;
    }
    .submit-btn{
        padding: 10px 0 ;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-title {
        font-size: 16px;
    }
    
    .brand-logo {
        width: 100px;
    }
    .form-label {
        font-size: 12px;
    }
    
    .gallery-item {
        height: auto;
    }
    
    .gallery-img {
        height: 200px;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.4rem;
    }
}

/* Responsive adjustments for very small screens */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
}

/* Loading spinner for submit button */
.btn .spinner-border {
    vertical-align: middle;
    margin-right: 8px;
}
.spinner-border{
    width: 100%;
}

/* Error alert styles */
.alert-danger {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Ensure Select2 dropdown appears above all elements */
.country-code-dropdown {
    z-index: 9999 !important;
}

/* Fix for Select2 in non-modal forms */
.select2-container {
    z-index: auto !important;
}

.select2-container--open {
    z-index: 9999 !important;
}

/* Ensure proper stacking context for the form */
.form-container {
    position: relative;
    z-index: 1;
}
.spinner-border {
    border: #fff !important;
    color: #fff !important;
}
.select2-results__options li span{
    color: #fff;
    font-size: 12px;
}
/* Set placeholder color to white */
.select2-search__field::placeholder {
    color: white !important;
    opacity: 1 !important; /* Required for Firefox */
}

/* Vendor prefixes for better compatibility */
.select2-search__field::-webkit-input-placeholder { /* Chrome, Safari, Opera */
    color: white !important;
    font-size: 12px;
}
.select2-search__field::-moz-placeholder { /* Firefox 19+ */
    color: white !important;
    opacity: 1 !important;
    font-size: 12px;
}
.select2-search__field:-ms-input-placeholder { /* IE 10+ */
    color: white !important;
    font-size: 12px;
}
.select2-search__field:-moz-placeholder { /* Firefox 18- */
    color: white !important;
    opacity: 1 !important;
    font-size: 12px;
}
.btn-close{
    color: #fff !important;
}
.modal-header button{
    color: #fff !important ;
}

/* Phone input group adjustments */
.phone-input-group {
    display: flex;
    align-items: stretch; /* This makes children stretch to same height */
}

.country-code-select {
    height: auto !important; /* Remove fixed height */
    min-height: 48px; /* Match your input field height */
    display: flex;
    align-items: center;
}

.country-code-select .select2-selection--single {
    height: 100% !important;
    display: flex !important;
    align-items: center;
}

.phone-input-group input[type="tel"] {
    height: 48px; /* Explicit height to match */
    padding: 1rem;
    box-sizing: border-box;
}

/* Adjust Select2 elements to match height */
.select2-container--default .select2-selection--single {
    height: 100% !important;
    min-height: 48px;
    display: flex !important;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal; /* Fix line height issues */
    display: flex;
    align-items: center;
}
@media (min-width: 640px) {
    .modal-dialog {
        max-width: 600px !important;
        margin-right: auto;
        margin-left: auto;
    }
}
.country-code-dropdown{
    width: 320px;
}
/* Contact Method Dropdown Styles */
.contact-method-dropdown {
    width: 100%;
}

.contact-dropdown-btn {
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ivory);
    padding: 1rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-dropdown-btn::after {
    margin-left: 10px;
}

.contact-dropdown-btn:hover,
.contact-dropdown-btn:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--ivory);
}

.contact-dropdown-menu {
    width: 100%;
    background: var(--navy);
    border: 1px solid var(--gold);
    padding: 0;
}

.contact-dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    color: var(--ivory);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.contact-dropdown-menu .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.contact-dropdown-menu input[type="checkbox"] {
    margin-right: 10px;
}

/* Country Code Dropdown Width */
.country-code-dropdown {
    width: 270px !important;
}

/* Adjust phone input group for new country code width */
.phone-input-group .col-4 {
    flex: 0 0 150px;
    max-width: 150px;
}

.phone-input-group .col-8 {
    flex: 0 0 calc(100% - 150px);
    max-width: calc(100% - 150px);
}
.select2-selection__rendered span{
    font-size: 12px;
}




/* Style for disabled checkboxes in the modal */
.modal .checkbox-label input[disabled] + span {
    opacity: 0.7;
    cursor: not-allowed;
}

.modal .checkbox-label input[disabled] + span:before {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.2);
}
/* Four Column Footer Styles */
.footer-content {
    padding: 20px 0;
 /* Assuming white background */
    color: #333; /* Default text color */
}

.footer-column {
    margin-bottom: 10px;
    text-align: left; /* Ensure all content is left-aligned */
}

/* Headings for all columns */
.footer-column h4 {
    font-size: 18px;
    color: #000; /* Black color */
    margin-bottom: 20px;
    font-weight: 600;
    text-align: left;
}

/* Close icons (if any) */
.footer-column .close-icon {
    color: #555; /* Dark gray color */
}

/* Buttons styling */
/* .footer-btn {
    display: inline-block; 
  background: var(--navy);
    color: var(--ivory);

    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    width: 200px;
    text-align: center;
}
.footer-btn:hover {
    background: var(--gold);
    border:3x solid var(--gold) ;
} */

/* Text content styling */
.footer-column p,
.footer-links li {
    font-size: 12px;
    line-height: 1.6;
    color: #333;
    text-align: left;
    margin-bottom: 8px;
}

/* Links styling */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
    font-size: 16px;
}

.footer-links a:hover {
    color: #000;
    text-decoration: underline;
}

/* Copyright text */
.copyright {
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-column {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-column p,
    .footer-links li,
    .footer-links a,
    .footer-btn {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .footer-column h4 {
        font-size: 18px; /* Larger on very small screens */
    }
    
    /* Stack columns on extra small screens */
    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-btn {
        display: block; /* Full width buttons on mobile */
        width: 100%;
    }
    .alert-danger {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px;
    font-size: 12px;
    border-radius: 0;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
}

/* Ensure proper spacing between columns */
.row {
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-3, .col-sm-6 {
    padding-right: 15px;
    padding-left: 15px;
}
.lead-form p{
    font-size: 12px;
    color: #fff;
    margin: 30px 0 0 0;
}
.lead-form p a{
    text-decoration: none;
    color: #c5a47e;
}
.footer-column p a{
    color: #000;
    font-weight: 500;
}


.new-my-select {
  color: white; /* Text color */
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.new-my-select::-ms-expand {
  display: none;
}

.new-my-select:focus {
  outline: none;
  background-color: transparent !important;
  color: white !important;
}

/* Option styling for only this select via class */
.new-my-select option {
  background-color: #0a192f !important;
  color: white;
}

.form-control {
  border-radius: 0 !important;
}

.contact-dropdown-btn {
  border-radius: 0 !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
  color: #fff;
  font-size: 18px;
}
 .footer-register-btn{
    padding-left: 33px;
    text-align: left !important;
    justify-content: left;
}