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

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    background: #25d366; /* WhatsApp green */
    border: 2px solid #25d366; /* WhatsApp green */
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 2rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128c7e; /* WhatsApp dark green */
    color: #fff;
    border-color: #128c7e;
}


.whatsapp-float .fa-whatsapp {
    color: inherit;
    transition: color 0.2s;
}

.whatsapp-float:hover .fa-whatsapp {
    color: #fff;
}

.navbar-toggler {
    margin-right: 16px;
    margin-top: 8px;
    /* You can adjust these values as needed */
    border: none;
    background: transparent !important;
    font-size: 2rem;
    color: #0e387a;
    outline: none;
    box-shadow: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.2s;
}

@media (max-width: 991px) {
    .navbar {
        padding-left: 10px;
        padding-right: 10px;
    }
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler .fa-bars {
    font-size: 2rem;
    color: #0e387a;
}

body {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    /* overflow-x: hidden; */
    background-color: #FFFFFF;
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Container adjustments */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin: 0;
}

.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
    width: 100%;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-weight: 700;
}

.navbar-logo {
    height: 40px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0056b3;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #0056b3;
    left: 0;
    bottom: -2px;
    transition: width 0.3s ease;
}

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

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.dropdown-item {
    padding: 8px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0056b3;
}

.consultation-btn {
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0e387a 0%, #2563eb 100%);
    color: white;
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./public/assets/images/hero_bg_pattern.svg');
    background-size: cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-container {
    display: inline-block;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-text {
    color: #FFA500;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-stats-row {
    display: flex;
    margin-bottom: 30px;
}

.hero-stat-item {
    margin-right: 40px;
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FFA500;
}

.hero-stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    padding: 12px 28px;
    font-weight: 600;
}

.btn-outline-light:hover {
    color: #0e387a;
}

.hero-image-container {
    position: relative;
    padding: 20px;
}

.hero-img {
    position: relative;
    z-index: 2;
    max-height: 450px;
    animation: float 5s ease-in-out infinite;
}

.hero-floating-badge {
    position: absolute;
    background-color: white;
    color: #333;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
}

.top-badge {
    top: 15%;
    right: 5%;
}

.bottom-badge {
    bottom: 15%;
    left: 5%;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f9fbfe;
    position: relative;
    width: 100%;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./public/assets/images/section_bg_pattern.svg');
    background-size: cover;
    opacity: 0.04;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
}

.gradient-text {
    background: linear-gradient(45deg, #0e387a, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 10px;
}

.featured-services-row {
    margin-bottom: 50px;
}

.featured-service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.featured-service-card.active {
    background: linear-gradient(135deg, #0e387a 0%, #2563eb 100%);
    color: white;
}

.featured-service-card.active h3 {
    color: white;
}

.service-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-service-img {
    margin-bottom: 30px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-service-img img {
    max-height: 100%;
    max-width: 100%;
}

.featured-service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0e387a;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-service-card.active .service-link {
    color: white;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 30px 0;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0e387a 0%, #2563eb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0e387a;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: white;
    width: 100%;
}

.about-img {
    position: relative;
    padding-right: 30px;
}

.about-img img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.about-content {
    padding-left: 20px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0e387a;
}

.about-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
}

.check-icon-blue {
    color: #2563eb;
    font-size: 1.2rem;
    margin-top: 3px;
}

.about-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0e387a 0%, #2563eb 100%);
    color: white;
    width: 100%;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Destinations Section */
.destinations-section {
    padding: 100px 0;
    background-color: #f9fbfe;
    position: relative;
    width: 100%;
}

.destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./public/assets/images/section_bg_pattern.svg');
    background-size: cover;
    opacity: 0.04;
}

.destinations-grid {
    margin-top: 50px;
}

.destination-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

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

.destination-card.featured {
    height: calc(100% - 25px);
}

.destination-card-inner {
    display: flex;
    height: 100%;
}

.destination-flag {
    margin-right: 20px;
    align-self: center;
}

.destination-flag img {
    width: 60px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.destination-content {
    flex: 1;
}

.destination-label {
    display: inline-block;
    background: linear-gradient(135deg, #FF5F6D 0%, #FFC371 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.destination-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0e387a;
}

.destination-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.destination-programs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.destination-program-tag {
    background-color: #f0f4f9;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0e387a;
}

.destination-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.destination-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.destination-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.destination-link:hover i {
    transform: translateX(5px);
}

.more-destinations {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.more-destinations-content {
    text-align: center;
    padding: 20px;
}

.more-destinations-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0e387a;
}

.more-destinations-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.more-destinations-list li {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.more-destinations-list i {
    margin-right: 10px;
    color: #2563eb;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: white;
    width: 100%;
}

.testimonial-card {
    background-color: #f9fbfe;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    padding-left: 25px;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #d1d9e6;
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px;
    color: #0e387a;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #f9fbfe;
    position: relative;
    width: 100%;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./public/assets/images/section_bg_pattern.svg');
    background-size: cover;
    opacity: 0.04;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0e387a 0%, #2563eb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 18px;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #0e387a;
}

.contact-details p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    height: 100%;
    width: 100%;
}

/* Form Controls */
.form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
    box-shadow: none;
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
    padding: 10px 15px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0e387a 0%, #2563eb 100%);
    color: white;
    padding-top: 80px;
    width: 100%;
}

.footer-text {
    opacity: 0.9;
    margin-bottom: 25px;
}

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

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

.social-links a:hover {
    background-color: white;
    color: #2563eb;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

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

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

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

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0e387a 0%, #2563eb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #2563eb 0%, #0e387a 100%);
    color: white;
    transform: translateY(-3px);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Page Header for Sub Pages */
.page-header {
    background: linear-gradient(135deg, #0e387a 0%, #2563eb 100%);
    color: white;
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./public/assets/images/hero_bg_pattern.svg');
    background-size: cover;
    opacity: 0.1;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #0e387a 0%, #2563eb 100%);
    border: none;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0e387a 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
}

.btn-outline-secondary {
    border-color: #e1e8ed;
    color: #555;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #f8f9fa;
    border-color: #d1d9e6;
    color: #0e387a;
}

/* Responsive styles */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }

    .hero-section {
        padding: 130px 0 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .about-img {
        padding-right: 0;
    }

    .destination-card.featured {
        height: auto;
    }

    .contact-card {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-stats-row {
        flex-wrap: wrap;
    }

    .hero-stat-item {
        margin-right: 20px;
        margin-bottom: 15px;
    }

    .hero-floating-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

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

    .featured-service-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .about-title {
        font-size: 2rem;
    }

    .destination-card-inner {
        flex-direction: column;
    }

    .destination-flag {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .testimonial-card {
        margin-bottom: 30px;
    }

    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }

    .hero-stats-row {
        justify-content: space-between;
    }

    .hero-stat-item {
        margin-right: 0;
    }

    .about-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .about-buttons .btn {
        width: 100%;
        margin: 0;
    }

    .contact-card {
        padding: 25px;
    }
}

/* Ensure all sections are 100% width */
section {
    /* width: 100% !important; */
    padding-left: 0;
    padding-right: 0;
}


/* --- Contact Page Styling --- */
.contact-info-card {
    background: #f1f3f6;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.2s;
}
.contact-info-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.contact-info-card .info-icon {
    font-size: 2.2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}
.contact-info-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #0e387a;
    margin-bottom: 0.5rem;
}
.contact-info-card p,
.contact-info-card .hours {
    color: #555;
    font-size: 1.05rem;
}
.contact-info-card .btn-outline-primary {
    border-radius: 8px;
    font-weight: 500;
    padding: 6px 18px;
}

.contact-form-container {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 2rem 1.5rem;
    margin-top: 1rem;
}
.contact-form-container h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0e387a;
    margin-bottom: 1rem;
}
.contact-form-container p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.contact-form .form-label {
    font-weight: 500;
    color: #0e387a;
}
.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    border: 1px solid #e1e8ed;
    box-shadow: none;
    padding: 10px 15px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.25rem rgba(37,99,235,0.15);
}
.contact-form .btn-primary {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,123,255,0.15);
}
.contact-form .form-check-label {
    font-size: 0.95rem;
    color: #555;
}
.contact-image img {
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

@media (max-width: 991px) {
    .contact-form-container {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }
    .contact-image img {
        margin-bottom: 2rem;
    }
}

.contact-info-section .row.justify-content-center.mb-5 {
    margin-bottom: 3rem !important;
}

/* Add margin to Our Location section */
.map-section .map-container {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.contact-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.contact-image::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle at 60% 40%, #e3eafe 0%, #f1f3f6 100%);
    border-radius: 30% 70% 60% 40% / 40% 60% 30% 70%;
    z-index: 1;
    filter: blur(8px);
    opacity: 0.7;
}

.contact-image img {
    position: relative;
    z-index: 2;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(37,99,235,0.10);
    background: white;
    padding: 12px;
    max-width: 100%;
    height: auto;
    transition: box-shadow 0.3s;
}

.contact-image img:hover {
    box-shadow: 0 16px 48px rgba(37,99,235,0.18);
}