/* =========================================================
   RESET / GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #172b35;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    width: 100%;
    background: #062b3a;
    color: #ffffff;
    padding: 9px 20px;
}

.top-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.customer-care {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.customer-care i {
    color: #55d6ff;
}

.customer-care a {
    color: #ffffff;
}

.customer-care a:hover {
    color: #55d6ff;
    text-decoration: underline;
}


/* =========================================================
   FACEBOOK LOGO
========================================================= */

.facebook-logo {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1877f2;
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.facebook-logo:hover {
    transform: translateY(-3px) scale(1.08);
    background: #ffffff;
    color: #1877f2;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 85px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav {
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}


/* =========================================================
   MAIN LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 180px;
    height: 65px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.03);
}


/* =========================================================
   NAVIGATION
========================================================= */

#navigation {
    display: flex;
    align-items: center;
    gap: 25px;
}

#navigation>a,
.nav-link {
    position: relative;
    color: #193640;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

#navigation>a::after,
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: #00a8c6;
    transition: width 0.3s ease;
}

#navigation>a:hover,
.nav-link:hover,
#navigation>a.active {
    color: #00a8c6;
}

#navigation>a:hover::after,
.nav-link:hover::after,
#navigation>a.active::after {
    width: 100%;
}


/* =========================================================
   SERVICES MENU
========================================================= */

.nav-services {
    position: relative;
}

.nav-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.nav-services:hover .nav-link i {
    transform: rotate(180deg);
}


/* =========================================================
   MEGA MENU
========================================================= */

.mega-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);

    width: min(850px, 90vw);

    padding: 30px;
    background: #ffffff;
    border-radius: 15px;

    border-top: 4px solid #00a8c6;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;

    z-index: 1000;
}

.nav-services:hover .mega-menu,
.nav-services.open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #006b8f;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 5px;
}

.mega-heading i {
    color: #00a8c6;
}

.mega-column>a {
    color: #64757c;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mega-column>a:hover {
    color: #00a8c6;
    padding-left: 5px;
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.nav-button {
    background: #00a8c6 !important;
    color: #ffffff !important;
    padding: 12px 20px !important;
    border-radius: 8px;
}

.nav-button::after {
    display: none !important;
}

.nav-button:hover {
    background: #007e98 !important;
    transform: translateY(-2px);
}


/* =========================================================
   THEME BUTTON
========================================================= */

.theme-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #e9faff;
    color: #007f9b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    transform: rotate(20deg) scale(1.05);
}


/* =========================================================
   FLOATING / ROTATING LOGO
========================================================= */

.rotating-logo {
    position: fixed;
    top: 100px;
    right: 25px;

    width: 85px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border-radius: 50%;

    z-index: 99999;
    cursor: pointer;

    transform-origin: center;
    transform-style: preserve-3d;

    animation: logoComeGo 5s cubic-bezier(0.65, 0, 0.35, 1) infinite;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);
}

.logo-image-wrap {
    position: relative;
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
}

.logo-image-wrap img {
    width: 65px;
    height: 65px;

    object-fit: contain;
    border-radius: 50%;

    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}


/* =========================================================
   ROTATING RING
========================================================= */

.logo-ring {
    position: absolute;
    inset: -5px;

    border-radius: 50%;
    border: 3px solid transparent;

    border-top-color: #00a88f;
    border-right-color: #007f83;

    z-index: 2;
    pointer-events: none;

    animation: rotateRing 2.5s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   LOGO GLOW
========================================================= */

.logo-glow {
    position: absolute;
    inset: -20px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(0, 168, 143, 0.55) 0%,
            rgba(0, 168, 143, 0.28) 30%,
            rgba(0, 168, 143, 0.10) 55%,
            transparent 75%);

    z-index: 1;
    pointer-events: none;

    animation: glowComeGo 5s ease-in-out infinite;
}


/* =========================================================
   LOGO COME / GO
========================================================= */

