﻿/* Section */
.contact-section {
    background: var(--section-bg);
    padding: 60px 0;
}

/* Card */
.contact-card {
    /* background: var(--white); */
    /* border-radius: var(--radius);
                      box-shadow: var(--shadow);
                      padding: 40px; */
}

/* Left Side */
.contact-left h4 {
    color: var(--primary);
    font-weight: 700;
}

.contact-left p {
    color: var(--text-muted);
    margin: 15px 0 25px;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #e5e5e5;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.contact-info span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
}

.contact-info strong {
    color: var(--text-dark);
}

/* Right Form */
.contact-form h4 {
    color: var(--primary);
    font-weight: 700;
}

.contact-form p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Inputs */
.form-control {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 12px 15px;
}

    .form-control:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 0.15rem rgba(47, 148, 219, 0.25);
    }

/* Button */
.btn-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: var(--white);
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

    .btn-submit:hover {
        opacity: 0.9;
    }

/* Footer */
.contact-footer {
    border-top: 1px solid var(--border-color);
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
    color: var(--text-muted);
    /* display: flex; */
    /* justify-content: space-between; */
    flex-wrap: wrap;
}

.ft-our-courses li a {
    color: var(--text-dark)
}

.ft-our-courses li {
    padding-bottom: 10px;
}

/* Mobile dropdown handled in style.css */
@@media screen and (max-width:768px) {
    #mainNavbar2 {
        /* background-color: var(--white) !important; */
    }

    .drop-down-links li a {
        text-align: start;
    }
}

/* Wrapper */
.hero-search-form {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

/* Main Box */
.hero-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

    /* Hover Effect */
    .hero-search-wrapper:hover {
        box-shadow: var(--shadow-hover);
    }

    /* Input */
    .hero-search-wrapper input {
        flex: 1;
        border: none;
        outline: none;
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 50px;
        background: transparent;
        color: var(--text-dark);
    }

        /* Placeholder */
        .hero-search-wrapper input::placeholder {
            color: var(--text-muted);
        }

    /* Focus Effect */
    .hero-search-wrapper:focus-within {
        border: 1px solid var(--gold);
        box-shadow: var(--shadow-gold);
    }

    /* Button */
    .hero-search-wrapper button {
        width: 48px;
        height: 48px;
        border: none;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: var(--shadow-gold);
    }

        /* Button Hover */
        .hero-search-wrapper button:hover {
            transform: scale(1.05);
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
        }

    /* Icon */
    .hero-search-wrapper i {
        font-size: 16px;
    }

.hero-content p {
    max-width: 900px;
    margin: 0 auto;
}

/* ==========navbar-2-css========= */
.header-wrapper-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    transition: all 0.3s ease-in-out;
}

.navbar-scrolled {
    background-color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Links default state (Transparent Background) */
#mainNavbar2 .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease-in-out;
}

    #mainNavbar2 .nav-link:hover,
    #mainNavbar2 .nav-link.active {
        color: #fff !important;
    }

/* Links scrolled state (White Background) */
.navbar-scrolled #mainNavbar2 .nav-link {
    color: var(--text-dark) !important;
}

    .navbar-scrolled #mainNavbar2 .nav-link:hover,
    .navbar-scrolled #mainNavbar2 .nav-link.active {
        color: var(--gold-dark) !important;
    }

/* Keep phone button white */
.navbar-scrolled #mainNavbar2 .btn-nav-cta.text-white {
    color: #fff !important;
}

/* Toggler button icon color */
.navbar-scrolled .navbar-toggler i {
    color: var(--text-dark) !important;
}

.navbar-toggler i {
    color: var(--white);
    transition: color 0.3s ease-in-out;
}

.light-text {
    color: rgb(126, 120, 126);
    font-size: 18px;
}

/* Mobile navbar background when scrolled */
@media (max-width: 991.98px) {
    .navbar-scrolled #mainNavbar2 {
        background-color: var(--white) !important;
    }

        .navbar-scrolled #mainNavbar2 .nav-link,
        .navbar-scrolled #mainNavbar2 .drop-down-links li a {
            color: var(--text-dark) !important;
        }

            .navbar-scrolled #mainNavbar2 .nav-link:hover,
            .navbar-scrolled #mainNavbar2 .nav-link.active,
            .navbar-scrolled #mainNavbar2 .drop-down-links li a:hover {
                color: var(--primary) !important;
            }
}
