   /* Base Styles */
    .about-us-modern {
        color: var(--text-color);
        line-height: 1.6;
    }

    /* Hero Section */
    .about-hero {
        background: linear-gradient(135deg, #006BB7 0%, #006BB7 100%);
        color: white;
        padding: 80px 24px;
        text-align: center;
        margin-bottom: 60px;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-title {
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        opacity: 0.9;
        margin-bottom: 48px;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        flex-wrap: wrap;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-number {
        font-weight: 700;
        color: var(--accent-gold);
        line-height: 1;
        font-size: 35px;
    }

    .stat-label {
        opacity: 0.9;
        margin-top: 8px;
    }

    /* Main Content Wrapper */
    .about-content-wrapper {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto 80px;
        padding: 0 24px;
    }

    /* Navigation Styles */
    .about-navigation {
        position: sticky;
        top: 40px;
        height: fit-content;
        background: white;
        border-radius: var(--border-radius);
        padding: 24px;
        box-shadow: var(--shadow-light);
        border: 1px solid var(--medium-gray);
    }

    .about-sections {
        height: fit-content;
        background: white;
        border-radius: var(--border-radius);
        padding: 24px;
        box-shadow: var(--shadow-light);
        border: 1px solid var(--medium-gray);
    }

    .nav-header {
        margin-bottom: 32px;
        padding-bottom: 16px;
        border-bottom: 2px solid var(--accent-light);
    }

    .nav-header h3 {
        color: linear-gradient(135deg, #006BB7 0%, #006BB7 100%);
        margin-bottom: 4px;
    }

    .nav-header p {
        color: var(--dark-gray);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        color: var(--dark-gray);
        text-decoration: none;
        border-radius: 8px;
        transition: var(--transition);
        font-weight: 500;
    }

    .nav-link svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .nav-link:hover {
        background: var(--accent-light);
        color: #006BB7;
        transform: translateX(4px);
    }

    .nav-link.active {
        background: #006BB7;
        color: white;
    }

    /* Sections Styles */
    .about-sections {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .about-section {
        display: none;
        animation: fadeIn 0.5s ease-out;
    }

    .about-section.active {
        display: block;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        color: #006BB7;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .section-line {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #006BB7, var(--accent-gold));
        border-radius: 2px;
    }

    .section-content {
        color: var(--dark-gray);
    }

    .section-content p {
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .section-content p:last-child {
        margin-bottom: 0;
    }

    /* Course Cards */
    .course-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin: 32px 0;
    }

    .course-card {
        background: white;
        border-radius: var(--border-radius);
        padding: 28px;
        box-shadow: var(--shadow-light);
        border: 1px solid var(--medium-gray);
        transition: var(--transition);
    }

    .course-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-medium);
        border-color: var(--secondary-blue);
    }

    .course-card-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .course-number {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #006BB7;
        color: white;
        border-radius: 50%;
        font-weight: 700;
    }

    .course-card h3 {
        color: #006BB7;
        margin: 0;
    }

    .course-features {
        list-style: none;
        padding-left: 0;
        margin: 16px 0;
    }

    .course-features li {
        padding: 8px 0;
        padding-left: 28px;
        position: relative;
    }

    .course-features li:before {
        content: "->";
        position: absolute;
        left: 0;
        color: var(--accent-gold);
        font-weight: bold;
    }

    /* Benefits Grid */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 20px;
        margin: 32px 0;
    }

    .benefit-item {
        display: flex;
        gap: 16px;
        padding: 20px;
        background: var(--light-gray);
        border-radius: 10px;
        border-left: 4px solid var(--success-color);
        transition: var(--transition);
    }

    .benefit-item:hover {
        background: var(--accent-light);
        transform: translateY(-2px);
    }

    .benefit-icon {
        width: 32px;
        height: 32px;
        background: var(--success-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        flex-shrink: 0;
    }

    .benefit-content h3 {
        color: #006BB7;
        margin: 0 0 8px 0;
    }

    .benefit-content p {
        margin: 0;
        color: var(--dark-gray);
    }

    /* Note Box */
    .note-box {
        background: rgba(244, 162, 97, 0.1);
        border-left: 4px solid var(--accent-gold);
        padding: 20px 24px;
        border-radius: 0 8px 8px 0;
        margin-top: 32px;
    }

    .note-box p {
        margin: 0;
        font-style: italic;
    }

    /* Highlight Box */
    .highlight-box {
        background: rgba(0, 107, 183, 0.1);
        border-radius: var(--border-radius);
        padding: 32px;
        margin-top: 32px;
        border: 1px solid var(--medium-gray);
    }

    .highlight-box h3 {
        color: #006BB7;
        margin-bottom: 16px;
    }

    /* Call to Action */
    .about-cta {
        background: linear-gradient(135deg, #006BB7 0%, #006BB7 100%);
        color: white;
        padding: 80px 24px;
        text-align: center;
    }

    .cta-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .about-cta h2 {
        margin-bottom: 16px;
    }

    .about-cta p {
        opacity: 0.9;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-button {
        padding: 16px 32px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
    }

    .cta-button.primary {
        background: white;
        color: #006BB7;
    }

    .cta-button.primary:hover {
        background: var(--accent-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .cta-button.secondary {
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .cta-button.secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
        transform: translateY(-2px);
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .about-content-wrapper {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .about-navigation {
            position: relative;
            top: 0;
        }

        .nav-links {
            flex-direction: row;
            overflow-x: auto;
            padding-bottom: 16px;
        }

        .nav-link {
            white-space: nowrap;
            padding: 12px 16px;
        }
    }

    @media (max-width: 768px) {
        .about-hero {
            padding: 60px 20px;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
        }

        .hero-stats {
            gap: 40px;
        }

        .stat-number {
            font-size: 2.5rem;
        }

        .about-content-wrapper {
            padding: 0 20px;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .course-cards {
            grid-template-columns: 1fr;
        }

        .about-cta {
            padding: 60px 20px;
        }

        .about-cta h2 {
            font-size: 2rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .cta-button {
            width: 100%;
            max-width: 300px;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .about-hero {
            padding: 48px 16px;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.125rem;
        }

        .hero-stats {
            gap: 30px;
        }

        .stat-number {
            font-size: 2rem;
        }

        .stat-label {
            font-size: 0.875rem;
        }

        .about-content-wrapper {
            padding: 0 16px;
        }

        .nav-links {
            gap: 4px;
        }

        .nav-link {
            padding: 10px 12px;
            font-size: 0.875rem;
        }

        .nav-link svg {
            display: none;
        }

        .section-header h2 {
            font-size: 1.75rem;
        }

        .section-content {
            font-size: 1rem;
        }

        .course-card {
            padding: 20px;
        }

        .benefit-item {
            padding: 16px;
        }

        .about-cta {
            padding: 48px 16px;
        }

        .about-cta h2 {
            font-size: 1.75rem;
        }

        .about-cta p {
            font-size: 1.125rem;
        }
    }

    /* Mobile Navigation Toggle for Small Screens */
    @media (max-width: 640px) {
        .about-navigation {
            padding: 16px;
        }

        .nav-header {
            margin-bottom: 24px;
        }

        .nav-header h3 {
            font-size: 1.25rem;
        }
    }
/* custom style  */
@media (min-width: 1450px) {
    .container {
        width: 1450px !important;
    }
}

.stuck {
    background-color: white !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.sticky_header header.stuck .container {
    text-align: center;
}

.header-logo {
    gap: 10px;
}

.header-logo img {
    height: 60px;
    margin-right: 8px;
}


.header-nav ul {
    gap: 25px;
}

.header-nav a {
    color: #18171A;
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
    font-family: "Inter", sans-serif;
}

.header-contact {
    gap: 22px;
}

.header-contact-info {
    gap: 6px;
}

.header-contact-info img {
    height: 15px;
}

.header-contact-info span {
    color: #222;
    font-size: 16px;
}


.bg-footer {
    background-color: #18171A;
    font-family: "Inter", sans-serif;
}

a,
footer a:link,
footer a:visited {
    color: #30A9FF;
}

.footer-gold {
    color: #d4af37;
}

.footer-link {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
}

.footer-link:hover {
    color: #d4af37;
}

.footer-contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-company-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.footer-learn-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 17px;
}

.footer-learn-link:hover {
    text-decoration: underline;
}

.footer-section-title {
    font-size: 28px;
    font-weight: 300;
    color: #F4CB58;
    margin-bottom: 1.5rem;
}

.footer-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-support-list li {
    margin-bottom: 0.75rem;
}

.font-12 {
    font-size: 12px;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.font-16 {
    font-size: 16px;
}

.font-17 {
    font-size: 17px;
}

.font-18 {
    font-size: 18px;
}

.font-19 {
    font-size: 19px;
}

.font-20 {
    font-size: 20px;
}

.font-21 {
    font-size: 21px;
}

.font-22 {
    font-size: 22px;
}

.font-23 {
    font-size: 23px;
}

section.top-banner {
    padding-top: 50px;
    min-height: 100vh;
}

.banner-heading {
    color: #006BB7;
    text-align: center;
    font-size: 34px;
    font-weight: 400;
    line-height: 46px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.course-box {
    font-family: "Inter", sans-serif;
    position: relative;
    min-height: 370px;
    border-radius: 4px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    color: #fff;
    margin-bottom: 20px;
}

.course-box.first-box {
    min-height: 483px;
}

.course-price {
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
}

.course-title {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.course-content {
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.course-content h5 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 6px;
    margin-bottom: 4px;
}

.course-content ul {
    padding-left: 24px;
    margin-bottom: 1rem;
}

.course-content li {
    margin-bottom: 0.5rem;
    font-size: 13px;
    font-weight: 300;
}

.course-content p {
    margin-bottom: 0.75rem;
    font-size: 14px;
    font-weight: 300;
}

.course-content .note {
    color: #FFF;
    line-height: 160%;
    text-transform: capitalize;
    border-radius: 12px;
    background: rgba(217, 217, 217, 0.24);
    padding: 12px;
    font-size: 12px;
    font-weight: 300;
}

.btn-register {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    padding: 0.5rem 1.25rem;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-register:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary-action {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.52);
    color: #0089EB;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
}

.btn-secondary-action:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.course-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .course-box {
        min-height: 400px;
        padding: 1.5rem;
    }

    .course-title {
        font-size: 1.25rem;
    }

    .course-price {
        font-size: 22px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
}

.testimonials-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.testimonials-heading .text-primary {
    color: #006BB7 !important;
}

.testimonials-heading .text-danger {
    color: #DC3545 !important;
}

.testimonials-underline {
    width: 80px;
    height: 4px;
    background-color: #FFC107;
    margin: 0 auto;
    margin-top: 0.5rem;
}

.testimonials-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #F8F7F5;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.quote-mark {
    font-size: 64px;
    font-weight: 700;
    color: #FFC107;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.5rem;
    text-align: left;
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
    text-align: center;
}

.testimonial-title {
    font-size: 16px;
    font-weight: 400;
    color: #FFC107;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .testimonials-heading {
        font-size: 28px;
    }

    .testimonials-description {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .quote-mark {
        font-size: 48px;
    }
}


@media (max-width: 768px) {
    .header-logo img {
        height: 40px;
    }

    .header-contact-info span {
        font-size: 14px;
    }

    section.top-banner {
        padding-top: 0px;
    }

    .banner-heading {
        font-size: 24px;
        line-height: 34px;
    }

    .btn-register {
        padding: 3px 6px;
        font-size: 12px;
    }
}

.gap-3 {
    gap: 3rem !important;
}

.full_page_photo {
    height: 380px !important;
}

/* header{
    background: white !important;
} */
/* ===== MODERN PROFESSIONAL HEADER ===== */

/* Main Header - White background */
header {
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header for non-homepage pages - half transparent, half white */
body:not(.homepage) header {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.722) 50%, rgba(255, 255, 255, 0.644) 100%) !important;
    backdrop-filter: blur(10px);
}

body:not(.homepage) header.scrolled {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.772) 50%, rgba(255, 255, 255, 0.644) 100%) !important;
}

/* Header scroll effect */
header.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    /* padding: 10px 0 !important; */
}

/* Navigation container - Light blue accent */
/* #mainmenu {
    background: rgba(0, 107, 183, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 10px 25px;
    border: 1px solid rgba(0, 107, 183, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 0;
    transition: all 0.3s ease;
} */

/* #mainmenu:hover {
    background: rgba(0, 107, 183, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
} */

/* Navigation links */
.header-nav a {
    color: #18171A !important;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 10px 18px !important;
    margin: 0 2px;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
    border-radius: 25px;
    background: transparent;
}

/* Navigation hover effects */
.header-nav a:hover {
    color: #006BB7 !important;
    background: rgba(0, 107, 183, 0.08);
    transform: translateY(-1px);
}

/* Underline effect */
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #006BB7, #30A9FF);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.header-nav a:hover::after {
    width: 70%;
}

/* Active link */
.header-nav a.active {
    color: #006BB7 !important;
    font-weight: 600;
    background: rgba(0, 107, 183, 0.1);
}

.header-nav a.active::after {
    width: 100%;
}

/* Contact Info - Fixed phone number display */
.header-contact {
    gap: 15px;
}

.header-contact-info {
    color: #18171A;
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(0, 107, 183, 0.05);
    border: 1px solid rgba(0, 107, 183, 0.1);
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    /* Prevents text cutting */
    white-space: nowrap;
    overflow: visible !important;
    /* Fixed: allows text to show */
}

/* Phone number specific fix */
.header-contact-info:first-child {
    background: rgba(0, 107, 183, 0.08);
    min-width: max-content;
    /* Ensures phone number is fully visible */
}

/* Email specific styling */
.header-contact-info:last-child {
    background: rgba(48, 169, 255, 0.08);
    min-width: max-content;
    /* Ensures email text is fully visible */
}

.header-contact-info:hover {
    color: #006BB7;
    background: rgba(0, 107, 183, 0.12);
    border-color: rgba(0, 107, 183, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 107, 183, 0.15);
}

.header-contact-info span {
    color: #18171A;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-overflow: clip !important;
    overflow: visible !important;
}

.header-contact-info:hover span {
    color: #006BB7;
}

/* Icons - Blue on white background */
.header-contact-info img {
    height: 16px;
    width: 16px;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(1553%) hue-rotate(186deg) brightness(94%) contrast(101%);
}

.header-contact-info:hover img {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(1553%) hue-rotate(186deg) brightness(94%) contrast(101%);
}

/* Phone icon animation */
.header-contact-info:first-child:hover img {
    animation: phonePulse 0.5s ease;
}

@keyframes phonePulse {

    0%,
    100% {
        transform: scale(1.15) rotate(0);
    }

    50% {
        transform: scale(1.25) rotate(5deg);
    }
}

/* Logo styling for white background */
.header-logo .brand {
    transition: all 0.3s ease;
}

.header-logo .brand:hover {
    transform: translateY(-2px);
}

.header-logo .brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.header-logo .brand:hover img {
    transform: scale(1.05);
}

/* Scroll effect adjustments */
header.scrolled .header-logo .brand img {
    height: 45px;
}

header.scrolled #mainmenu {
    padding: 8px 20px;
}

header.scrolled .header-contact-info {
    padding: 8px 14px;
}

/* Responsive optimizations */
@media (max-width: 1199px) {
    .header-contact-info span {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    #mainmenu {
        padding: 8px 20px;
        border-radius: 40px;
        margin: 10px 0;
    }

    .header-nav ul {
        gap: 15px;
    }

    .header-nav a {
        padding: 8px 15px !important;
        font-size: 15px;
    }

    .header-contact {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center !important;
    }

    .header-contact-info {
        padding: 8px 12px;
        flex: 0 0 auto;
    }

    .header-contact-info span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        gap: 15px;
    }

    #mainmenu {
        width: 100%;
        margin: 10px 0;
        border-radius: 30px;
    }

    .header-nav ul {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-nav a {
        padding: 6px 12px !important;
        font-size: 14px;
    }

    .header-contact {
        justify-content: center !important;
        width: 100%;
    }

    .header-contact-info {
        padding: 8px 12px;
        min-width: 0;
    }

    .header-contact-info span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-contact {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center !important;
    }

    .header-contact-info {
        padding: 6px 10px;
        font-size: 12px;
    }

    .header-contact-info span {
        font-size: 12px;
    }

    .header-contact-info img {
        height: 14px;
        width: 14px;
    }
}

.main_vid {
    z-index: 0;
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    margin-top: 0px;
    margin-left: 0px;
    height: 230%;
    margin-bottom: 55px;
}

.main_vid2 {
    z-index: 0;
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    margin-top: 0px;
    margin-left: 0px;

    margin-bottom: 55px;
}

/* Hover Dropdown Styles */
.dropdown-hover {
    position: relative;
}

.dropdown-hover:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #1e2125;
    text-decoration: none;
    background-color: #f8f9fa;
}

/* Responsive Header Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 1001;
}

.mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    overflow-y: auto;
    padding: 80px 20px 40px;
}

.mobile-menu-container.active {
    display: block;
}

.mobile-nav {
    text-align: center;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin: 15px 0;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: #007bff;
    transform: translateX(10px);
}

.mobile-dropdown-menu {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu a {
    font-size: 16px;
    padding: 8px 0;
}

.mobile-dropdown-toggle {
    position: relative;
}

.mobile-dropdown-toggle::after {
    content: '▼';
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active::after {
    transform: rotate(180deg);
}

.mobile-contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 16px;
}

.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1002;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .desktop-header {
        display: none !important;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        padding: 10px 0;
    }

    .mobile-header .row {
        width: 100%;
    }

    section.top-banner {
        margin-top: 60px;
    }

    .mb-5 {
        margin-bottom: 0rem !important;
    }

    .row {
        flex-direction: unset;
        gap: 15px;
    }

    .sticky_header header {
        position: fixed !important;
    }

    /* header.scrolled {
        padding: 8px 0px 0px 0px !important;
    } */

    header {
        padding: 12px 0px 0px 0px !important;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        padding: 8px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .mobile-menu-toggle i {
        display: block;
    }

    .header-logo {
        position: relative;
        text-align: center;
    }

    .brand img {
        max-height: 40px;
        width: auto;
    }

    /* Ensure proper spacing */
    .mobile-header .col-2 {
        display: flex;
        align-items: center;
    }

    .mobile-header .col-8 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 993px) {
    .mobile-header {
        display: none !important;
    }

    .desktop-header {
        display: block !important;
    }
}

@media (min-width: 992px) and (max-width: 1449px) {

    .header-nav a {
        padding: 10px 1px !important;
    }

}