@keyframes logoComeGo {

    0% {
        transform:
            perspective(700px) translateZ(-500px) scale(0.05);

        opacity: 0;
    }

    10% {
        transform:
            perspective(700px) translateZ(-350px) scale(0.20);

        opacity: 0.20;
    }

    25% {
        transform:
            perspective(700px) translateZ(-100px) scale(0.65);

        opacity: 0.70;
    }

    40% {
        transform:
            perspective(700px) translateZ(0) scale(1);

        opacity: 1;
    }

    50% {
        transform:
            perspective(700px) translateZ(180px) scale(1.45);

        opacity: 1;
    }

    60% {
        transform:
            perspective(700px) translateZ(0) scale(1);

        opacity: 1;
    }

    75% {
        transform:
            perspective(700px) translateZ(-180px) scale(0.55);

        opacity: 0.65;
    }

    90% {
        transform:
            perspective(700px) translateZ(-400px) scale(0.15);

        opacity: 0.15;
    }

    100% {
        transform:
            perspective(700px) translateZ(-500px) scale(0.05);

        opacity: 0;
    }
}


/* =========================================================
   GLOW ANIMATION
========================================================= */

@keyframes glowComeGo {

    0% {
        transform: scale(0.2);
        opacity: 0;
    }

    20% {
        transform: scale(0.7);
        opacity: 0.25;
    }

    40% {
        transform: scale(1);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.6);
        opacity: 1;
    }

    60% {
        transform: scale(1);
        opacity: 0.55;
    }

    75% {
        transform: scale(0.7);
        opacity: 0.30;
    }

    90% {
        transform: scale(0.3);
        opacity: 0.10;
    }

    100% {
        transform: scale(0.2);
        opacity: 0;
    }
}

.rotating-logo:hover {
    animation-play-state: paused;
    box-shadow: 0 10px 45px rgba(0, 168, 143, 0.50);
}


/* =========================================================
   HERO SLIDER
========================================================= */

.big-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #111111;
}

.big-slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.big-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.big-slide.active {
    opacity: 1;
    visibility: visible;
}

.big-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big-slide::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.15));
}

.big-slide-content {
    position: absolute;

    left: 8%;
    top: 50%;

    transform: translateY(-50%);

    z-index: 2;
    color: #ffffff;

    max-width: 600px;
}

.big-slide-content span {
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 700;
}

.big-slide-content h1 {
    margin: 15px 0 25px;

    font-size: clamp(55px, 8vw, 100px);
    line-height: 1;

    font-weight: 300;
}

.big-slide-content h1 strong {
    color: #35d6ca;
    font-weight: 800;
}

.big-slide-buttons {
    display: flex;
    gap: 15px;
}

.big-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 28px;

    border-radius: 30px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.big-button-primary {
    background: #087f78;
    color: #ffffff;

    box-shadow: 0 7px 20px rgba(8, 127, 120, 0.3);
}

.big-button-primary:hover {
    background: #066b65;
    transform: translateY(-3px);
}


/* =========================================================
   HERO ARROWS
========================================================= */

.big-slider-arrow {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;

    font-size: 22px;

    backdrop-filter: blur(5px);

    z-index: 5;

    transition: all 0.3s ease;
}

.big-slider-arrow:hover {
    background: #087f78;
    transform: translateY(-50%) scale(1.1);
}

.big-slider-prev {
    left: 25px;
}

.big-slider-next {
    right: 25px;
}


/* =========================================================
   HERO DOTS
========================================================= */

.big-slider-dots {
    position: absolute;

    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 10px;

    z-index: 5;
}

.big-slider-dots button {
    width: 10px;
    height: 10px;

    border: none;
    border-radius: 50%;

    background: #ffffff;
    opacity: 0.5;

    transition: all 0.3s ease;
}

.big-slider-dots button.active {
    width: 30px;
    border-radius: 10px;

    opacity: 1;
    background: #35d6ca;
}


/* =========================================================
   SLIDER PROGRESS
========================================================= */

.big-slider-progress {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: rgba(255, 255, 255, 0.2);

    z-index: 5;
}

.big-slider-progress-bar {
    width: 0;
    height: 100%;

    background: #35d6ca;
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    padding: 90px 0;
    background: #f7fbfb;
}

.services-heading {
    text-align: center;
    margin-bottom: 45px;
}

.services-heading span {
    color: #087f78;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
}

.services-heading h2 {
    margin: 8px 0;
    font-size: clamp(28px, 4vw, 42px);
    color: #173c3a;
}

.services-heading p {
    color: #087f78;
    font-size: 18px;
    font-weight: 700;
}


/* =========================================================
   SERVICE SLIDER
========================================================= */

.service-slider {
    position: relative;
    width: 100%;
    padding: 0 50px 60px;
}

