/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

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

/* Font Variables */
:root {
    --font-poppins: "Poppins", sans-serif;
    --font-jakarta: "Plus Jakarta Sans", sans-serif;
    --font-manrope: "Manrope", sans-serif;
    --font-inter: "Inter", sans-serif;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-inter);
    padding-top: 0;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 37, 44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in;
}

.preloader-logo {
    max-width: 200px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Header Styles */
.main-header {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 89px;
    width: 100%;
    border-bottom: .5px solid #FFFFFF33;
    padding: 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.main-header.scrolled,
.main-header.sticky-active {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .nav-link,
.main-header.sticky-active .nav-link {
    color: #333;
}

.main-header.scrolled .nav-link:hover,
.main-header.sticky-active .nav-link:hover {
    color: #008080;
}

.main-header.scrolled .nav-link::after,
.main-header.sticky-active .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #036375;
    transition: width 0.3s ease;
}

.main-header.scrolled .nav-link:hover::after,
.main-header.sticky-active .nav-link:hover::after {
    width: 100%;
    background-color: #036375;
}

.main-header.scrolled .nav-link.active:hover::after,
.main-header.sticky-active .nav-link.active:hover::after {
    width: auto;
    right: 0;
    background-color: #05E5AC;
}

.main-header.scrolled .navbar-brand .alt-logo,
.main-header.sticky-active .navbar-brand .alt-logo {
    display: block;
}

.main-header.scrolled .navbar-brand .default-logo,
.main-header.sticky-active .navbar-brand .default-logo {
    display: none;
}


.main-header.scrolled .vision-logo-default,
.main-header.sticky-active .vision-logo-default {
    display: block !important;
    opacity: 1;
    visibility: visible;
    filter: brightness(0);
}

.main-header.scrolled .vision-logo-scrolled,
.main-header.sticky-active .vision-logo-scrolled {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

/* Glass Effect */
.glass-effect {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.top-bar {
    width: 100%;
    height: 4px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    flex: 1;
    gap: 30px;
    max-width: 100%;
}

/* Logo Styles */
.header-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand img {
    max-height: 32px;
    transition: all 0.3s ease;
}

.navbar-brand .alt-logo,
.navbar-brand .mobile-logo {
    display: none;
}

.navbar-brand .default-logo {
    display: block;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    position: relative;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-jakarta);
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: block;
}

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

.nav-link:hover {
    opacity: 0.8;
}

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

.nav-link.active:hover::after {
    width: auto;
    right: 0;
    background-color: #05E5AC;
}

.nav-link.active {
    color: #05E5AC;
    text-decoration: none;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #05E5AC;
}

/* Dropdown Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dropdown-icon {
    width: 10px;
    height: 10px;
    margin-left: 5px;
    margin-bottom: 5px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

.nav-item.dropdown.active .dropdown-icon {
    margin-top: 10px;
    transform: rotate(180deg);
}

.main-header.scrolled .dropdown-icon,
.main-header.sticky-active .dropdown-icon {
    filter: brightness(0);
    visibility: visible;
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    min-width: 250px;
    padding: 10px 0;
    margin-top: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);

}

.nav-item.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 15px;
    color: inherit;
    transition: color var(--transition-speed) ease;
    padding: .5rem 0;
    font-weight: 500;
    text-decoration: none;
    position: relative;

}

.dropdown-menu li a i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.dropdown-menu li:hover a,
.dropdown-menu li.active a {
    opacity: 0.5;
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.navbar-toggler-line {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    display: block;
}

.main-header.scrolled .navbar-toggler-line,
.main-header.sticky-active .navbar-toggler-line {
    background-color: #333;
}

.navbar-toggler.active .navbar-toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggler.active .navbar-toggler-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .navbar-toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-toggler.active .navbar-toggler-line:nth-child(4) {
    opacity: 0;
}

/* Right Side */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.header-button {
    display: flex;
    align-items: center;
}

.download-btn,
.btn-transparent-white-light {
    /* background: transparent; */
    background: linear-gradient(90deg, #056375 0%, #0AE5AC 100%);
    color: white;
    padding: 10px 26px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 300;
    font-style: normal;
    font-family: var(--font-manrope);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: 1px solid #0AE5AC;
}

.download-arrow-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: none;
    outline: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.download-btn::before,
.btn-transparent-white-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    z-index: 0;
}

.download-btn>*,
.btn-transparent-white-light>* {
    position: relative;
    z-index: 1;
}

.download-btn:active,
.btn-transparent-white-light:active {
    background: white;
    color: #036375;
    border: none;
    outline: none;
    transform: scale(0.95);
}

.download-btn:active::before,
.btn-transparent-white-light:active::before {
    width: 300px;
    height: 300px;
}

.download-btn:hover,
.btn-transparent-white-light:hover {
    background: white;
    color: #036375;
    border: none;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 99, 117, 0.3);
}

.download-btn:active,
.btn-transparent-white-light:active {
    background: white;
    color: #036375;
    border: none;
    outline: none;
}

.main-header.scrolled .download-btn,
.main-header.sticky-active .download-btn,
.main-header.scrolled .btn-transparent-white-light,
.main-header.sticky-active .btn-transparent-white-light {
    color: white;
    border-color: #0AE5AC;
}

.main-header.scrolled .download-btn:hover,
.main-header.sticky-active .download-btn:hover,
.main-header.scrolled .btn-transparent-white-light:hover,
.main-header.sticky-active .btn-transparent-white-light:hover {
    border-color: #333;
    color: white;
    background: #333;
}

.btn-rounded {
    border-radius: 25px;
}

.vision-logo {
    display: flex;
    align-items: center;
    opacity: 1;
    visibility: visible;
    position: relative;
}

.vision-logo img {
    max-height: 50px;
    width: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vision-logo-default {
    display: block;
}

.vision-logo-scrolled {
    display: none;
}

.vision-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    white-space: nowrap;
    padding: 8px 15px;
    border-radius: 8px;
}

.vision-arabic {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    direction: rtl;
}

.vision-english {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.vision-year {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 4px;
}

.year-digit {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.year-digit.special {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.vision-arabic-sub {
    font-size: 10px;
    direction: rtl;
    margin-bottom: 2px;
    opacity: 0.9;
}

.vision-english-sub {
    font-size: 8px;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .header-content {
        padding: 0 60px;
    }
}

@media (max-width: 1200px) {
    .header-content {
        padding: 0 40px;
        gap: 25px;
    }

    .navbar-nav {
        gap: 25px;
    }

    .nav-link {
        font-size: 13px;
    }

    .download-btn {
        padding: 10px 22px;
        font-size: 12px;
    }

    .vision-logo img {
        max-height: 45px;
    }
}

@media (max-width: 992px) {
    .header-content {
        padding: 0 30px;
        gap: 20px;
    }

    .navbar-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }

    .download-btn {
        padding: 9px 20px;
        font-size: 12px;
    }

    .vision-logo {
        display: none;
    }

    .navbar-brand img {
        max-height: 28px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .navbar-toggler {
        display: flex;
        order: 2;
        z-index: 1001;
    }

    .header-nav {
        order: 3;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header-nav.active {
        max-height: 500px;
        padding: 20px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        color: #333;
        padding: 15px 0;
        width: 100%;
        display: block;
        font-size: 15px;
    }

    .main-header.scrolled .nav-link,
    .main-header.sticky-active .nav-link {
        color: #333;
    }

    .nav-link.active {
        color: #05E5AC;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link:hover {
        color: #05E5AC;
        opacity: 1;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f5f5f5;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .nav-item.dropdown.active .dropdown-menu {
        max-height: 400px;
        padding: 10px 0 10px 20px;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu li a {
        color: #666;
        padding: 12px 0;
        font-size: 14px;
    }

    .dropdown-menu li a:hover {
        color: #05E5AC;
    }

    .header-right {
        order: 1;
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .download-btn {
        padding: 8px 16px;
        font-size: 11px;
        white-space: nowrap;
    }

    .download-arrow-icon {
        width: 12px;
        height: 12px;
    }

    .navbar-brand img {
        max-height: 26px;
    }

    .main-header.scrolled .navbar-toggler-line,
    .main-header.sticky-active .navbar-toggler-line {
        background-color: #333;
    }
}

@media (max-width: 640px) {
    .header-content {
        padding: 0 15px;
        gap: 10px;
    }

    .navbar-brand img {
        max-height: 24px;
    }

    .download-btn {
        padding: 8px 14px;
        font-size: 10px;
    }

    .download-arrow-icon {
        width: 10px;
        height: 10px;
    }

    .header-nav.active {
        padding: 15px;
    }

    .nav-link {
        padding: 12px 0;
        font-size: 14px;
    }

    .dropdown-menu li a {
        font-size: 13px;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 12px;
    }

    .navbar-brand img {
        max-height: 22px;
    }

    .download-btn {
        padding: 7px 12px;
        font-size: 9px;
    }

    .navbar-toggler {
        gap: 3px;
    }

    .navbar-toggler-line {
        width: 22px;
        height: 2px;
    }

    .header-nav.active {
        padding: 12px;
    }

    .nav-link {
        font-size: 13px;
        padding: 10px 0;
    }
}

/* Hero/Welcome Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.17) 0%, rgba(5, 99, 117, 0.72) 100%), url('../assets/png/home-banner.png') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-title {
    font-size: 90px;
    line-height: 76px;
    font-weight: 800;
    font-family: var(--font-manrope);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    font-style: normal;
    font-family: var(--font-manrope);
    line-height: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.carousel-arrow img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-arrow:hover img {
    opacity: 1;
}

/* Responsive Styles for Hero Section */
@media (max-width: 1400px) {
    .hero-content {
        padding: 0 50px;
    }

    .hero-title {
        font-size: 80px;
        line-height: 70px;
    }

    .hero-subtitle {
        font-size: 26px;
        line-height: 28px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 70px;
        line-height: 65px;
    }

    .hero-subtitle {
        font-size: 24px;
        line-height: 26px;
    }

    .carousel-arrow {
        width: 45px;
        height: 45px;
    }

    .carousel-arrow img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: 70vh;
        min-height: 450px;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 60px;
        line-height: 55px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 22px;
        line-height: 24px;
    }

    .hero-text {
        gap: 12px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 0 20px;
        gap: 15px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 50px;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 22px;
    }

    .hero-text {
        gap: 10px;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .carousel-arrow img {
        width: 16px;
        height: 16px;
    }

    /* Hide arrows on very small screens if needed */
    .carousel-arrow.left-arrow {
        display: none;
    }

    .carousel-arrow.right-arrow {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-section {
        height: 55vh;
        min-height: 350px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 20px;
    }

    .hero-text {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 50vh;
        min-height: 300px;
    }

    .hero-content {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 8px;
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 18px;
    }

    .hero-text {
        gap: 6px;
    }
}

@media (max-width: 360px) {
    .hero-section {
        height: 45vh;
        min-height: 280px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 16px;
    }
}

/* About Us Hero Section */
.about-us-hero-section {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 350px;
    overflow: hidden;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(5, 99, 117, 0.81) 100%),url('/assets/png/about-us-banner.png') center/cover;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* Service Page Hero Banner */
.service-hero-background {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(5, 99, 117, 0.81) 100%), url('/assets/png/service-banner.png') center/cover;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* Service Details Page Hero Banner */
.service-details-hero-background {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(5, 99, 117, 0.72) 100%),
    url('/assets/png/service-details-banner.jpg') center/cover;
    background-size: cover;
    /* background-position: center bottom; */
    /* background-repeat: no-repeat; */
}

/* Info Page Hero Banner */
.info-hero-background {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(5, 99, 117, 0.57) 100%), url('/assets/png/info-banner.jpg') center/cover;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* Contact Page Hero Banner */
.contact-hero-background {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.33) 0%, rgba(5, 99, 117, 0.74) 100%), url('/assets/png/contact-banner.jpg') center/cover;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.about-us-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-us-hero-text {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.about-us-hero-title {
    font-size: 90px;
    line-height: 76px;
    font-weight: 800;
    font-family: var(--font-manrope);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    color: #ffffff;
}

.about-us-hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    font-style: normal;
    font-family: var(--font-manrope);
    line-height: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    margin: 0;
}

/* About Us Hero Responsive Styles */
@media (max-width: 1400px) {
    .about-us-hero-content {
        padding: 0 50px;
    }

    .about-us-hero-title {
        font-size: 80px;
        line-height: 70px;
    }

    .about-us-hero-subtitle {
        font-size: 26px;
        line-height: 28px;
    }
}

@media (max-width: 1200px) {
    .about-us-hero-content {
        padding: 0 40px;
    }

    .about-us-hero-title {
        font-size: 70px;
        line-height: 65px;
    }

    .about-us-hero-subtitle {
        font-size: 24px;
        line-height: 26px;
    }
}

@media (max-width: 992px) {
    .about-us-hero-section {
        height: 70vh;
        min-height: 450px;
    }

    .about-us-hero-content {
        padding: 0 30px;
    }

    .about-us-hero-title {
        font-size: 60px;
        line-height: 55px;
        margin-bottom: 15px;
    }

    .about-us-hero-subtitle {
        font-size: 22px;
        line-height: 24px;
    }

    .about-us-hero-text {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .about-us-hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .about-us-hero-content {
        padding: 0 20px;
        gap: 15px;
    }

    .about-us-hero-title {
        font-size: 48px;
        line-height: 50px;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .about-us-hero-subtitle {
        font-size: 20px;
        line-height: 22px;
    }
}

@media (max-width: 640px) {
    .about-us-hero-section {
        height: 55vh;
        min-height: 350px;
    }

    .about-us-hero-content {
        padding: 0 15px;
    }

    .about-us-hero-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .about-us-hero-subtitle {
        font-size: 18px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .about-us-hero-section {
        height: 50vh;
        min-height: 300px;
    }

    .about-us-hero-content {
        padding: 0 12px;
    }

    .about-us-hero-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 8px;
        letter-spacing: 0;
    }

    .about-us-hero-subtitle {
        font-size: 16px;
        line-height: 18px;
    }
}

@media (max-width: 360px) {
    .about-us-hero-section {
        height: 45vh;
        min-height: 280px;
    }

    .about-us-hero-title {
        font-size: 24px;
        line-height: 28px;
    }

    .about-us-hero-subtitle {
        font-size: 14px;
        line-height: 16px;
    }
}

/* About Us Content Section */
.about-us-content-section {
    background: #FFFFFF;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-us-content-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    align-items: center;
    padding: 0;
}

.about-us-content-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 100px  50px 0px;
    width: 100%;
    box-sizing: border-box;
}

.about-us-content-heading {
    font-size: 40px;
    font-weight: 700;
    color: #056375;
    font-family: var(--font-manrope);
    margin: 0;
    line-height: 59.29px;
}

.about-us-content-subheading {
    font-size: 40px;
    font-weight: 300;
    color: #000000;
    font-family: var(--font-manrope);
    margin: 0;
    line-height: 44.47px;
}

.about-us-content-description {
    font-size: 20px;
    font-weight: 400;
    color: #737373;
    font-family: var(--font-manrope);
    line-height: 45px;
    margin: 0;
}

.about-us-content-button {
    background: #056375;
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-jakarta);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 8px;
    box-shadow: 0px 111px 31px 0px #8C8C8C00;
}

.about-us-content-button:hover {
    background: #04505d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 99, 117, 0.3);
}

.about-us-content-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    padding: 100px 0px 0px;
}

.about-us-content-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-us-content-image img,
.about-us-content-image-fallback,
.about-us-content-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-us-content-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-us-content-video {
    background: #000;
    position: relative;
    z-index: 2;
}

.about-us-content-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.about-us-content-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.about-us-content-play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* About Us Content Section Responsive Styles */
@media (max-width: 1200px) {
    .about-us-content-section {
        padding: 80px 30px;
    }

    .about-us-content-container {
        gap: 40px;
    }

    .about-us-content-heading {
        font-size: 56px;
    }

    .about-us-content-subheading {
        font-size: 28px;
    }

    .about-us-content-description {
        font-size: 16px;
    }

    .about-us-content-image-wrapper {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .about-us-content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-us-content-image-wrapper {
        min-height: 400px;
        order: -1;
    }

    .about-us-content-heading {
        font-size: 48px;
    }

    .about-us-content-subheading {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .about-us-content-section {
        padding: 60px 20px;
    }

    .about-us-content-heading {
        font-size: 40px;
    }

    .about-us-content-subheading {
        font-size: 22px;
    }

    .about-us-content-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .about-us-content-image-wrapper {
        min-height: 350px;
    }

    .about-us-content-play-button svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .about-us-content-section {
        padding: 40px 15px;
    }

    .about-us-content-heading {
        font-size: 32px;
    }

    .about-us-content-subheading {
        font-size: 20px;
    }

    .about-us-content-description {
        font-size: 14px;
    }

    .about-us-content-button {
        padding: 14px 32px;
        font-size: 14px;
    }

    .about-us-content-image-wrapper {
        min-height: 300px;
    }

    .about-us-content-play-button svg {
        width: 40px;
        height: 40px;
    }
}

/* Main Content Section */
.main-content {
    background: #F4F4F4;
    padding: 60px 40px;
    position: relative;
    z-index: 3;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 0 auto;
}



.about-section {
    max-width: 1280px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 150px;
    padding: 50px 40px 40px 40px;
    margin-top: -125px;
    margin-left: 50px;
    position: relative;
    z-index: 10;
    background: white;
    border-radius: 60px 60px 0 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    color: #666;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.about-tag span {
    font-size: 14px;
    font-weight: 700;
    color: #056375;
    font-family: var(--font-jakarta);
}

.play-icon {
    font-size: 10px;
    color: #666;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-heading {
    font-size: 60px;
    font-weight: 700;
    font-family: var(--font-jakarta);
    color: #1C1C1C;
    line-height: 100%;
    letter-spacing: -1px;
}

.about-heading-accent {
    font-size: 60px;
    font-weight: 700;
    font-family: var(--font-jakarta);
    color: #056375;
    line-height: 100%;
    letter-spacing: -1px;
}

.about-description {
    font-size: 18px;
    font-family: var(--font-inter);
    color: #959595;
    line-height: 30px;
    margin-top: 10px;
    max-width: 550px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btn-primary {
    background: #056375;
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-jakarta);
    cursor: pointer;
    line-height: 100%;
    transition: all 0.3s;
    box-shadow: 0px 4px 10px 0px #8C8C8C1A;


}

.btn-primary:hover {
    background: #006666;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

.btn-secondary {
    background: #FFFFFF;
    color: #1C1C1C;
    border: 1px solid #056375;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-jakarta);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    line-height: 100%;
    box-shadow: 0px 4px 10px 0px #8C8C8C1A;

}

.btn-secondary:hover {
    border-color: #008080;
    color: #008080;
    transform: translateY(-2px);
}

.play-icon-small {
    font-size: 12px;
    color: #333;
}

.btn-secondary:hover .play-icon-small {
    color: #008080;
}

/* About Image Container */
.about-image-container {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* margin-top: -125px; */
    position: relative;
    z-index: 10;
    padding-right: 40px;
}

.image-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    width: 100%;
    max-width: 500px;
}

.collage-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.collage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1 {
    grid-column: 1;
    grid-row: 1;
}

.img-2 {
    grid-column: 2;
    grid-row: 1;
}

.img-3 {
    grid-column: 1;
    grid-row: 2;
}

.img-4 {
    grid-column: 2;
    grid-row: 2;
}


.arrow-icon,
.location-pin {
    position: absolute;
    /* z-index: 3; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.airplane-icon-1 {

    position: absolute;
}

.airplane-icon {
    position: absolute;
    /* z-index: 3; */
    display: flex;
    align-items: center;
    justify-content: center;
    left: -50% !important;
}

.airplane-top-left {
    top: -30%;
    left: 60%;
}

.airplane-top-right {
    top: -20%;
    left: -6% !important;
    transform: translateX(10px);
}

.airplane-top-right .curve-top {
    width: auto;
    height: auto;

}

.aeroplane-2 {
    position: absolute;
    right: 30%;
    bottom: 100%;
}

.arrow-top-right {
    top: -25%;
    left: 32%;
    z-index: 4;
}

.arrow-top-right img {
    width: auto;
    height: auto;
}

.location-bottom-left {
    bottom: -35%;
    left: 50%;
    transform: translateX(-50%);
}

.location-bottom-right {
    bottom: -5%;
    right: -15%;
}

/* About Brief Section */
.about-brief-section {
    background: #FFFFFF;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.about-brief-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-brief-header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    gap: 10px;
    /* margin-bottom: 60px; */
}

.about-brief-title {
    font-size: 50px;
    font-weight: 600;
    color: #14183E;
    font-family: var(--font-inter);
    /* margin-bottom: 20px; */
    letter-spacing: -1px;
    line-height: 100%;
}

.about-brief-description {
    font-size: 18px;
    line-height: 28px;
    color: #959595;
    font-family: var(--font-inter);
    max-width: 850px;
    font-weight: 300;
    /* margin: 0 auto; */
    /* line-height: 30px; */
}

.about-brief-description-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.about-brief-image {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
    margin-top: 80px;
    gap: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #FDFDFD;
    border-radius: 30px;
    padding: 40px;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    text-align: center;
}

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

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 60px;
    height: 60px;
}

.service-title {
    font-size: 34px;
    font-weight: 600;
    color: #000000;
    font-family: var(--font-manrope);
    margin-bottom: 16px;
    line-height: 32px;
}

.service-description {
    font-size: 16px;
    line-height: 24px;
    color: #959595;
    font-weight: 400;
    font-family: var(--font-inter);
    margin: 0;
    line-height: 28px;
}



/* Explore Section */
.explore-section {
    position: relative;
    width: 100%;
    height: 51.2vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explore-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.17) 0%, rgba(5, 5, 5, 0.72) 100%), url('../assets/png/explore.jpg') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Service Details Page Explore Section Background */
.service-details-explore-background {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.17) 0%, rgba(5, 5, 5, 0.72) 100%), url('/assets/png/explore-banner-2.png') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.explore-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    /* max-width: 1200px; */
    margin: 0 auto;
    gap: 30px;
}

.explore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: #0AE5AC;
    color: #000000;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-manrope);
    cursor: pointer;
    line-height: 26px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 229, 172, 0.3);
}

.explore-button:hover {
    background: #04d19a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 229, 172, 0.4);
}

.explore-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.explore-button span {
    white-space: nowrap;
}

.explore-title {
    font-size: 54px;
    font-weight: 700;
    color: white;
    font-family: var(--font-poppins);
    /* line-height: 76px; */
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* letter-spacing: -1px; */

}

.explore-subtitle {
    font-size: 22px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: var(--font-manrope);
    line-height: 32px;
    margin: 0;
    max-width: 800px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles for Main Content Section */
@media (max-width: 1400px) {
    .main-content {
        padding: 60px 30px;
        gap: 40px;
    }

    .about-section {
        gap: 100px;
        margin-left: 30px;
        padding: 50px 30px 40px 30px;
    }

    .about-heading,
    .about-heading-accent {
        font-size: 50px;
    }
}

@media (max-width: 1200px) {
    .main-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }

    .about-section {
        flex-direction: column;
        gap: 40px;
        max-width: 100% !important;
        margin-left: 0;
        margin-top: -80px;
        padding: 40px 30px;
        align-items: flex-start;
    }

    .about-content {
        width: 100%;
    }

    .about-image-container {
        width: 100%;
        margin-top: 0;
        padding-right: 0;
    }

    .image-collage {
        max-width: 100%;
    }

    .about-heading,
    .about-heading-accent {
        font-size: 48px;
    }

    .about-description {
        max-width: 100%;
    }
}

@media (max-width: 968px) {
    .main-content {
        padding: 30px 20px;
    }

    .about-section {
        margin-top: -60px;
        padding: 30px 20px;
        border-radius: 40px 40px 0 0;
    }

    .about-heading,
    .about-heading-accent {
        font-size: 40px;
        line-height: 110%;
    }

    .about-description {
        font-size: 16px;
        line-height: 28px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .image-collage {
        gap: 15px;
        padding: 15px;
    }

    /* Hide decorative elements on smaller screens */
    .airplane-icon-1,
    .airplane-icon,
    .arrow-icon,
    .location-pin {
        display: none;
    }
}

@media (max-width: 640px) {
    .main-content {
        padding: 20px 15px;
    }

    .about-section {
        margin-top: -40px;
        padding: 25px 15px;
        border-radius: 30px 30px 0 0;
        gap: 25px;
    }

    .about-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .about-heading,
    .about-heading-accent {
        font-size: 32px;
        line-height: 110%;
    }

    .about-description {
        font-size: 15px;
        line-height: 26px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 13px;
    }

    .image-collage {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }

    .img-1,
    .img-2,
    .img-3,
    .img-4 {
        grid-column: 1;
    }

    .img-1 {
        grid-row: 1;
    }

    .img-2 {
        grid-row: 2;
    }

    .img-3 {
        grid-row: 3;
    }

    .img-4 {
        grid-row: 4;
    }
}

@media (max-width: 480px) {

    .about-heading,
    .about-heading-accent {
        font-size: 28px;
    }

    .about-description {
        font-size: 14px;
        line-height: 24px;
    }

    .image-collage {
        gap: 10px;
        padding: 10px;
    }
}

/* Responsive Styles for About Brief Section */
@media (max-width: 992px) {
    .about-brief-section {
        padding: 60px 30px;
    }

    .about-brief-title {
        font-size: 40px;
    }

    .about-brief-description {
        font-size: 16px;
        line-height: 26px;
    }

    .services-grid {
        gap: 25px;
    }

    .service-card {
        padding: 30px;
    }

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

    .service-description {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .about-brief-section {
        padding: 50px 20px;
    }

    .about-brief-header {
        margin-bottom: 40px;
    }

    .about-brief-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-icon svg {
        width: 50px;
        height: 50px;
    }

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

    .service-description {
        font-size: 14px;
        line-height: 22px;
    }


}

@media (max-width: 480px) {
    .about-brief-section {
        padding: 40px 15px;
    }

    .about-brief-title {
        font-size: 28px;
    }

    .about-brief-description {
        font-size: 14px;
        line-height: 22px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon svg {
        width: 45px;
        height: 45px;
    }

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

    .service-description {
        font-size: 13px;
        line-height: 20px;
    }
}

/* Responsive Styles for Explore Section */
@media (max-width: 1400px) {
    .explore-title {
        font-size: 64px;
    }

    .explore-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .explore-section {
        height: 70vh;
        min-height: 550px;
    }

    .explore-title {
        font-size: 56px;
    }

    .explore-subtitle {
        font-size: 19px;
    }

    .explore-button {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .explore-section {
        height: 65vh;
        min-height: 500px;
    }

    .explore-content {
        padding: 0 30px;
        gap: 25px;
    }

    .explore-title {
        font-size: 48px;
    }

    .explore-subtitle {
        font-size: 18px;
        max-width: 700px;
    }

    .explore-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .explore-button svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .explore-section {
        height: 60vh;
        min-height: 450px;
    }

    .explore-content {
        padding: 0 20px;
        gap: 20px;
    }

    .explore-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .explore-subtitle {
        font-size: 16px;
        line-height: 1.4;
        max-width: 600px;
    }

    .explore-button {
        padding: 10px 20px;
        font-size: 13px;
        gap: 8px;
    }

    .explore-button svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 640px) {
    .explore-section {
        height: 55vh;
        min-height: 400px;
    }

    .explore-content {
        padding: 0 15px;
        gap: 18px;
    }

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

    .explore-subtitle {
        font-size: 14px;
        max-width: 100%;
    }

    .explore-button {
        padding: 10px 18px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .explore-section {
        height: 50vh;
        min-height: 350px;
    }

    .explore-content {
        gap: 15px;
    }

    .explore-title {
        font-size: 24px;
    }
}

/* About Travelers Section */
.about-travelers-section {
    background: #FFFFFF;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.about-travelers-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    align-items: start;
}

.about-travelers-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 100px 0px 0px 50px;
    width: 100%;
    box-sizing: border-box;
}

.about-travelers-heading-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-travelers-heading {
    font-size: 20px;
    font-weight: 400;
    color: #056375;
    font-family: var(--font-manrope);
    margin: 0;
    line-height: 1.2;
}

.about-travelers-main-heading {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    font-family: var(--font-manrope);
    margin: 0;
    margin-top: -8px;
    line-height: 59.29px;
}

.about-travelers-sub-heading {
    font-size: 40px;
    font-weight: 300;
    color: #000000;
    font-family: var(--font-manrope);
    margin: 0;
    line-height: 44.47px;
}

.about-travelers-description {
    font-size: 20px;
    font-weight: 400;
    color: #737373;
    font-family: var(--font-manrope);
    line-height: 40px;
    margin: 0;
}

.about-travelers-cta-button {
    background: #056375;
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-jakarta);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 8px;
    box-shadow: 0px 111px 31px 0px #8C8C8C00;
}

.about-travelers-cta-button:hover {
    background: #04505d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 99, 117, 0.3);
}

.about-travelers-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.about-travelers-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    flex-shrink: 0;
}

.about-travelers-image img,
.about-travelers-image-fallback,
.about-travelers-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-travelers-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-travelers-video {
    background: #000;
    position: relative;
    z-index: 2;
}

.about-travelers-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.about-travelers-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.about-travelers-play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Responsive Design for About Travelers Section */
@media (max-width: 1200px) {
    .about-travelers-section {
        padding: 80px 30px;
    }

    .about-travelers-container {
        gap: 40px;
    }

    .about-travelers-main-heading {
        font-size: 56px;
    }

    .about-travelers-sub-heading {
        font-size: 28px;
    }

    .about-travelers-description {
        font-size: 16px;
    }

    .about-travelers-image-wrapper {
        padding-top: 80px;
    }
    
    .about-travelers-image {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .about-travelers-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-travelers-image-wrapper {
        order: -1;
        padding-top: 0;
    }
    
    .about-travelers-image {
        height: 400px;
    }

    .about-travelers-main-heading {
        font-size: 48px;
    }

    .about-travelers-sub-heading {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .about-travelers-section {
        padding: 60px 20px;
    }

    .about-travelers-main-heading {
        font-size: 40px;
    }

    .about-travelers-sub-heading {
        font-size: 22px;
    }

    .about-travelers-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .about-travelers-image-wrapper {
        padding-top: 0;
    }
    
    .about-travelers-image {
        height: 350px;
    }

    .about-travelers-play-button svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .about-travelers-section {
        padding: 40px 15px;
    }

    .about-travelers-main-heading {
        font-size: 32px;
    }

    .about-travelers-sub-heading {
        font-size: 20px;
    }

    .about-travelers-description {
        font-size: 14px;
    }

    .about-travelers-cta-button {
        padding: 14px 32px;
        font-size: 14px;
    }

    .about-travelers-image {
        height: 300px;
    }

    .about-travelers-play-button svg {
        width: 40px;
        height: 40px;
    }
}

/* Travel Points Section */
.travel-points-section {
    background: #f4f4f4;
    /* padding: 100px 40px; */
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.travel-points-container {
    max-width: 1400px;
    /* margin: 0 auto; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.travel-points-visual {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.travel-points-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.travel-points-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.travel-points-bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #F5F5F5;
}

.travel-points-bg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #05E5AC;
}

.travel-points-blur-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.blur-circle.circle-1 {
    width: 150px;
    height: 150px;
    background: #05E5AC;
    top: 10%;
    left: 20%;
}

.blur-circle.circle-2 {
    width: 120px;
    height: 120px;
    background: #056373;
    top: 60%;
    right: 15%;
}

.blur-circle.circle-3 {
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    top: 30%;
    right: 30%;
}

.blur-circle.circle-4 {
    width: 80px;
    height: 80px;
    background: #05E5AC;
    bottom: 20%;
    left: 10%;
}

.travel-points-traveller {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.travel-points-content {
    padding: 40px;
    background: #f4f4f4;
}

.travel-points-header {
    margin-bottom: 20px;
}

.travel-points-label {
    font-size: 22px;
    font-weight: 600;
    color: #056375;
    font-family: var(--font-jakarta);
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 100%;
}

.travel-points-headline {
    font-size: 42px;
    font-weight: 600;
    color: #000000;
    font-family: var(--font-jakarta);
    margin: 0 0 24px 0;
    line-height: 100%;
}

.travel-points-description {
    font-size: 16px;
    font-weight: 400;
    color: #A8A8A8;
    font-family: var(--font-jakarta);
    line-height: 30px;
    margin: 0 0 40px 0;
}

.travel-points-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.travel-points-stat-box {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-points-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 34px;
    font-weight: 600;
    color: #056375;
    font-family: var(--font-jakarta);
    margin-bottom: 8px;
    line-height: 30px;
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    color: #A8A8A8;
    font-family: var(--font-jakarta);
    line-height: 30px;

}

/* Responsive Design for Travel Points Section */
@media (max-width: 1200px) {
    .travel-points-section {
        padding: 80px 30px;
    }

    .travel-points-container {
        gap: 40px;
    }

    .travel-points-headline {
        font-size: 40px;
    }

    .travel-points-visual {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .travel-points-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .travel-points-visual {
        min-height: 400px;
        order: -1;
    }

    .travel-points-headline {
        font-size: 36px;
    }

    .travel-points-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .travel-points-section {
        padding: 60px 20px;
    }

    .travel-points-headline {
        font-size: 32px;
    }

    .travel-points-description {
        font-size: 15px;
    }

    .travel-points-visual {
        min-height: 350px;
    }

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

@media (max-width: 480px) {
    .explore-title {
        font-size: 24px;
        letter-spacing: 0;
    }

    .explore-subtitle {
        font-size: 13px;
        line-height: 1.3;
    }

    .explore-button {
        padding: 9px 16px;
        font-size: 11px;
        gap: 6px;
    }

    .explore-button svg {
        width: 14px;
        height: 14px;
    }
}

/* Services List Section */
#services-list-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 100px;
    width: 100%;
}

.services-list-section {
    background: #F4F4F4;
    padding: 80px 40px;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    max-width: 100%;
    overflow-y: hidden !important;
    box-sizing: border-box;
}

.services-list-container {
    max-width: 1400px;
    margin: 0 auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.services-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.services-list-title-wrapper {
    flex: 1;
    min-width: 300px;
}

.services-list-main-title {
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    font-family: var(--font-manrope);
    margin-bottom: 12px;
    letter-spacing: -1px;
    list-style: 82.66px;
}

.services-list-subtitle-text {
    font-size: 20px;
    color: #666;
    font-family: var(--font-manrope);
    font-weight: 400;
    margin: 0;
    line-height: 34.81px;
}

.services-list-filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.services-filter-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #0AE5AC;
    color: #056375;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-manrope);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 23.93px;
}

.services-filter-button:hover {
    background: #04d19a;
    transform: translateY(-2px);
}

.services-filter-icon {
    width: 12px;
    height: 12px;
    filter: brightness(0);
    opacity: 0.8;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    visibility: visible;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.services-list-card {
    background: white;
    border-radius: 26px;
    overflow: hidden;
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: space-between !important;
    flex-direction: column;
    min-height: 250px;
    height: auto;
    max-height: none;
}

.services-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.services-list-card-image-wrapper {
    width: 100%;
    padding: 25px 10px 10px 10px;
    min-height: 150px;
    max-height: 150px;
    overflow: hidden;
    border-radius: 25px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.services-list-card-image-wrapper img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.services-list-card-body {
    width: 100%;
    padding: 20px 20px 20px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 0;
    box-sizing: border-box;
}

.services-list-card-body>div {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 10px;
    position: relative;
    padding-left: 0;
}

.services-list-card-heading {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    font-family: var(--font-manrope);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-align: start;
}

.services-list-card-text {
    font-size: 14px;
    color: #666;
    font-family: var(--font-manrope);
    font-weight: 300;
    line-height: 23px;
    margin: 0;
    flex: 1;
    max-width: 25ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: start !important;
}

.services-list-card-arrow-btn {
    position: absolute;
    top: -5px;
    right: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #056373;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
    z-index: 10;
}

.services-list-card-arrow-btn:hover {
    background: #04505d;
    transform: scale(1.1);
}

.services-list-card-arrow-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.services-list-cta-card {
    background: #056375;
    border-radius: 16px;
    padding: 10px 10px 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: start;
    /* min-height: 200px; */
}

.services-list-cta-title {
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: var(--font-manrope);
    margin-bottom: 30px;
    line-height: 34px;
}

.services-list-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 95%;
    padding: 14px 28px;
    background: #0AE5AC;
    color: #056375;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-manrope);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 23px;

}

.services-list-cta-button:hover {
    background: #04d19a;
    transform: translateY(-2px);
}

/* .services-list-cta-button img {
    width: 18px;
    height: 18px;
    filter: brightness(0);
} */

/* Responsive Styles for Services List Section */
@media (max-width: 1400px) {
    .services-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .services-list-section {
        padding: 60px 30px;
    }

    .services-list-main-title {
        font-size: 40px;
    }

    .services-list-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-list-filter-buttons {
        width: 100%;
    }
}

@media (min-width: 969px) and (max-width: 1200px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .services-list-section {
        padding: 60px 20px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .services-list-container {
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .services-list-title-wrapper {
        min-width: auto;
        width: 100%;
        box-sizing: border-box;
    }

    .services-list-header {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    .services-list-grid {
        width: 100%;
        box-sizing: border-box;
    }

    .main-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 992px) {
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-list-cta-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .services-list-section {
        padding: 50px 20px;
    }

    .services-list-main-title {
        font-size: 32px;
    }

    .services-list-subtitle-text {
        font-size: 16px;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .services-list-cta-card {
        padding: 30px;
        min-height: auto;
    }

    .services-list-cta-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .services-filter-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services-list-section {
        padding: 40px 15px;
    }

    .services-list-main-title {
        font-size: 28px;
    }

    .services-list-subtitle-text {
        font-size: 14px;
    }

    .services-list-card-body {
        padding: 15px;
        padding-bottom: 20px;
        box-sizing: border-box;
    }
    
    .services-list-card-image-wrapper {
        min-height: 120px;
        max-height: 120px;
    }

    .services-list-card-heading {
        font-size: 14px;
    }

    .services-list-card-text {
        font-size: 13px;
    }

    .services-list-cta-title {
        font-size: 20px;
    }

    .services-list-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

.testimonial-section {
    padding: 64px 24px;
    min-height: auto;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Decorative springs SVG */
.testimonial-springs {
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 0;
    width: auto;
    height: auto;
}

.container {
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    padding-left: 20px;
    padding-right: 50px;
}

@media (min-width: 768px) {
    .testimonial-section {
        padding: 96px 24px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr 2fr;
        gap: 48px;
    }
}

/* Header Section */
.testimonial-header {
    display: flex;
    flex-direction: column;
}

.testimonial-label {
    font-size: 16px;
    color: #5E6282;
    margin-bottom: 16px;
    font-weight: 500;
    font-family: var(--font-inter);
    line-height: 100%;
}

.testimonial-title {
    font-size: 40px;
    font-weight: 600;
    color: #14183E;
    line-height: 100%;
    margin-bottom: 32px;
    font-family: var(--font-inter);
}

@media (min-width: 768px) {
    .testimonial-title {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .testimonial-title {
        font-size: 60px;
    }
}

/* Navigation Dots */
.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    height: 12px;
    width: 12px;
    border-radius: 9999px;
    background-color: #e2e8f0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: #cbd5e0;
}

.dot.active {
    width: 32px;
    background-color: #0AE5AC;
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
}

.testimonial-wrapper {
    position: relative;
    min-height: 350px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

.testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonial-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

/* Avatar */
.avatar-container {
    position: relative;
    flex-shrink: 0;
}

.avatar-glow {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background-color: rgba(10, 229, 172, 0.3);
    filter: blur(12px);
}

.avatar-ring {
    position: relative;
    border-radius: 9999px;
    padding: 6px;
    /* background-color: rgba(94, 234, 212, 0.2); */
    border: 2px solid #0AE5AC;
    display: flex;
    align-items: center;
    justify-content: center;

}

.avatar-image {
    width: 96px;
    height: 96px;
    border-radius: 9999px;
    border: 4px solid #fafafa;
    object-fit: cover;
}

@media (min-width: 768px) {
    .avatar-image {
        width: 128px;
        height: 128px;
    }
}

/* Quote Container */
.quote-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: flex-start;
}

.quote-box {
    position: relative;
    border-radius: 24px;
    background-color: #ffffff;
    padding: 32px;
    box-shadow: 0px 128.97px 103.18px 0px #0000000e;
    width: 100%;
}

@media (min-width: 768px) {
    .quote-box {
        padding: 48px;
    }
}

.quote-text {
    font-size: 26px;
    color: #5E6282;
    line-height:41.27px;
    margin: 0;
    font-family: var(--font-poppins);
    font-weight: 400;
}

@media (min-width: 768px) {
    .quote-text {
        font-size: 20px;
    }
}

/* Author Info */
.author-info {
    text-align: left;
    border-bottom: 2.58px solid #F7F7F7;
    border-left: 2.58px solid #F7F7F7;
    border-right: 2.58px solid #F7F7F7;
    padding: 16px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    width: 90%;
    margin-left: 30px;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.author-name {
    font-family: var(--font-poppins);
    font-size: 20px;
    font-weight: 500;
    color: #056375;
    margin-bottom: 4px;
    line-height: 100%;
}

.author-role {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color:#5E6282;
}

/* Navigation Arrows */
.nav-arrows {
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-btn {
    height: 48px;
    width: 48px;
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background-color: transparent;
}

.nav-btn svg {
    color: #718096;
    width: 20px;
    height: 20px;
}

.nav-btn.prev-btn.active svg,
.nav-btn.next-btn.active svg {
    color: #0AE5AC;
}

@media (max-width: 767px) {
    .nav-arrows {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 24px;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.newsletter-container {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0;
    align-items: stretch;
    min-height: 400px;
    height: auto;
}

.newsletter-promo {
    background: #0AE5AC;
    position: relative;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
}

.newsletter-promo-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 1;
}

.newsletter-promo-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.newsletter-main-heading {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-inter);
    margin: 0 0 24px 0;
}

.newsletter-sub-text {
    font-size: 14px;
    font-weight: 300;
    color: #056375;
    font-family: var(--font-inter);
    line-height: 28.13px;
    margin: 0 0 16px 0;
}



.newsletter-sub-text-2 {
    font-size: 16px;
    font-weight: 300;
    color: #056375;
    font-family: var(--font-inter);
    line-height:33.75px;
    margin: 0 0 5px 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.newsletter-input-wrapper {
    flex: 1;
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-envelope-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.newsletter-email-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: var(--font-inter);
    color: #39425D;
    background: transparent;
}

.newsletter-email-input::placeholder {
    color:  #39425D;
}

.newsletter-subscribe-btn {
    background:#056375;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-inter);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-subscribe-btn:hover {
    background: #04505d;
    transform: translateY(-2px);
}

.newsletter-cityscape {
    position: relative;
    width: 100%;
    height: 100%;
    /* min-height: 400px; */
    overflow: hidden;
}

.newsletter-cityscape-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-cityscape-image .cityscape-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design for Newsletter Section */
@media (max-width: 1200px) {
    .newsletter-promo {
        padding: 60px 40px;
    }

    .newsletter-main-heading {
        font-size: 40px;
    }

    .newsletter-chat-widget {
        right: 20px;
        max-width: 280px;
        padding: 24px;
    }
}

@media (max-width: 992px) {
    .newsletter-container {
        grid-template-columns: 1fr;
    }

    .newsletter-cityscape {
        min-height: 400px;
        order: -1;
    }

    .newsletter-chat-widget {
        position: static;
        transform: none;
        margin: -60px auto 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .newsletter-promo {
        padding: 50px 30px;
    }

    .newsletter-main-heading {
        font-size: 32px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-subscribe-btn {
        width: 100%;
    }

    .newsletter-chat-widget {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .newsletter-promo {
        padding: 40px 20px;
    }

    .newsletter-main-heading {
        font-size: 28px;
    }

    .newsletter-sub-text,
    .newsletter-sub-text-2 {
        font-size: 14px;
    }
}

/* Footer Styles */
.main-footer {
    background: #036375;
    width: 100%;
}

/* Footer Top Bar */
.footer-top-bar {
    background: #036375;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;

}

.footer-top-content {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #0AE5AC;
    padding-bottom: 20px;

}

.footer-contact-text {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    font-family: var(--font-inter);
    list-style: 37.5px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.follow-us-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    font-family: var(--font-inter);
    line-height: 31.88px;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background:#0AE5AC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border:1px solid #575756;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Footer Main Content */
.footer-main-content {
    padding: 30px 60px 0px 10px;
    background: #036375;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: var(--font-inter);
    line-height: 30px;
}

/* Contact Column */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-logo .footer-logo-bizguide {
    height: 40px;
    margin-top: 15px;
}

.footer-logo .footer-vision-logo {
    height: 60px;
    width: 180px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-poppins);
}

.footer-contact-info {
    margin-bottom: 24px;
}

.footer-location-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: var(--font-inter);
    line-height: 28.13px;
}

.footer-location {
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 28.13px;
    margin-bottom: 16px;
    font-family: var(--font-inter);

}

.footer-phone,
.footer-email {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-vision-logo {
    margin-top: 16px;
}

.footer-vision-logo img {
    max-height: 60px;
    width: auto;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-size: 14px;
    font-weight: 400;
    color:#FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-inter);
    line-height: 28.13px;
}

.footer-links a:hover {
    color: #0AE5AC;
}

/* Help Column */
.footer-help-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.footer-help-item:last-child {
    margin-bottom: 0;
}

.footer-help-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.footer-help-content {
    flex: 1;
}

.footer-help-title {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: var(--font-manrope);
    list-style: 26px;
}

.footer-help-phone {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-manrope);
    margin: 0;
    line-height: 32px;
}

.footer-help-titles {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    /* margin-bottom: 8px; */
    font-family: var(--font-manrope);
    line-height: 32px;
}
.footer-help-description {
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 18px;
    margin: 0;
    font-family: var(--font-manrope);
    text-align: start;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background: #036375;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 300;
    color: #FFFFFF;
    font-family: var(--font-inter);
    line-height: 28.13px;
}

.footer-policies {
    font-size: 14px;
    font-weight: 300;
    color: #FFFFFF;
    font-family: var(--font-inter);
    line-height: 28.13px;
}

.footer-policies a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 300;
    font-family: var(--font-inter);
    line-height: 28.13px;
}

.footer-policies a:hover {
    color: #0AE5AC;
}

.footer-scroll-top {
    display: flex;
    align-items: end;
    justify-content: end;
    border: none;
    outline: none;
    padding: 0;
    border-radius: 50% !important;
    cursor: pointer;
    /* background-color: aqua; */
}

.footer-scroll-top img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                filter 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(10px);
    will-change: transform, opacity;
    cursor: pointer;
}

.footer-scroll-top img.show {
    opacity: 1;
    visibility: visible;
    animation: scrollTopAppear 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               scrollTopPulse 2s ease-in-out infinite 0.5s;
}

.footer-scroll-top img.show:hover {
    animation: scrollTopAppear 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform: scale(1.15) translateY(-8px);
    filter: brightness(1.3);
}

.footer-scroll-top img.show:active {
    animation: scrollTopBounce 0.6s ease;
    transform: scale(0.9) translateY(0);
}

/* Scroll Top Button Animations */
@keyframes scrollTopAppear {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: scale(0.8) translateY(10px);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: scale(1) translateY(0);
    }
}

@keyframes scrollTopPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-3px);
    }
}

@keyframes scrollTopBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-8px) scale(1.05);
    }
    60% {
        transform: translateY(-4px) scale(1.02);
    }
}



/* Footer Responsive Design */
@media (max-width: 1200px) {
    .footer-top-content,
    .footer-container,
    .footer-bottom-content {
        padding: 0 60px;
    }

    .footer-container {
        grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-help-item {
        margin-bottom: 24px;
    }

    .footer-help-phone {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .footer-top-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-top-content,
    .footer-container,
    .footer-bottom-content {
        padding: 0 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-main-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .footer-top-content,
    .footer-container,
    .footer-bottom-content {
        padding: 0 20px;
    }

    .footer-main-content {
        padding: 30px 0;
    }

    .footer-help-phone {
        font-size: 20px;
    }
}

/* Service Details Section */
.service-details-section {
    background: #F4F4F4;
    padding: 80px 40px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.service-details-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Sidebar */
.service-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 120px;
}

.service-details-sidebar-title {
    font-size: 30px;
    font-weight: 700;
    color:#333333;
    font-family: var(--font-inter);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5%;
    line-height: 100%;
}

.service-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-details-list-item {
    background: #FFFFFF;
    border-radius: 50px;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-inter);
    font-size: 17px;
    font-weight: 600;
    color:#333333;
    line-height: 100%;
    letter-spacing: 3%;
}

.service-details-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-details-list-item.active {
    background: #056375;
    color: #FFFFFF;
}

.service-details-list-item img {
    width: 8px;
    height: 13px;
    opacity: 1;
    display: block;
    visibility: visible;
    filter: brightness(0); /* Default: dark icon for white background */
}

.service-details-list-item.active img {
    filter: brightness(0) invert(1); /* White icon for dark background */
    opacity: 1;
    display: block;
    visibility: visible;
}

/* Ensure dropdown-left icon is visible when item is NOT active - dark icon on white background */
.service-details-list-item:not(.active) img {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    filter: brightness(0) !important; /* Make icon dark/black for visibility on white background */
}

/* Divider */
.service-details-divider {
    width: 100%;
    height: 1px;
    background: #056375;
    margin-bottom: 20px;
}

/* Question Section */
.service-details-question-section {
    display: flex;
    flex-direction: column;
}

.service-details-question-title {
    font-size: 22px;
    font-weight: 700;
    color: #056375;
    font-family: var(--font-inter);
    margin-bottom: 20px;
    line-height: 100%;
    letter-spacing: 3%;
}

.service-details-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-details-contact-item {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    justify-content: start;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-inter);
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 3%;
    font-weight: 600;
    color: #333333;
}

.service-details-contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-details-contact-item img {
    width: 8px;
    height: 13px;
    opacity: 1;
    display: block;
    visibility: visible;
    filter: brightness(0); /* Make icon dark/black for visibility on white background */
    margin-right: 12px; /* Add spacing between icon and text */
}

/* Why Choose Us Section */
.service-details-why-choose {
    background:linear-gradient(180deg, #056375DE 0%, #056375DE 100%),
    url(/assets/png/more-details.png)center center / cover no-repeat;
    border-radius: 5px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.service-details-why-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: var(--font-inter);
    text-align: center;
    margin: 0;
    line-height: 100%;
    letter-spacing: 3%;
}


.service-details-why-text {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: var(--font-manrope);
    letter-spacing: 3%;
    margin: 0;
    opacity: 0.95;
    text-align: center;

}

.service-details-more-btn {
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 40px;
    padding: 12px 24px;
    color: #FFFFFF;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 10px;
    line-height: 100%;
    letter-spacing: 5%;
}

.service-details-more-btn:hover {
    background: #FFFFFF;
    color: #056375;
    transform: translateY(-2px);
}

/* Right Main Content */
.service-details-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-details-image-wrapper {
    width: 100%;
    height: 51vh;
    overflow: hidden;
}

.service-details-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.service-details-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-details-title {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    font-family: var(--font-inter);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5%;
    line-height: 100%;
}

.service-details-description {
    font-size: 15px;
    font-weight: 300;
    color: #333333;
    font-family: var(--font-inter);
    line-height: 25.35px;
    margin: 0;
}

.service-details-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-details-tag {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 300;
    color: #333333;
    line-height: 25.35px;
    letter-spacing: 3%;
}

.service-details-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #056375;
    color: #FFFFFF;
}

.service-details-tag:hover img {
    filter: brightness(0) invert(1);
}

.service-details-tag img {
    width: 8px;
    height: 13px;
    opacity: 1;
    display: block;
    visibility: visible;
    filter: brightness(0); /* Make icon dark/black for visibility on white background */
}



/* Responsive Design */
@media (max-width: 1200px) {
    .service-details-container {
        grid-template-columns: 300px 1fr;
        gap: 30px;
    }
    
    .service-details-sidebar {
        top: 100px;
    }
}

@media (max-width: 992px) {
    .service-details-section {
        padding: 60px 30px;
    }
    
    .service-details-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-details-sidebar {
        position: static;
        order: 2;
    }
    
    .service-details-main {
        order: 1;
    }
    
    .service-details-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .service-details-section {
        padding: 50px 20px;
    }
    
    .service-details-title {
        font-size: 28px;
    }
    
    .service-details-description {
        font-size: 15px;
    }
    
    .service-details-tags {
        flex-direction: column;
    }
    
    .service-details-tag {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .service-details-section {
        padding: 40px 15px;
    }
    
    .service-details-title {
        font-size: 24px;
    }
    
    .service-details-sidebar-title,
    .service-details-question-title {
        font-size: 16px;
    }
    
    .service-details-list-item,
    .service-details-contact-item {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .service-details-why-title {
        font-size: 20px;
    }
    
    .service-details-why-text {
        font-size: 14px;
    }
}

/* Bizguide Travels Info Section */
.bizguide-travels-info-section {
    background: #FFFFFF;
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.bizguide-travels-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column - Content */
.bizguide-travels-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 40px;
}

/* Logo Section */
.bizguide-travels-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.bizguide-logo-icon {

    object-fit: contain;
}

.bizguide-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bizguide-logo-title {
    font-size: 28px;
    font-weight: 700;
    color: #056375;
    font-family: var(--font-inter);
    margin: 0;
    line-height: 1.2;
}



/* Main Heading */
.bizguide-travels-heading {
    font-size: 42px;
    font-weight: 300;
    color: #000000;
    font-family: var(--font-manrope);
    margin: 0;
    line-height:59.29px;
}

/* Description */
.bizguide-travels-description {
    font-size: 20px;
    font-weight: 300;
    color: #737373;
    font-family: var(--font-manrope);
    line-height: 1.8;
    margin: 0;
}

/* Right Column - Image */
.bizguide-travels-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bizguide-travels-image {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 5px;
}

.bizguide-city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bizguide-travels-info-section {
        padding: 80px 40px;
    }

    .bizguide-travels-container {
        gap: 40px;
    }

    .bizguide-travels-heading {
        font-size: 40px;
    }

    .bizguide-travels-description {
        font-size: 16px;
    }

    .bizguide-travels-image {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .bizguide-travels-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bizguide-travels-content {
        padding-right: 0;
    }

    .bizguide-travels-image-wrapper {
        order: -1;
    }

    .bizguide-travels-image {
        height: 400px;
    }

    .bizguide-travels-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .bizguide-travels-info-section {
        padding: 60px 30px;
    }

    .bizguide-travels-heading {
        font-size: 32px;
    }

    .bizguide-travels-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .bizguide-travels-image {
        height: 350px;
    }

    .bizguide-logo-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .bizguide-travels-info-section {
        padding: 40px 20px;
    }

    .bizguide-travels-heading {
        font-size: 28px;
    }

    .bizguide-travels-description {
        font-size: 14px;
    }

    .bizguide-travels-image {
        height: 300px;
    }

    .bizguide-logo-icon {
        width: 50px;
        height: 50px;
    }

    .bizguide-logo-title {
        font-size: 20px;
    }

    .bizguide-logo-tagline {
        font-size: 12px;
    }
}

/* Subsidiaries Header Section */
.subsidaries-header-container {
    background: #FFFFFF;
    padding: 100px 60px;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.subsidaries-header-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 90px;
    align-items: flex-start;
}

/* Left Column - Headings */
.subsidaries-header-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subsidaries-label {
    font-size: 14px;
    font-weight: 400;
    color:#056375;
    font-family: var(--font-inter);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.subsidaries-title {
    font-size: 40px;
    font-weight: 600;
    color: #020317;
    font-family: var(--font-inter);
    margin: 0;
    line-height: 1.2;
}

/* Right Column - Description */
.subsidaries-header-right {
    display: flex;
    align-items: flex-start;

}

.subsidaries-description {
    font-size: 18px;
    font-weight: 300;
    color: #746D6D;
    font-family: var(--font-inter);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .subsidaries-header-container {
        padding: 80px 40px;
    }

    .subsidaries-header-content {
        gap: 40px;
    }

    .subsidaries-title {
        font-size: 48px;
    }

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

@media (max-width: 992px) {
    .subsidaries-header-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .subsidaries-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .subsidaries-header-container {
        padding: 60px 30px;
    }

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

    .subsidaries-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .subsidaries-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .subsidaries-header-container {
        padding: 40px 20px;
    }

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

    .subsidaries-description {
        font-size: 14px;
    }
}

/* Subsidiaries List Container */
.subsidaries-list-container {
    background: #FFFFFF;
    padding: 100px 60px;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.subsidaries-list-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column - Text Content */
.subsidaries-list-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* OUR PROMISE Tag */
.subsidaries-promise-tag {
    display: inline-block;
    background: #EFFEFF;
    border-radius: 20px;
    padding: 8px 20px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subsidaries-promise-tag span {
    font-size: 10px;
    font-weight: 700;
    color: #056375;
    font-family: var(--font-jakarta);
    text-transform: uppercase;
    letter-spacing: 10%;
    line-height: 100%;
    text-align: center;
}

 .subsidaries-list-logo img {
    width: 378px !important;
    height: 81px !important; 
 }

/* Main Heading */
.subsidaries-list-heading {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
}

.heading-line-1 {
    font-size: 56px;
    font-weight: 700;
    color: #000000;
    font-family: var(--font-inter);
    line-height: 1.2;
    display: block;
}

.heading-line-2 {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    font-family: var(--font-inter);
    line-height: 1.2;
    display: block;
}

/* Description */
.subsidaries-list-description {
    font-size: 20px;
    font-weight: 300;
    color: #676767;
    font-family: var(--font-jakarta);
    line-height:37.41px;
    margin: 0;
}

/* Visit Website Button */
.subsidaries-visit-button {
    background: #056375;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 20px 32px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-jakarta);
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    /* margin-top: 10px; */

}

.subsidaries-visit-button:hover {
    background: #245a66;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 108, 122, 0.3);
}

/* Right Column - Image */
.subsidaries-list-right {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subsidaries-list-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
}

.subsidaries-cityscape-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .subsidaries-list-container {
        padding: 80px 40px;
    }

    .subsidaries-list-content {
        gap: 40px;
    }

    .heading-line-1 {
        font-size: 48px;
    }

    .heading-line-2 {
        font-size: 40px;
    }

    .subsidaries-list-description {
        font-size: 16px;
    }

    .subsidaries-list-image {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .subsidaries-list-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .subsidaries-list-image {
        height: 400px;
        order: -1;
    }

    .heading-line-1 {
        font-size: 40px;
    }

    .heading-line-2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .subsidaries-list-container {
        padding: 60px 30px;
    }

    .heading-line-1 {
        font-size: 36px;
    }

    .heading-line-2 {
        font-size: 32px;
    }

    .subsidaries-list-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .subsidaries-list-image {
        height: 350px;
    }

    .subsidaries-visit-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .subsidaries-list-container {
        padding: 40px 20px;
    }

    .heading-line-1 {
        font-size: 32px;
    }

    .heading-line-2 {
        font-size: 28px;
    }

    .subsidaries-list-description {
        font-size: 14px;
    }

    .subsidaries-list-image {
        height: 300px;
    }

    .subsidaries-promise-tag {
        padding: 6px 16px;
    }

    .subsidaries-promise-tag span {
        font-size: 11px;
    }
}

/* Team Bizguide Section */
.team-bizguide-section {
    background: #FFFFFF;
    padding: 100px 60px;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.team-bizguide-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Header Section */
.team-bizguide-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
 
    margin-bottom: 80px;
    align-items: flex-start;
    justify-content: center;
}

.team-bizguide-header-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-bizguide-label {
    font-size: 14px;
    font-weight: 400;
    color: #056375;
    font-family: var(--font-inter);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.team-bizguide-title {
    font-size: 40px;
    font-weight: 700;
    color: #0D0D2B;
    font-family: var(--font-inter);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.team-bizguide-header-right {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5em;
}

.team-bizguide-description {
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
    font-family: var(--font-inter);
    line-height: 1.6;
    margin: 0;
    padding-top: 1em;
}

/* Team Members Grid */
.team-bizguide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Team Member Card */
.team-member-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Team Member Overlay - Hidden by default, shown on hover */
.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 99, 117, 0.85) 0%, rgba(5, 99, 117, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show overlay on hover */
.team-member-card:hover .team-member-overlay {
    opacity: 1;
    visibility: visible;
}

.team-member-name {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: var(--font-inter);
    margin: 0 0 8px 0;
    text-align: center;
}

.team-member-title {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: var(--font-inter);
    margin: 0 0 20px 0;
    text-align: center;
    opacity: 0.9;
}

.team-member-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

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

.social-icon-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.social-icon-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-bizguide-section {
        padding: 80px 40px;
    }

    .team-bizguide-header {
        gap: 40px;
        margin-bottom: 60px;
    }

    .team-bizguide-title {
        font-size: 40px;
    }

    .team-bizguide-description {
        font-size: 16px;
    }

    .team-bizguide-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .team-bizguide-header {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .team-bizguide-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-bizguide-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .team-bizguide-section {
        padding: 60px 30px;
    }

    .team-bizguide-title {
        font-size: 32px;
    }

    .team-bizguide-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .team-bizguide-grid {
        gap: 15px;
    }

    .team-member-name {
        font-size: 24px;
    }

    .team-member-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .team-bizguide-section {
        padding: 40px 20px;
    }

    .team-bizguide-title {
        font-size: 28px;
    }

    .team-bizguide-description {
        font-size: 14px;
    }

    .team-bizguide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-member-name {
        font-size: 20px;
    }

    .social-icon-link {
        width: 36px;
        height: 36px;
    }

    .social-icon-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Invite Newsletter Section */
.invite-newsletter-container {
    background: #F8F8F8;
    padding: 100px 60px;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.invite-newsletter-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column - Form */
.invite-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.invite-form-title {
    font-size: 33px;
    font-weight: 600;
    color: #000000;
    font-family: var(--font-inter);
    margin: 0;
    line-height: 100%;
}

.invite-form-description {
    font-size: 14px;
    font-weight: 300;
    color:#000000;
    font-family: var(--font-inter);
    line-height: 24px;
    margin: 0;
}

.invite-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: var(--font-inter);
}

.form-label .required {
    color: #056375;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 15px;
    background: #FFFFFF;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    font-family: var(--font-inter);
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    box-shadow: 0 0 0 2px rgba(5, 99, 117, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(130, 130, 130, 1);
}

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

.invite-submit-btn {
    background: rgba(5, 99, 117, 1);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-inter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
    line-height: 100%;
}

.invite-submit-btn:hover {
    background: #245a66;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 97, 112, 0.3);
}

/* Right Column - Cards */
.invite-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    height: fit-content;
    align-items: start;
}

.invite-card {
    border-radius: 34px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.invite-card-support {
    background: rgba(5, 99, 117, 1);
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 600px;
}

.invite-card-price {
    background: linear-gradient(rgba(0, 92, 68, 0.85), rgba(0, 92, 68, 0.95)), url(/assets/png/jeddah.jpg);
    grid-column: 2;
    grid-row: 1;
    min-height: 290px;
}

.invite-card-time {
    background: rgba(5, 99, 117, 1);

    grid-column: 2;
    grid-row: 2;
    min-height: 290px;
    padding: 30px;
}

.invite-card-price {
    background: linear-gradient(rgba(0, 92, 68, 0.85), rgba(0, 92, 68, 0.95)), url(/assets/png/jeddah.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    
}

.invite-card-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    z-index: 0;
}

.invite-card-time {
    background: rgba(5, 99, 117, 1);
}

.invite-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.invite-card-time .invite-card-content {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 20px;

}

.invite-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: var(--font-manrope);
    margin: 0;
    line-height: 35px;
}

.invite-card-title-large {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: var(--font-manrope);
    margin: 0;
    line-height: 34.61px;
}

.invite-card-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: var(--font-manrope);
    margin: 0;
    opacity: 0.9;
    line-height: 28.12px;
}

.invite-card-description {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: var(--font-manrope);
    margin: 0;
    line-height: 23px;
    opacity: 0.9;
}

.invite-card-image-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
}

.invite-card-image {
    width: 220px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 1);
}

.invite-card-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: url(/assets/png/lines.png) no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.invite-card-decorative-plus {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.plus-icon {
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.plus-icon:nth-child(1) {
    top: 20%;
    right: 15%;
}

.plus-icon:nth-child(2) {
    top: 40%;
    right: 25%;
    opacity: 0.5;
}

.plus-icon:nth-child(3) {
    top: 60%;
    right: 20%;
    opacity: 0.4;
}

.plus-icon:nth-child(4) {
    top: 30%;
    right: 10%;
    opacity: 0.6;
}

.invite-card-button {
    background: rgba(10, 229, 172, 1);
    color: rgba(5, 99, 117, 1);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-manrope);
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    line-height: 28.12px;
}

.invite-card-button:hover {
    background: #6ac99a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(70, 89, 80, 0.3);
}

.invite-card-button svg {
    transition: transform 0.3s ease;
}

.invite-card-button:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .invite-newsletter-container {
        padding: 80px 40px;
    }

    .invite-newsletter-content {
        gap: 40px;
    }

    .invite-form-title {
        font-size: 40px;
    }

    .invite-card-title {
        font-size: 28px;
    }

    .invite-card-title-large {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .invite-newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .invite-cards-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .invite-card-support {
        grid-column: 1;
        grid-row: 1;
        min-height: 300px;
    }

    .invite-card-price {
        grid-column: 1;
        grid-row: 2;
    }

    .invite-card-time {
        grid-column: 1;
        grid-row: 3;
    }

    .invite-form-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .invite-newsletter-container {
        padding: 60px 30px;
    }

    .invite-form-title {
        font-size: 32px;
    }

    .invite-form-description {
        font-size: 16px;
    }

    .invite-card {
        padding: 24px;
        min-height: 250px;
    }

    .invite-card-title {
        font-size: 24px;
    }

    .invite-card-title-large {
        font-size: 18px;
    }

    .invite-card-description {
        font-size: 14px;
    }

    .invite-card-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .invite-newsletter-container {
        padding: 40px 20px;
    }

    .invite-form-title {
        font-size: 28px;
    }

    .invite-form-description {
        font-size: 15px;
    }

    .invite-submit-btn {
        width: 100%;
    }

    .invite-card-button {
        width: 100%;
        justify-content: center;
    }
}

/* Contact Us Section */
.contact-us-section {
    background: #F8F8F8;
    padding: 60px 0px 90px 60px;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-us-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: flex-start;
    padding-right: 0;
    margin-right: 0;
    box-sizing: border-box;
}

/* Left Column - Form */
.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    overflow: hidden;
}

.contact-heading {
    font-size: 34px;
    font-weight: 600;
    color: #000000;
    font-family: var(--font-inter);
    margin: 0;
    line-height: 100%;
}

.contact-heading-accent {
    color: rgba(5, 99, 117, 1);
}

.contact-description {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    font-family: var(--font-inter);
    line-height: 24px;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-label {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: var(--font-inter);
}

.contact-form-label .required {
    color: #056375;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    font-family: var(--font-inter);
    outline: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 224, 224, 1);
    background: #F8F8F8;

}

.contact-form-input:focus,
.contact-form-textarea:focus {
    box-shadow: 0 0 0 2px rgba(5, 99, 117, 0.2);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: rgba(130, 130, 130, 1);
}

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

.contact-submit-btn {
    background: rgba(5, 99, 117, 1);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-inter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: #04505d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 99, 117, 0.3);
}

/* Contact Details */
.contact-details {
    display: flex;
    /* flex-direction: column; */
    gap: 30px;
    margin-top: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.contact-detail-icon img,
.contact-detail-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-detail-label {
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    font-family: var(--font-inter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.contact-detail-value {
    font-size: 12px;
    font-weight: 400;
    color: rgba(5, 99, 117, 1);
    font-family: var(--font-inter);
    margin: 0;
    line-height: 20px;
}

/* Right Column - Map */
.contact-map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    margin-right: 0;
    padding-right: 0;
    box-sizing: border-box;
    overflow: hidden;
    min-width: 0;
}

.contact-map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    /* border-radius: 12px 0 0 12px; */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
    display: block;
}

.contact-map-pin {
    position: absolute;
    top: 45%;
    left: 35%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.contact-map-pin svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-us-section {
        padding: 50px 40px;
        overflow-x: hidden;
    }

    .contact-us-container {
        gap: 60px;
        max-width: 100%;
    }

    .contact-heading {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .contact-us-section {
        padding: 40px 30px;
        overflow-x: hidden;
    }

    .contact-us-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }

    .contact-map-wrapper {
        min-height: 400px;
    }

    .contact-map-container {
        min-height: 400px;
    }

    .contact-map-iframe {
        min-height: 400px;
    }

    .contact-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-us-section {
        padding: 40px 30px;
        overflow-x: hidden;
    }

    .contact-heading {
        font-size: 32px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-details {
        gap: 24px;
        margin-top: 30px;
    }

    .contact-detail-item {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .contact-us-section {
        padding: 30px 20px;
        overflow-x: hidden;
    }

    .contact-us-container {
        gap: 30px;
    }

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

    .contact-description {
        font-size: 14px;
    }

    .contact-submit-btn {
        width: 100%;
    }

    .contact-map-wrapper {
        min-height: 300px;
    }

    .contact-map-container {
        min-height: 300px;
    }

    .contact-map-iframe {
        min-height: 300px;
    }
}