.about-thumb {
    display: grid;
    gap: 15px;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    /* Ensures images align at the top */
    margin-top: 10px;
    /* Added to move images upward */
    width: 1300px;
}

.about-thumb .image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-thumb .image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-thumb img {
    width: 100%;
    height: 335px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    ;
}

.about-thumb img:hover {
    transform: scale(1.05);
}

.image:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

/* Second image takes full width of second column, spans multiple rows if needed */
.image:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    margin-top: 30px;
}

/* Third image goes below second image */
.image:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
}

/* Fourth image goes below third image */
.image:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
}

/* Continue pattern for more images */
.image:nth-child(5) {
    grid-column: 2;
    grid-row: 4;
}

.image:nth-child(6) {
    grid-column: 2;
    grid-row: 5;
}

.custom-width-text {
    flex: 0 0 40% !important;
    max-width: 40% !important;
}

.custom-width-images {
    flex: 0 0 60% !important;
    max-width: 60% !important;
}

.testimonial-card {
    background-color: #fff !important;
    background-image: none !important;
}

.image img {
    width: 100%;
    height: 335px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.breadcrumb-title {
    font-size: 2rem;
    /* mobile */
}

@media (min-width: 768px) {
    .breadcrumb-title {
        font-size: 2.5rem;
        /* tablets */
    }
}

@media (min-width: 1200px) {
    .breadcrumb-title {
        font-size: 5rem;
        /* desktops */
    }
}

.explore-section {
    /* background: linear-gradient(135deg, #95d0daff 0%, #95d0daff 100%); */
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.explore-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" > <defs> <radialGradient id="circle" cx="50%" cy="50%" r="50%" > <stop offset="0%" style="stop-color:white;stop-opacity:0.1" /> <stop offset="100%" style="stop-color:white;stop-opacity:0" /> </radialGradient> </defs> <circle cx="20" cy="10" r="2" fill="url(%23circle)" /> <circle cx="80" cy="15" r="1.5" fill="url(%23circle)" /> <circle cx="60" cy="5" r="1" fill="url(%23circle)" /> </svg>') repeat;
    opacity: 0.3;
}

.explore-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: black;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: black
}

.cta-section {
    background: #1a1a1a;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .about-wrapper {
        margin-top: 2rem;
    }

    .image img {
        height: 300px;
    }
}

/* Custom Tailwind-like classes */
.tw-w-300-px {
    width: 300px;
}

.tw-h-screen {
    height: 100vh;
}

.tw-p-6 {
    padding: 1.5rem;
}

.tw-z-999 {
    z-index: 999;
}

.tw--translate-x-full {
    transform: translateX(-100%);
}

.tw-pb-68 {
    padding-bottom: 4.25rem;
}

.tw-end-0 {
    right: 0;
}

.tw-me-2 {
    margin-right: 0.5rem;
}

.tw-mt-2 {
    margin-top: 0.5rem;
}

.tw-w-605 {
    width: 3.78rem;
}

.tw-h-605 {
    height: 3.78rem;
}

.tw-mt-8 {
    margin-top: 2rem;
}

.tw-px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.tw-rounded-4xl {
    border-radius: 2rem;
}

.tw-pe-5 {
    padding-right: 1.25rem;
}

.tw-py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.tw-py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.tw-px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.tw-gap-6 {
    gap: 1.5rem;
}

.tw-gap-29 {
    gap: 7.25rem;
}

.tw-gap-2 {
    gap: 0.5rem;
}

.tw-text-9 {
    font-size: 2.25rem;
}

.max-w-200-px {
    max-width: 200px;
}

.text-main-600 {
    color: #09aed9;
}

.bg-main-600 {
    background-color: #09aed9;
}

.text-neutral-900 {
    color: #171717;
}

.bg-neutral-200 {
    background-color: #e5e5e5;
}

.text-neutral-800 {
    color: #262626;
}

.hover-bg-neutral-900:hover {
    background-color: #171717;
}

.hover-text-white:hover {
    color: white;
}

.font-dmsans {
    font-family: 'DM Sans', sans-serif;
}