.service-window {
    overflow: hidden;
    width: 100%;
}

.service-track {
    display: flex;
    gap: 22px;

    transition: transform 0.5s ease;
}

.service-card {
    min-width: calc(33.333% - 15px);

    background: #ffffff;


    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;


    border-radius: 20px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.10);

}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
}

.service-image {
    height: 260px;
    position: relative;
    overflow: hidden;


}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.5s ease;

    display: block;

}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;


    background: linear-gradient(to bottom,
            transparent 40%,
            rgba(0, 0, 0, 0.45));
}

.service-icon {
    position: absolute;


    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;


    bottom: 20px;
    left: 20px;

    width: 55px;
    height: 55px;


    background: #fff;
    border-radius: 50%;

    font-size: 25px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);


}

.service-content {

    padding: 20px;
}

.service-number {
    color: #087f78;
    font-size: 13px;
    font-weight: 700;

    display: block;


    margin-bottom: 8px;

}

.service-content h3 {

    margin: 0 0 20px;
    font-size: 23px;
    color: #172033;

}



.service-select-box {
    margin-top: 20px;
}

.service-select-box label {
    display: block;
    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;
    color: #344054;
}

.service-select-box select {
    width: 100%;
    height: 50px;

    padding: 0 15px;

    border: 1px solid #d9dfeb;
    border-radius: 10px;

    background: #fff;

    color: #344054;
    font-size: 14px;

    outline: none;

    cursor: pointer;

    transition: 0.3s ease;
}

.service-select-box select:hover {
    border-color: #2563eb;
}

.service-select-box select:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.10);
}




.price {



    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 22px;


}


.price-row {
    display: flex;
    justify-content: space-between;


    padding: 13px 15px;

    background: #f7f9fc;
    border-radius: 10px;

    border: 1px solid #edf0f5;
}

.price-row p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.price-row p span {
    margin-left: 8px;
    color: #2563eb;
}




.service-content>a span {
    font-size: 20px;
}


/* Mobile */

@media (max-width: 600px) {

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .price-row {
        padding: 12px;
    }

    .price-row p {
        font-size: 13px;
    }

    .new-price {
        font-size: 16px;
    }

}



.new-price {
    color: #087f78;
    font-size: 18px;
    font-weight: 700;


}



/* Book Now */

.service-content>a {

    align-items: center;
    display: flex;
    justify-content: space-between;


    width: 100%;

    padding: 14px 18px;

    background: #2563eb;
    color: #fff;

    text-decoration: none;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}





.service-content>a:hover {
    color: #055f5a;
    transform: translateY(-2px);
}


/* =========================================================
   SERVICE ARROWS
========================================================= */

.service-arrow {
    position: absolute;

    top: 45%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #087f78;
    color: #ffffff;

    font-size: 18px;

    z-index: 5;

    transition: all 0.3s ease;
}

.service-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    background: #066b65;
}

.service-prev {
    left: 0;
}

.service-next {
    right: 0;
}


/* =========================================================
   SERVICE DOTS
========================================================= */

.service-dots {
    position: absolute;

    bottom: 5px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;
}

.service-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #c8d9d8;

    cursor: pointer;

    transition: all 0.3s ease;
}

.service-dot.active {
    width: 25px;
    border-radius: 10px;

    background: #087f78;
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    padding: 100px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.why-image {
    min-height: 430px;

    border-radius: 30px;

    background: linear-gradient(135deg,
            #087f78,
            #35cfc3);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

.medical-circle {
    width: 220px;
    height: 220px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.9);

    font-size: 100px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    animation: floatingMedical 3s ease-in-out infinite;
}

@keyframes floatingMedical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.why-content>span {
    color: #087f78;

    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 700;
}

.why-content h2 {
    margin: 8px 0 15px;

    font-size: clamp(30px, 4vw, 45px);

    color: #173c3a;
}

.why-content>p {
    color: #666666;

    max-width: 650px;

    margin-bottom: 30px;
}

.features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.feature {
    display: flex;
    gap: 12px;
}

.feature>div {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e1f6f4;
    color: #087f78;

    font-weight: 800;
}

.feature h3 {
    font-size: 17px;
    color: #173c3a;
}

.feature p {
    font-size: 13px;
    color: #777777;
}


/* =========================================================
   STATS
========================================================= */

.stats {
    padding: 55px 0;

    background: #087f78;

    color: #ffffff;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    text-align: center;
}

.stats-grid div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.stats-grid strong {
    font-size: 38px;
}

.stats-grid span {
    font-size: 14px;
    opacity: 0.9;
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
    padding: 100px 0;

    background: #f7fbfb;
}

.location-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;
}

.location-label {
    color: #087f78;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
}

.location-content h2 {
    margin: 8px 0 15px;

    font-size: 40px;

    color: #173c3a;
}

.location-content>p {
    color: #666666;

    margin-bottom: 25px;
}

.address-box {
    display: flex;

    gap: 15px;

    padding: 20px;

    background: #ffffff;

    border-radius: 15px;

    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.06);

    margin-bottom: 20px;
}

