
:root {
    --primary-blue: #0579be;
    --secondary-teal: #30a8b6;
    --dark-blue: #014472;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
}




.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
    --bs-offcanvas-zindex: 1045;
    /* OffCanvas width adjustment */
    --bs-offcanvas-width: 260px;
    --bs-offcanvas-height: 30vh;
    --bs-offcanvas-padding-x: 1rem;
    --bs-offcanvas-padding-y: 1rem;
    --bs-offcanvas-color: ;
    --bs-offcanvas-bg: #fff;
    --bs-offcanvas-border-width: 1px;
    --bs-offcanvas-border-color: var(--bs-border-color-translucent);
    --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link {
    color: var(--dark-blue) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
}

/* Navbar Logo Text */
.logo-text {
    font-size: 0.8rem; /* Adjust this value to make it smaller or bigger */
}



.social-icons a {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-teal);
    transform: translateY(-2px);
}

/* Offcanvas Styles */
.offcanvas {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: white;
    
}

/* offcanvas image logo */
.logo-image {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.offcanvas .nav-link {
    color: white !important;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

.offcanvas-logo {
    
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    
        
}



.offcanvas-social {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.offcanvas-social a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.offcanvas-social a:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 68, 114, 0.8), rgba(48, 168, 182, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-content .logos .logo {
    max-height: 100px;
    width: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
        
    .hero-content .logos .logo {
        max-height: 80px;
    }
    
}




.hero-logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-teal));
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 50px;
    text-align: center;
}

.about-section {
    background: var(--light-gray);
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* FAQ Styles */
.faq-section {
    background: var(--light-gray);
}

.accordion-button {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-teal));
    color: white;
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, var(--dark-blue), var(--primary-blue));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

/* Reviews Section */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.google-icon {
    font-size: 3rem;
    color: #4285f4;
    margin-bottom: 30px;
}

/* Contact Section */
.contact-section-modern {
    background: var(--gradient-primary);
    color: white;
    position: relative;
}

.contact-section-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/placeholder.svg?height=800&width=1200") center / cover;
    opacity: 0.1;
    z-index: 0;
}

.modern-contact-form {
    position: relative;
    z-index: 1;
}

.form-group-modern {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control-modern {
    width: 100%;
    padding: 15px 50px 15px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-modern:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.btn-contact-submit {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: var(--dark-blue);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    color: var(--dark-blue);
}


/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 40px 0 20px;
}

.footer .social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}



* Review Section */
.reviews {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.reviews .carousel-inner {
    padding: 0 15px;
}



/* Styling for the reviews carousel cards */
/* Styling for the reviews carousel cards */
.reviews .carousel-item .card {
    max-width: 500px;
    height: 400px; /* Increased height */
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Enhanced shadow */
    background-image: url('../assets/img/Review-BG.png'); /* Background image */
    background-size: cover; /* Resize image to cover card */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent image repetition */
    transition: box-shadow 0.3s ease; /* Smooth transition */
}

/* Ensure card variants use the same background image and height */
.reviews .carousel-item .card.card-1 {
    background-image: url('../assets/img/Review-BG2.png'); /* Same image for all cards */
    background-color: transparent; /* Remove previous colors */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px; /* Match increased height */
}

.reviews .carousel-item .card.card-2 {
    
    background-image: url('../assets/img/Review-BG1.png'); /* Same image for all cards */
    background-color: transparent; /* Remove previous colors */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px; /* Match increased height */
    
}

.reviews .carousel-item .card.card-3 {
    
    background-image: url('../assets/img/Review-BG.png'); /* Same image for all cards */
    background-color: transparent; /* Remove previous colors */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px; /* Match increased height */
    
}




.reviews .carousel-item .card-body {
    padding: 20px;
    color: #ffffff;
}

.reviews .carousel-item .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.reviews .stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.reviews .card-text {
    font-size: 1rem;
    font-style: italic;
}

.reviews .text-muted {
    font-size: 0.875rem;
    color: #d1d1d1 !important;
}

.reviews .carousel-control-prev,
.reviews .carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.0);
}

.reviews .carousel-control-prev-icon,
.reviews .carousel-control-next-icon {
    filter: invert(100%);
}

.reviews h2 {
    color: #004470;
}

.reviews .btn-review {
    background-color: #32a8b6;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.reviews .btn-review:hover {
    background-color: #2a8c99;
}

@media (max-width: 576px) {
    .reviews .carousel-item .card {
        max-width: 100%;
    }
    
    .reviews .carousel-control-prev,
    .reviews .carousel-control-next {
        width: 10%;
    }
}


/* Chat Bubble */
.chat-bubble-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button-modern {
    width: 65px;
    height: 65px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(5, 121, 190, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(5, 121, 190, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(5, 121, 190, 0);
    }
}

.chat-button-modern:hover {
    transform: scale(1.1);
    animation: none;
}

.chat-menu-modern {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 200px;
    border: 2px solid var(--primary-blue);
}

.chat-menu-modern.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.chat-option:last-child {
    border-bottom: none;
}

.chat-option:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding-left: 25px;
}



/* Styling for the map section */
#map-section {
    height: 300px; /* Adjust height as needed */
    width: 100%;
    margin: 0 auto;
    padding: 0; /* No padding to eliminate gap */
    margin-bottom: 0; /* Ensure no gap before footer */
    position: relative; /* For positioning the legend and overlay */
}
#map {
    height: 100%;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    position: relative; /* Ensure map stays in flow */
}
/* Light blue overlay */
#map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 123, 192, 0.29); /* Light blue with 30% opacity */
    border-radius: 8px; /* Match map border radius */
    pointer-events: none; /* Allow map interaction */
    z-index: 1; /* Below legend, above map */
}
/* Styling for the legend */
#map-legend {
    position: absolute;
    top: 10px; /* Adjusted for no padding */
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2; /* Above overlay */
}
/* Ensure footer has no top margin */
.footer {
    margin-top: 0; /* Remove any default top margin */
}