:root {
    --black: #000000;
    --dark-blue: #14213D;
    --green: #A7C957;
    --light-gray: #E5E5E5;
    --white: #FFFFFF;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--white);
    overflow-x: hidden !important;
}

/* Navbar Styles */
.navbar {
    padding: 0.5rem 0;
    transition: all 0.3s ease-in-out;
    position: fixed;
    width: 100%;
    z-index: 1001;
    background-color: var(--dark-blue);
}

.navbar .container-fluid {
    position: relative;
}

/* Transparent navbar in home section */
#Home ~ .navbar,
#Home ~ .navbar.navbar-hidden {
    background-color: transparent;
}

/* Normal navbar color when expanded or in other sections */
.navbar.show,
.navbar.collapsing,
#About_Us ~ .navbar,
#Our_Services ~ .navbar,
#Payment_Methods ~ .navbar,
#Our_Principles ~ .navbar,
#Contact_Us ~ .navbar {
    background-color: var(--dark-blue);
}

/* Ensure navbar is visible when expanded on mobile */
@media (max-width: 991.98px) {
    .navbar-collapse.show ~ .navbar,
    .navbar-collapse.collapsing ~ .navbar {
        background-color: var(--dark-blue);
    }
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.navbar-brand {
    padding: 0;
    position: relative;
    z-index: 1002;
}

.navbar-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1002;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon::after {
    bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 50%;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 50%;
}

.navbar-nav {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--green) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--green) !important;
}

.nav-link.active::after {
    width: 100%;
    background-color: var(--green);
}

/* Hero Section Styles */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-section .container-fluid {
    padding: 0;
    margin: 0;
    height: 100%;
}

.hero-section .row {
    margin: 0;
    height: 100%;
}

.hero-section .col-lg-5,
.hero-section .col-lg-7 {
    padding: 0;
    margin: 0;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    background-color: var(--white);
    height: 100%;
    margin: 0;
}

.hero-content {
    padding-left: 10%;
    padding-right: 10%;
    max-width: 700px;
}

.hero-title {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.hero-text {
    color: var(--black);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--dark-blue);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--green);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    transform: scale(1.1);
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

.hero-image img.loaded + .hero-image-placeholder {
    opacity: 0;
}

/* Add image loading animation */
@keyframes imageLoad {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image img {
    animation: imageLoad 0.3s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--dark-blue);
        padding: 1rem;
        border-radius: 0;
        margin-top: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
    }

    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-nav {
        position: static;
        transform: none;
        margin-right: 0;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease-in-out;
        width: 100%;
        text-align: center;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-item:nth-child(5) { transition-delay: 0.5s; }
    .nav-item:nth-child(6) { transition-delay: 0.6s; }

    .nav-link {
        padding: 0.5rem 0.8rem;
        margin: 0.2rem 0;
        border-radius: 0.4rem;
        transition: all 0.3s ease;
        text-align: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-link:hover {
        color: var(--green) !important;
    }

    .nav-link.active {
        color: var(--green) !important;
    }

    .hero-section {
        position: relative;
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .hero-content-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 100px 1.5rem 60px;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.5);
        height: 100%;
        margin: 0;
    }

    .hero-content {
        padding: 1.5rem;
        text-align: center;
        max-width: 100%;
        color: var(--white);
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
        color: var(--white);
    }

    .hero-text {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0.5rem;
        margin-top: 0;
    }

    .hero-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
        min-width: auto;
    }

    .hero-buttons .btn-primary {
        background-color: rgba(255, 255, 255, 0.9);
        color: var(--dark-blue);
        border: none;
    }

    .hero-buttons .btn-primary:hover {
        background-color: var(--white);
        color: var(--dark-blue);
    }

    .hero-buttons .btn-outline {
        border: 2px solid var(--white);
        color: var(--white);
        background-color: transparent;
    }

    .hero-buttons .btn-outline:hover {
        background-color: var(--white);
        color: var(--dark-blue);
    }

    .hero-image-wrapper {
        height: 100vh;
        position: relative;
        margin: 0;
        padding: 0;
    }

    .hero-image {
        height: 100%;
        margin: 0;
        padding: 0;
        line-height: 0;
    }

    .hero-image img {
        object-fit: cover;
        height: 100%;
        display: block;
        margin: 0;
        padding: 0;
        line-height: 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .feature-card,
    .service-card,
    .principle-card,
    .payment-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .contact-info {
        margin-top: 2rem;
    }

    .contact-info-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .social-icons {
        justify-content: center;
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-section {
        text-align: center;
    }

    .social-section h4 {
        text-align: center;
    }
} 


.section-title {
    color: var(--dark-blue);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--green);
    margin: 20px auto;
}

.section-text {
    color: var(--black);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* About Section */
/* About Section Styles */
.company-name {
    color: var(--dark-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--dark-blue);
}

.feature-icon {
    font-size: 2.8rem;
    color: var(--green);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(167, 201, 87, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    background-color: rgba(20, 33, 61, 0.1);
    transform: translate(-50%, -50%) scale(1.2);
}

.feature-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    opacity: 0.2;
}

.feature-card h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--black);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: var(--black);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: '•';
    color: var(--green);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}