.address-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e1f6f4;
}

.address-box h3 {
    color: #173c3a;
    margin-bottom: 5px;
}

.address-box p {
    color: #666666;
    font-size: 14px;
}

.map-button {
    display: inline-flex;

    padding: 13px 20px;

    border-radius: 30px;

    background: #087f78;
    color: #ffffff;

    font-weight: 700;

    transition: all 0.3s ease;
}

.map-button:hover {
    background: #066b65;
    transform: translateY(-2px);
}

.map-container {
    overflow: hidden;

    border-radius: 20px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.map-container iframe {
    width: 100%;
    min-height: 400px;
    border: 0;
}


/* =========================================================
   CONTACT
========================================================= */

.section {
    padding: 100px 0;
}

.contact {
    background: #ffffff;
}

.section-heading {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 45px;
}

.section-heading span {
    color: #00a8c6;

    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-heading h2 {
    margin-top: 8px;

    font-size: 40px;

    color: #173c3a;
}

.section-heading p {
    color: #777777;
    margin-top: 10px;
}

.contact-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 50px;
}

.contact-info h3 {
    font-size: 27px;

    color: #173c3a;

    margin-bottom: 12px;
}

.contact-info>p {
    color: #666666;
    margin-bottom: 20px;
}

.contact-info .customer-care {
    color: #555555;
    margin-bottom: 12px;
}

.contact-info .customer-care a {
    color: #087f78;
}

.contact-info>div:not(.customer-care) {
    color: #555555;
    margin-top: 15px;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 15px;

    padding: 30px;

    border-radius: 20px;

    background: #f7fbfb;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    border: 1px solid #dce8e7;

    outline: none;

    border-radius: 10px;

    padding: 14px 16px;

    font-size: 14px;

    background: #ffffff;
    color: #222222;

    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #087f78;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form button {
    border: none;

    padding: 14px;

    border-radius: 10px;

    background: #087f78;
    color: #ffffff;

    font-weight: 700;

    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #066b65;
    transform: translateY(-2px);
}


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(rgba(0, 50, 80, 0.78),
            rgba(0, 100, 120, 0.78)),
        url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}

.about-hero-content {
    position: relative;

    z-index: 2;

    color: #ffffff;

    padding: 80px 20px;
}

.hero-label {
    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;
}

.about-hero-content h1 {
    font-size: clamp(42px, 6vw, 70px);

    line-height: 1.05;

    margin: 20px 0;
}

.about-hero-content h1 strong {
    color: #55d6ff;
}

.about-hero-content p {
    max-width: 650px;

    font-size: 18px;

    line-height: 1.8;
}

.about-breadcrumb {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;
}

.about-breadcrumb a {
    color: #ffffff;
}

.about-breadcrumb a:hover {
    color: #55d6ff;
}

.about-breadcrumb i {
    color: #55d6ff;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    padding: 100px 20px;

    background: #ffffff;
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;

    min-height: 500px;

    object-fit: cover;

    border-radius: 25px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}


/* EXPERIENCE BOX */