.font-heading {
    font-family: 'Heading Font', sans-serif;
}

.fs-15 {
    font-size: 0.9375rem;
}

.primary-btn {
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
}

a {
    text-decoration: none !important;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    padding: 1.5rem;
    min-width: 800px;
    max-width: 1000px;
    width: 90vw;
    max-height: 70vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e5e7eb;
}

.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #09aed9;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #09aed9;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mega-menu-section {
    margin-bottom: 1rem;
}

.mega-menu-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-links li {
    margin-bottom: 0.3rem;
}

.mega-menu-links a {
    display: block;
    padding: 0.4rem 0;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
    position: relative;
}

.mega-menu-links a:hover {
    color: #09aed9;
    padding-left: 0.75rem;
    background-color: #f8fafc;
}

.mega-menu-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: #09aed9;
    transition: width 0.3s ease;
}

.mega-menu-links a:hover::before {
    width: 4px;
}

/* Hover trigger for mega menu */
.nav-menu__item.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-menu__item.has-mega-menu .nav-menu__link::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.nav-menu__item.has-mega-menu:hover .nav-menu__link::after {
    transform: rotate(180deg);
}

/* Responsive Mega Menu */
@media (max-width: 1200px) {
    .mega-menu {
        min-width: 700px;
        max-width: 90vw;
        padding: 1.25rem;
    }

    .mega-menu-content {
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .mega-menu {
        min-width: 600px;
        max-width: 95vw;
        padding: 1rem;
        max-height: 60vh;
    }

    .mega-menu-content {
        gap: 1rem;
    }

    .mega-menu-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .mega-menu-section {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 768px) {
    .mega-menu {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95vw;
        max-width: 500px;
        max-height: 80vh;
        border-radius: 0.5rem;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .mega-menu-column {
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 0.8rem;
    }

    .mega-menu-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .mega-menu-close {
        display: block;
    }
}

.mega-menu-close {
    display: none;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.3s ease;
}

.mega-menu-close:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Mobile dropdown styles */
/* Mobile dropdown styles */
.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8fafc;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

/* When dropdown is open */
.mobile-dropdown.show {
    max-height: 70vh;
    /* allows taller content */
    overflow-y: auto;
    /* enable scrolling */
    -webkit-overflow-scrolling: touch;
    /* smooth scrolling on iOS */
}

/* Scrollbar styling (optional) */
.mobile-dropdown::-webkit-scrollbar {
    width: 6px;
}

.mobile-dropdown::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

/* Inner items */
.mobile-dropdown .dropdown-item {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #09aed9;
    text-decoration: none;
    font-size: 0.9rem;
}

.mobile-dropdown .dropdown-item:hover {
    background-color: #e2e8f0;
}

.mobile-dropdown-section {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-dropdown-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mobile-dropdown-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #09aed9;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1.5rem;
    background-color: #f8fafc;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mobile-toggle-icon {
    transition: transform 0.3s ease;
}

.mobile-toggle-icon.rotated {
    transform: rotate(180deg);
}

.nav-menu__item.activePage>a {
    text-decoration: none !important;
}

.nav-menu .text-main-600 {
    color: #ffffff;
}

a:hover {
    color: #2196F3 !important;
}

.header-menu {
    margin-inline-start: 0px;
}

/* Glassmorphism background for header-two */
.header.glass-effect {
    background: rgba(0, 0, 0, 0.2);
    /* subtle transparency */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
}

.header-button .primary-btn {
    background: #09aed9bd !important;
    color: #ffffff !important;
}

.nav-menu__item.activePage>a {
    text-decoration: none !important;
}

.nav-menu .text-main-600 {
    color: #ffffff;
}

a:hover {
    color: #2196F3 !important;
}

.header-menu {
    margin-inline-start: 0px;
}

/* Glassmorphism background for header-two */
.header.glass-effect {
    background: rgba(0, 0, 0, 0.2);
    /* subtle transparency */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
}

.header-button .primary-btn {
    background: #09aed9bd !important;
    color: #ffffff !important;
}

.progress-wrap {
    mix-blend-mode: normal !important;
}