/* Section Styles */
section {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin: 0;
}

/* Home Section */
#Home {
    padding: 0;
    background-color: var(--white);
    margin: 0;
}

/* About Section */
#About_Us {
    background-color: var(--light-gray);
    padding: 80px 0;
    margin: 0;
}

/* Services Section */
#Our_Services {
    background-color: var(--white);
    padding: 80px 0;
    margin: 0;
}

/* Payment Methods Section */
#Payment_Methods {
    background-color: var(--light-gray);
    padding: 80px 0;
    margin: 0;
}

/* Principles Section */
#Our_Principles {
    background-color: var(--white);
    padding: 80px 0;
    margin: 0;
}

/* Contact Section */
#Contact_Us {
    background-color: var(--light-gray);
    padding: 80px 0;
    margin: 0;
}

/* Services Section Styles */
.service-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--dark-blue), var(--green));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    opacity: 0.95;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--white);
    transform: scale(1.1);
}

.service-content {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-content h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--white);
}

.service-content p {
    color: var(--black);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-content p {
    color: var(--white);
}



/* Principles Section Styles */
.principle-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.principle-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.principle-card:hover::after {
    transform: scaleX(1);
}

.principle-icon {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.principle-card:hover .principle-icon {
    color: var(--green);
    transform: scale(1.1);
}

.principle-content h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.principle-content p {
    color: var(--black);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    transition: all 0.3s ease;
}


/* Payment Methods Section Styles */
.payment-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    overflow: hidden;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.payment-icon {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.payment-card:hover .payment-icon {
    color: var(--green);
    transform: scale(1.1);
}

.payment-content {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.payment-content h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.payment-card:hover .payment-content h3 {
    color: var(--dark-blue);
}

.payment-content p {
    color: var(--black);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.payment-card:hover .payment-content p {
    color: var(--black);
}


/* Contact Section Styles */
.contact-form {
    position: relative;
    padding: 1.5rem 0;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(167, 201, 87, 0.03), rgba(20, 33, 61, 0.03));
    border-radius: 15px;
    z-index: -1;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 1.2rem;
}

.contact-form .input-group {
    position: relative;
}

.contact-form .input-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-blue);
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-form .form-control {
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-radius: 0;
    font-size: 0.95rem;
    background: transparent;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--green);
    box-shadow: none;
    background: rgba(167, 201, 87, 0.03);
}

.contact-form textarea.form-control {
    padding-top: 0.8rem;
    min-height: 120px;
    resize: none;
}

.contact-form .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 25px;
    background: var(--dark-blue);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: auto;
    min-width: 150px;
    color: var(--white);
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--green), var(--dark-blue));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form .btn-primary:hover::before {
    opacity: 1;
}

.contact-form .btn-primary i,
.contact-form .btn-primary span {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.contact-info {
    padding: 1.5rem 0;
    position: relative;
    margin-left: 2rem;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(20, 33, 61, 0.03), rgba(167, 201, 87, 0.03));
    border-radius: 15px;
    z-index: -1;
}

.contact-heading {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.contact-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--green);
    transition: all 0.3s ease;
}

.contact-heading:hover::after {
    width: 100%;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.8rem;
    border-radius: 8px;
}

.contact-info-item:hover {
    background: rgba(167, 201, 87, 0.05);
    transform: translateX(8px);
}

.contact-info-item .icon-wrapper {
    width: 35px;
    height: 35px;
    background: var(--dark-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover .icon-wrapper {
    background: var(--green);
    transform: rotate(8deg);
}

.contact-info-item .icon-wrapper i {
    font-size: 0.9rem;
    color: var(--white);
}

.contact-info-item .info-content h4 {
    color: var(--dark-blue);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-info-item .info-content p {
    color: var(--black);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.social-section {
    margin-top: 2rem;
}

.social-section h4 {
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: var(--dark-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--green);
    transform: translateY(-3px) rotate(8deg);
}

@media (max-width: 991.98px) {
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .contact-info-item:hover {
        transform: translateX(5px);
    }

    .social-section {
        text-align: center;
    }

    .social-section h4 {
        text-align: center;
    }
}

/* Make all card content and headings non-selectable */
.feature-card,
.service-card,
.principle-card,
.payment-card,
.contact-info-item,
.contact-form,
.social-icon,
.section-title,
.hero-title,
.hero-text,
.company-name,
.contact-heading,
h1, h2, h3, h4, h5, h6,
.brand-text {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Allow text selection in form inputs and textarea */
.contact-form input,
.contact-form textarea {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

.navbar-collapse.collapsing {
    transition: all 0.3s ease-in-out;
}

body.navbar-open {
    overflow: hidden;
}

.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.navbar-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    width: 120px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background-color: var(--light-gray);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-color: var(--dark-blue);
    animation: progress 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes progress {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--dark-blue);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: right;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-about,
    .footer-links,
    .footer-contact {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul li a {
        display: inline-block;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .copyright {
        text-align: center;
        margin-top: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-bottom .row {
        flex-direction: column-reverse;
    }
    
    .copyright {
        margin-bottom: 20px;
    }
    
    .footer-about p {
        text-align: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}