/* ============================================
   CSS Variables & Base Styles
   ============================================ */

:root {
    --primary-cyan: #3fddeb;
    --primary-cyan-dark: #35b6c2;
    --dark-bg: #171717;
    --darker-bg: #252525;
    --light-bg: #f1f1f1;
    --gray-text: #737373;
    --light-gray: #858585;
    --border-gray: #EFEFEF;
    --font-lexend: 'Lexend', sans-serif;
    --font-host: 'Host Grotesk', sans-serif;
}

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

body {
    font-family: var(--font-lexend);
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   Top Bar
   ============================================ */

.top-bar {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-text {
    font-size: 14px;
    line-height: 1.5;
}

.top-bar i {
    font-size: 16px;
}

@media (max-width: 991px) {
    .top-bar {
        font-size: 13px;
    }

    .top-bar-text {
        font-size: 13px;
    }
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 20px;
    font-weight: 600;
    color: #000 !important;
}

.navbar-nav .nav-link {
    margin-inline: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.02em;
    padding: 0.5rem 1.5rem;
    color: #000;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-cyan);
}

/* Enquire Button */
.btn-enquire {
    background: #3fddeb;
    color: white;
    border: none;
    padding: 10px 41px 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.57px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    /* margin-top: 20px; */
    position: relative;
    border: 1px solid;
}

.btn-enquire:hover {
    background: var(--primary-cyan-dark);
}

.btn-enquire .btn-icon {
    position: absolute;
    right: 3px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.btn-enquire .btn-icon i {
    font-size: 20px;
    color: #000;
}

@media (max-width: 991px) {
    .btn-enquire {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-section-about {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}



.hero-overlay {
    position: absolute;
    inset: 0;

}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 692px;
}

.hero-subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.hero-title {
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-title .text-cyan {
    color: var(--primary-cyan);
}

.hero-description {
    color: #fff;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 498px;
    letter-spacing: -0.03em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary Button */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-cyan);
    border: none;
    border-radius: 500px;
    padding: 10px 40px 10px 24px;
    position: relative;
    font-family: var(--font-lexend);
    font-weight: 500;
    font-size: 16px;
    color: #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: var(--primary-cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 221, 235, 0.3);
}

.btn-primary-custom .btn-icon {
    position: absolute;
    right: 8px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom .btn-icon i {
    font-size: 20px;
    color: #000;
}

/* Outline Button */
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 500px;
    padding: 10px 40px 10px 24px;
    position: relative;
    font-family: var(--font-lexend);
    font-weight: 500;
    font-size: 19px;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline-custom .btn-icon {
    position: absolute;
    right: 3px;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-custom .btn-icon i {
    font-size: 20px;
    color: #000;
}

/* Dark Outline Button */
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: 1px solid #0f0f0f;
    border-radius: 500px;
    padding: 10px 40px 10px 24px;
    position: relative;
    font-family: var(--font-lexend);
    font-weight: 500;
    font-size: 19px;
    color: #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-dark:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.btn-outline-dark .btn-icon {
    position: absolute;
    right: 3px;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-dark .btn-icon i {
    font-size: 18px;
    color: #000;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-outline-custom,
    .btn-outline-dark {
        width: 100%;
        justify-content: center;
    }
}

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

    .hero-subtitle,
    .hero-description {
        font-size: 16px;
    }

    .btn-primary-custom,
    .btn-outline-custom,
    .btn-outline-dark {
        font-size: 17px;
    }
}

/* ============================================
   Section Common Styles
   ============================================ */

.section-padding {
    padding: 80px 0;
}

.section-tag {
    color: var(--primary-cyan) !important;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-padding .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    font-weight: 400;
    color: #272727;
    line-height: 1.8;
    max-width: 894px;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }
}

/* ============================================
   About Section
   ============================================ */

.about-image img {
    width: 100%;
    max-width: 1190px;
    border-radius: 8px;
}

.stats-heading {
    font-size: 45px;
    font-weight: 500;
    color: #000;
    letter-spacing: -0.03em;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 64px;
    font-weight: 500;
    color: #000;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 19px;
    font-weight: 300;
    color: var(--gray-text);
    margin: 0;
}

@media (max-width: 991px) {
    .stats-heading {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 16px;
    }
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
    background: var(--dark-bg);
}

.service-card {
    background: var(--darker-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.service-image {
    height: 271px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 24px;
}

.service-title {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.service-description {
    font-size: 15px;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .service-image {
        height: 200px;
    }

    .service-title {
        font-size: 22px;
    }
}

/* Brand Logos */
.brand-logo {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 19px;
    padding: 16px 24px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-4px);
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================
   Work Section
   ============================================ */

.work-accordion-item {
    border: none;
    border-bottom: 1px solid var(--border-gray);
    background: transparent;
}

.work-accordion-button {
    background: transparent;
    border: none;
    padding: 10px 0;
    font-size: 22px;
    color: #848484;
    box-shadow: none;
    position: relative;
    padding-left: 40px;
}

.work-accordion-button:not(.collapsed) {
    background: transparent;
    color: #000;
    font-weight: 500;
    box-shadow: none;
}

.work-accordion-button:not(.collapsed)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 32px;
    background: var(--primary-cyan);
}

.work-accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
    border: 1px solid #C2C2C2;
    border-radius: 50%;
    padding: 10px;
}

.work-accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

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

.work-accordion-button:hover {
    color: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

.accordion-body {
    padding: 10px 3px;
}

.work-number {
    font-family: var(--font-lexend);
}

.work-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    padding-left: 40px;
}

.work-showcase img {
    border-radius: 8px;
}

.work-event-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.work-event-location {
    font-size: 14px;
    color: #000;
    margin: 0;
}

/* Portfolio Gallery */
.portfolio-gallery {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.portfolio-gallery .row {
    flex-wrap: nowrap;
}

.portfolio-image {
    border-radius: 12px;
    object-fit: cover;
    height: 235px;
    transition: transform 0.3s ease;
}

.portfolio-image:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .work-accordion-button {
        font-size: 20px;
    }

    .work-description {
        font-size: 16px;
    }

    .portfolio-image {
        height: 180px;
    }
}

/* ============================================
   Why Choose Section
   ============================================ */

.why-choose-section {
    background: #f9f9f9;
}

.feature-card {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    height: 248px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -88px;
    right: -40px;
    width: 173px;
    height: 173px;
    background: radial-gradient(circle, rgba(179, 249, 255, 0.38) 0%, rgba(63, 221, 235, 0) 100%);
    border-radius: 50%;
    opacity: 0.5;
}

.feature-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 66px;
    color: var(--primary-cyan);
}

.feature-check {
    position: absolute;
    top: 60px;
    left: 56px;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.feature-check i {
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

.feature-title {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .feature-card {
        height: auto;
        min-height: 200px;
    }

    .feature-title {
        font-size: 20px;
    }
}

/* ============================================
   CTA Section
   ============================================ */

.cta-box {
    background: #e9fdff;
    border-radius: 15px;
    padding: 80px 48px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-title {
    font-size: 45px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.cta-description {
    font-size: 18px;
    color: #000;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .cta-box {
        padding: 60px 32px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary-custom,
    .cta-buttons .btn-outline-dark {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--light-bg);
    padding: 80px 0 32px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 17px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 301px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-cyan-dark);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 18px;
}

.footer-heading {
    font-size: 17px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-cyan);
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: #000;
}

.contact-label {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 19px;
    font-weight: 300;
    color: #000;
    margin: 0;
    word-break: break-word;
}

.footer-bottom {
    border-top: 1px solid #DDDDDD;
    padding-top: 24px;
    margin-top: 48px;
}

.copyright {
    text-align: center;
    font-size: 17px;
    color: #a0a0a0;
    margin: 0;
    font-family: var(--font-host);
}

@media (max-width: 991px) {
    .footer {
        padding: 60px 0 24px;
    }

    .footer-brand {
        font-size: 20px;
    }

    .footer-description,
    .contact-value,
    .contact-label {
        font-size: 16px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

.text-cyan {
    color: var(--primary-cyan);
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeIn 0.6s ease-out;
}

/* rk css */
.hero-section {
    background: url('banner.jpg') center/cover no-repeat;
    height: 80vh;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

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

.nav-link {
    font-weight: 500;
}

.journey-section {
    background: #f9f9f9;
}

.journey-left h2 {
    font-size: 32px;
}

.stats h3 {
    font-size: 36px;
    margin-top: 20px;
}

.stats p {
    color: #666;
    margin-bottom: 10px;
}

.journey-right {
    position: relative;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.timeline-item h5 {
    font-weight: 600;
}

.timeline-item p {
    color: #555;
    max-width: 600px;
}

.dot {
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background: #17a2b8;
    border-radius: 50%;
}

.section-title {
    color: #00b4ff;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card-custom {
    background-color: #1a1f2e;
    border: none;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 180, 255, 0.2);
}

.icon-box {
    font-size: 32px;
    color: #00b4ff;
    margin-bottom: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.card-text {
    color: #bfc6d4;
    font-size: 14px;
    line-height: 1.6;
}

body {
    font-family: 'Segoe UI', sans-serif;
}

.cta-section {
    background: #f4f5f7;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-weight: 700;
}

.cta-section p {
    max-width: 600px;
    margin: 15px auto 30px;
    color: #555;
}

.btn-primary-custom {
    background: #1bb6d8;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
}

.btn-outline-custom {
    border: 2px solid #111;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
}

.footer {
    background: #eef0f3;
    padding: 60px 0 20px;
}

.footer h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer a {
    text-decoration: none;
    color: #333;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #3ad8e9;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid #ccc;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #666;
}



body {
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 50px auto;
    background: white;
    border: 1px solid #efefef;
    box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.form-section {
    background: #3fddeb;
    padding: 60px;
    min-height: 650px;
}

.info-section {
    padding: 55px;
    background: white;
}

.form-label {
    font-size: 17px;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    height: 44px;
    border: none;
    background: white;
    font-size: 15px;
}

textarea.form-control {
    height: 103px;
    resize: none;
}

.btn-enquire {
    background: #3fddeb;
    color: white;
    border: none;
    padding: 10px 41px 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.57px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    /* margin-top: 20px; */
    position: relative;
    border: 1px solid;
}

.btn-enquire:hover {
    background: #1a1a1a;
    color: white;
}

.btn-icon-circle {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 3px;
}

.btn-icon-circle i {
    color: #000;
    font-size: 20px;
}

.contact-title {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -1.08px;
    margin-bottom: 40px;
    color: #000;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 30px;
}

.icon-circle {
    width: 44px;
    height: 44px;
    background: #3fddeb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle i {
    color: #000;
    font-size: 20px;
}

.contact-info-content h6 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.6px;
    margin-bottom: 5px;
    color: #000;
}

.contact-info-content p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.54px;
    margin-bottom: 3px;
    color: #000;
}

.map-container {
    position: relative;
    width: 100%;
    height: 220px;
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #3fddeb;
    color: #000;
    border: none;
    padding: 10px 41px 10px 20px;
    border-radius: 500px;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: -0.57px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.btn-map:hover {
    background: #35cbd8;
    color: #000;
}

.btn-map .btn-icon-circle {
    background: white;
}

@media (max-width: 768px) {

    .form-section,
    .info-section {
        padding: 30px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-container {
        margin: 20px;
    }
}

.read-more {
    color: black;
}

.your-mission-vision .your-mission-vision-img {
    background-color: #3FDDEB;
    border: 1px solid #EBEBEB;
    box-shadow: 0px 4px 4px 0px #0000000A;
    padding: 8px;
    border-radius: 10px;
    width: fit-content;
    margin-bottom: 11px;
}

.your-mission-vision .your-mission-vision-img img{
    width: 30px;
}

.your-mission-vision h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.your-mission-vision p {
    font-size: 16px;
}

.services-section #fixedPosition {
    position: sticky;
    top: 40%;
    /* top: 8%; */
}

.services-section .leftNav {
    position: relative;
}

.services-section .leftNav .livespan .movLine {
    position: absolute;
    top: 0;
    left: -1px;
    width: 4px;
    content: '';
    background-color: #01519D;
    height: 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
    /* Smooth transition for movement */
}

.services-section .leftNav .livespan ul {
    padding-left: 20px;
    border-left: 1px solid #BCBCBC;
}

.services-section .leftNav .livespan ul li {
    color: #FFF;
    padding-block: 10px;
    cursor: pointer;
}

.services-section .leftNav .livespan ul li.active {
    font-weight: 700;
    color: black;
}

.services-section .rightside .rightside-inner .rightside-cntn p {
    font-size: 16px;
    color: #FFF;
    margin-block: 20px;
}

.services-section .rightside .rightside-inner .rightside-cntn {
    margin-bottom: 35px;
}

.services-section .services_header {
    margin-bottom: 45px;
    color: #01519D;
}

.services-section .rightside .rightside-inner .rightside-cntn h4 {
    color: #FFF;
    font-size: 22px;
}

.services-section .rightside .rightside-inner .rightside-cntn ul {
    list-style: disc;
    padding-left: 30px;
}

.services-section .rightside .rightside-inner .rightside-cntn ul li {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    margin-block: 10px;
}