.experience-box {
    position: absolute;

    right: -25px;
    bottom: 30px;

    background: #00a8c6;

    color: #ffffff;

    padding: 25px 30px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    gap: 15px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.experience-box strong {
    font-size: 40px;
}

.experience-box span {
    line-height: 1.4;
}


/* ABOUT CONTENT */

.section-label {
    color: #00a8c6;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 3px;
}

.about-content h2 {
    font-size: 44px;

    line-height: 1.15;

    margin: 15px 0 25px;
}

.about-content p {
    color: #666666;

    line-height: 1.8;

    margin-bottom: 18px;
}


/* =========================================================
   ABOUT FEATURES
========================================================= */

.about-features {
    display: grid;

    gap: 20px;

    margin-top: 30px;
}

.about-feature {
    display: flex;

    gap: 18px;

    align-items: flex-start;
}

.feature-icon {
    min-width: 55px;
    height: 55px;

    border-radius: 15px;

    background: #e9faff;

    color: #00a8c6;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 22px;
}

.about-feature h3 {
    margin: 0 0 6px;
}

.about-feature p {
    margin: 0;
    font-size: 14px;
}


/* =========================================================
   MISSION / VISION
========================================================= */

.mission-section {
    padding: 90px 20px;

    background: #f4fbfd;
}

.mission-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;
}

.mission-card {
    padding: 45px;

    background: #ffffff;

    border-radius: 25px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);

    border-top: 5px solid #00a8c6;
}

.vision-card {
    border-top-color: #0066a6;
}

.mission-icon {
    width: 65px;
    height: 65px;

    display: flex;

    justify-content: center;
    align-items: center;

    background: #e9faff;

    color: #00a8c6;

    border-radius: 18px;

    font-size: 28px;

    margin-bottom: 25px;
}

.mission-card>span {
    color: #00a8c6;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;
}

.mission-card h2 {
    font-size: 30px;

    margin: 12px 0;
}

.mission-card p {
    line-height: 1.8;

    color: #666666;
}


/* =========================================================
   ABOUT - WHY CHOOSE US
========================================================= */

.about-why {
    padding: 100px 20px;

    background: #ffffff;
}

.about-card-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.about-card {
    padding: 35px 25px;

    border-radius: 22px;

    background: #ffffff;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
}

.about-card-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #e9faff;

    color: #00a8c6;

    font-size: 28px;
}

.about-card h3 {
    margin-bottom: 12px;
}

.about-card p {
    color: #777777;

    line-height: 1.7;

    font-size: 14px;
}


/* =========================================================
   ABOUT STATISTICS
========================================================= */

.about-stats {
    padding: 65px 20px;

    background: linear-gradient(135deg,
            #006b8f,
            #00a8c6);

    color: #ffffff;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 30px;

    margin-bottom: 15px;
}

.stat-item strong {
    display: block;

    font-size: 42px;

    margin-bottom: 5px;
}

.stat-item span {
    opacity: 0.9;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
    padding: 100px 20px;

    background:
        linear-gradient(rgba(0, 20, 40, 0.85),
            rgba(0, 80, 100, 0.85)),
        url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1800&q=90");

    background-size: cover;
    background-position: center;

    color: #ffffff;

    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: auto;
}

.about-cta-content>span {
    color: #5de0ff;

    font-weight: 800;

    letter-spacing: 3px;

    font-size: 13px;
}

.about-cta h2 {
    font-size: 48px;

    margin: 18px 0;
}

.about-cta p {
    font-size: 18px;

    opacity: 0.9;
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 30px;
}

.cta-buttons a {
    padding: 14px 25px;

    border-radius: 10px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    transition: all 0.3s ease;
}

.cta-primary {
    background: #00b5d8;

    color: #ffffff;
}

.cta-primary:hover {
    background: #008aa5;

    transform: translateY(-2px);
}

.cta-secondary {
    background: #ffffff;

    color: #006b8f;
}

.cta-secondary:hover {
    background: #e9faff;

    transform: translateY(-2px);
}


/* =========================================================
   GALLERY HERO
========================================================= */

.gallery-hero {
    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(rgba(0, 45, 70, 0.78),
            rgba(0, 110, 130, 0.78)),
        url("https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;

    background-position: center;
}

.gallery-hero-content {
    position: relative;

    z-index: 2;

    color: #ffffff;

    padding: 80px 20px;
}

.gallery-hero-content>span {
    font-size: 14px;

    font-weight: 800;

    letter-spacing: 3px;
}

.gallery-hero-content h1 {
    font-size: clamp(45px, 6vw, 70px);

    line-height: 1.05;

    margin: 20px 0;
}

.gallery-hero-content h1 strong {
    color: #55d6ff;
}

.gallery-hero-content p {
    max-width: 650px;

    font-size: 18px;

    line-height: 1.8;
}

.gallery-breadcrumb {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;
}

.gallery-breadcrumb a {
    color: #ffffff;
}

.gallery-breadcrumb i {
    color: #55d6ff;
}


/* =========================================================
   GALLERY SECTION
========================================================= */

.gallery-section {
    padding: 100px 20px;

    background: #ffffff;
}

.gallery-heading {
    max-width: 750px;

    margin: 0 auto 45px;

    text-align: center;
}

.gallery-heading span {
    color: #00a8c6;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;
}

.gallery-heading h2 {
    font-size: 42px;

    margin: 12px 0;
}

.gallery-heading p {
    color: #777777;

    line-height: 1.7;
}


/* =========================================================
   GALLERY FILTERS
========================================================= */

.gallery-filters {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 45px;
}

.filter-btn {
    border: 1px solid #dceef2;

    background: #ffffff;

    color: #45616a;

    padding: 12px 22px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #00a8c6;

    color: #ffffff;

    border-color: #00a8c6;

    transform: translateY(-2px);
}


/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.gallery-item {
    position: relative;

    height: 300px;

    overflow: hidden;

    border-radius: 20px;

    background: #eaf7fa;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);

    animation: galleryShow 0.4s ease;
}

.gallery-item img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* =========================================================
   GALLERY OVERLAY
========================================================= */

.gallery-overlay-card {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    min-height: 130px;

    padding: 25px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    color: #ffffff;

    background: linear-gradient(transparent,
            rgba(0, 20, 30, 0.90));
}

.gallery-overlay-card span {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #62ddf7;
}

.gallery-overlay-card h3 {
    margin-top: 7px;

    font-size: 20px;
}

.view-image {
    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    color: #006b8f;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: all 0.3s ease;
}

.view-image:hover {
    background: #00a8c6;

    color: #ffffff;

    transform: scale(1.1);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 999999;

    background: rgba(0, 15, 25, 0.94);

    display: none;

    justify-content: center;

    align-items: center;

    padding: 50px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;

    max-height: 85vh;

    object-fit: contain;

    border-radius: 12px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 20px;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: all 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #00a8c6;
}

.lightbox-close {
    top: 25px;

    right: 30px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}


/* =========================================================
   GALLERY CTA
========================================================= */

.gallery-cta {
    padding: 100px 20px;

    color: #ffffff;

    text-align: center;

    background:
        linear-gradient(rgba(0, 30, 45, 0.88),
            rgba(0, 100, 120, 0.88)),
        url("image\IMG_5380.JPG.jpeg");

    background-size: cover;

    background-position: center;
}

.gallery-cta-content {
    max-width: 800px;

    margin: auto;
}

.gallery-cta-content>span {
    color: #5de0ff;

    font-weight: 800;

    letter-spacing: 3px;

    font-size: 13px;
}

.gallery-cta h2 {
    font-size: 45px;

    margin: 18px 0;
}

.gallery-cta p {
    font-size: 18px;

    opacity: 0.9;
}


/* =========================================================
   GALLERY ANIMATION
========================================================= */

@keyframes galleryShow {
    from {
        opacity: 0;

        transform: translateY(15px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #071b26;

    color: #ffffff;

    padding-top: 70px;
}

.footer-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.3fr;

    gap: 40px;

    padding: 0 20px 50px;
}

.footer-logo {
    width: 180px;

    background: #ffffff;

    padding: 8px;

    border-radius: 10px;

    margin-bottom: 20px;
}

.footer-column p {
    color: #b9c8ce;

    line-height: 1.7;
}

.footer-column h3 {
    margin-top: 0;

    margin-bottom: 20px;
}

.footer-column>a {
    display: block;

    color: #b9c8ce;

    margin-bottom: 12px;

    transition: all 0.3s ease;
}

.footer-column>a:hover {
    color: #55d6ff;

    padding-left: 4px;
}


/* =========================================================
   FOOTER SOCIAL
========================================================= */

.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #123544;

    color: #ffffff;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #00a8c6;

    transform: translateY(-3px);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.copyright {
    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    padding: 20px;

    color: #9db1b9;

    font-size: 14px;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode {
    background: #07151c;

    color: #ffffff;
}


/* HEADER */

body.dark-mode .header {
    background: #0b2029;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode #navigation>a,
body.dark-mode .nav-link {
    color: #ffffff;
}

body.dark-mode #navigation>a:hover,
body.dark-mode .nav-link:hover,
body.dark-mode #navigation>a.active {
    color: #55d6ff;
}


/* MEGA MENU */

body.dark-mode .mega-menu {
    background: #102a35;
}

body.dark-mode .mega-column>a {
    color: #b8c5ca;
}

body.dark-mode .mega-column>a:hover {
    color: #55d6ff;
}

body.dark-mode .mega-heading {
    color: #55d6ff;
}


/* THEME BUTTON */

body.dark-mode .theme-btn {
    background: #163d4a;

    color: #55d6ff;
}


/* SERVICES */

body.dark-mode .services-section {
    background: #0b2029;
}

body.dark-mode .service-card {
    background: #102a35;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .services-heading h2,
body.dark-mode .service-content h3 {
    color: #ffffff;
}

body.dark-mode .service-content>a,
body.dark-mode .new-price {
    color: #55d6ff;
}


/* WHY */

body.dark-mode .why-section {
    background: #07151c;
}

body.dark-mode .why-content h2,
body.dark-mode .feature h3 {
    color: #ffffff;
}

body.dark-mode .why-content>p,
body.dark-mode .feature p {
    color: #b8c5ca;
}


/* LOCATION */

body.dark-mode .location-section {
    background: #0b2029;
}

body.dark-mode .location-content h2,
body.dark-mode .address-box h3 {
    color: #ffffff;
}

body.dark-mode .location-content>p,
body.dark-mode .address-box p {
    color: #b8c5ca;
}

body.dark-mode .address-box {
    background: #102a35;
}


/* CONTACT */

body.dark-mode .contact {
    background: #07151c;
}

body.dark-mode .section-heading h2,
body.dark-mode .contact-info h3 {
    color: #ffffff;
}

body.dark-mode .contact-info>p,
body.dark-mode .contact-info>div {
    color: #b8c5ca;
}

body.dark-mode .contact-form {
    background: #102a35;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background: #07151c;

    color: #ffffff;

    border-color: #214653;
}


/* ABOUT */

body.dark-mode .about-section,
body.dark-mode .about-why {
    background: #07151c;

    color: #ffffff;
}

body.dark-mode .about-content p,
body.dark-mode .about-feature p {
    color: #b8c5ca;
}


/* MISSION */

body.dark-mode .mission-section {
    background: #0b2029;
}

body.dark-mode .mission-card,
body.dark-mode .about-card {
    background: #102a35;

    color: #ffffff;
}

body.dark-mode .mission-card p,
body.dark-mode .about-card p {
    color: #b8c5ca;
}


/* ICONS */

body.dark-mode .feature-icon,
body.dark-mode .about-card-icon,
body.dark-mode .mission-icon {
    background: #163d4a;

    color: #55d6ff;
}


/* GALLERY */

body.dark-mode .gallery-section {
    background: #07151c;

    color: #ffffff;
}

body.dark-mode .gallery-heading p {
    color: #b8c5ca;
}

body.dark-mode .filter-btn {
    background: #102a35;

    color: #d5e3e8;

    border-color: #214653;
}

body.dark-mode .filter-btn:hover,
body.dark-mode .filter-btn.active {
    background: #00a8c6;

    color: #ffffff;

    border-color: #00a8c6;
}


/* FLOATING LOGO */

body.dark-mode .rotating-logo {
    background: #102a35;
}

body.dark-mode .logo-image-wrap {
    background: #102a35;
}


/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    #navigation {
        gap: 15px;
    }

    .mega-menu {
        width: 750px;
    }

    .about-grid {
        gap: 40px;
    }

    .about-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        min-width: calc(50% - 11px);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        min-height: 350px;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .top-inner {
        justify-content: center;

        flex-wrap: wrap;

        gap: 10px 20px;
    }

    .nav {
        flex-direction: column;

        gap: 15px;

        padding: 15px;
    }

    #navigation {
        width: 100%;

        flex-wrap: wrap;

        justify-content: center;

        gap: 10px 15px;
    }

    #navigation>a,
    .nav-link {
        font-size: 13px;
    }

    .logo img {
        width: 150px;

        height: 55px;
    }


    /* MOBILE MEGA MENU */

    .mega-menu {
        position: fixed;

        top: 150px;

        left: 10px;
        right: 10px;

        width: auto;

        max-height: 70vh;

        overflow-y: auto;

        transform: translateY(15px);
    }

    .nav-services:hover .mega-menu,
    .nav-services.open .mega-menu {
        transform: translateY(0);
    }

    .mega-inner {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }


    /* HERO */

    .big-slider {
        height: 480px;
    }

    .big-slide-content {
        left: 7%;
        right: 7%;
    }

    .big-slide-content h1 {
        font-size: 65px;
    }

    .big-slider-arrow {
        width: 38px;
        height: 38px;

        font-size: 16px;
    }

    .big-slider-prev {
        left: 12px;
    }

    .big-slider-next {
        right: 12px;
    }


    /* SERVICES */

    .services-section {
        padding: 65px 0;
    }

    .service-slider {
        padding-left: 40px;

        padding-right: 40px;
    }

    .service-card {
        min-width: 100%;
    }

    .service-image {
        height: 210px;
    }


    /* FEATURES */

    .features {
        grid-template-columns: 1fr;
    }


    /* STATS */

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid strong {
        font-size: 30px;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        min-height: 400px;
    }

    .experience-box {
        right: 15px;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .top-bar {
        padding: 8px 10px;
    }

    .customer-care {
        font-size: 12px;
    }

    .top-inner {
        gap: 8px 15px;
    }


    /* HEADER */

    .nav {
        padding: 10px;
    }

    .logo img {
        width: 145px;

        height: 55px;
    }

    #navigation {
        gap: 8px 12px;
    }

    #navigation>a,
    .nav-link {
        font-size: 12px;
    }

    .nav-button {
        padding: 9px 13px !important;
    }


    /* HERO */

    .big-slider {
        height: 430px;
    }

    .big-slide-content h1 {
        font-size: 55px;
    }


    /* ABOUT */

    .about-hero {
        min-height: 400px;
    }

    .about-hero-content {
        padding: 60px 20px;
    }

    .about-hero-content h1 {
        font-size: 40px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-section {
        padding: 65px 15px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-image img {
        min-height: 350px;
    }

    .experience-box {
        padding: 18px;
    }

    .experience-box strong {
        font-size: 30px;
    }


    /* MISSION */

    .mission-section {
        padding: 65px 15px;
    }

    .mission-card {
        padding: 30px;
    }


    /* WHY */

    .about-why {
        padding: 65px 15px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .about-card-grid {
        grid-template-columns: 1fr;
    }


    /* GALLERY */

    .gallery-hero {
        min-height: 400px;
    }

    .gallery-hero-content {
        padding: 60px 20px;
    }

    .gallery-hero-content h1 {
        font-size: 42px;
    }

    .gallery-section {
        padding: 70px 15px;
    }

    .gallery-heading h2 {
        font-size: 34px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .gallery-item {
        height: 280px;
    }

    .gallery-cta {
        padding: 70px 15px;
    }

    .gallery-cta h2 {
        font-size: 34px;
    }


    /* CTA */

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        justify-content: center;
    }


    /* LIGHTBOX */

    .lightbox {
        padding: 20px;
    }

    .lightbox img {
        max-width: 95%;
        max-height: 75vh;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }


    /* CONTACT */

    .section {
        padding: 65px 15px;
    }

    .contact-form {
        padding: 20px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        padding-left: 20px;
        padding-right: 20px;
    }


    /* FLOATING LOGO */

    .rotating-logo {
        top: auto;

        right: 15px;
        bottom: 15px;

        width: 65px;
        height: 65px;
    }

    .logo-image-wrap {
        width: 48px;
        height: 48px;
    }

    .logo-image-wrap img {
        width: 48px;
        height: 48px;
    }

    .logo-ring {
        inset: -4px;

        border-width: 2px;
    }

    .logo-glow {
        inset: -14px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .top-inner {
        flex-direction: column;

        align-items: center;
    }

    #navigation {
        gap: 8px;
    }

    .mega-inner {
        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {
        font-size: 34px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 16px;

        font-size: 13px;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-overlay-card {
        padding: 18px;
    }

    .gallery-overlay-card h3 {
        font-size: 17px;
    }

    .experience-box {
        position: relative;

        right: auto;
        bottom: auto;

        width: max-content;

        margin: -40px 15px 0 auto;
    }
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

 .break-footer {
        
       color:rgba(255, 255, 255, 0.322);
       font-size: 15px;
        display: flex;
        align-items: flex-start;

        gap: 10px;

    }
    .break-footer div a:hover{
        color: #008aa5;
        
    }
