/* Unified Color Scheme */
:root {
    --blue: #313131;
    --gray: #585858;
    --light-gray: #fcfcfc;

    /* --blue:#313131;
    --gray:#585858;
    --light-gray:#fcfcfc; */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at center, #2d6fd6 0%, #0a2f63 100%);
    color: var(--gray);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

/* Links */
a {
    color: var(--light-gray);
    text-decoration: none;
}

a:hover {
    color: #4dffff !important;
}

/* Navbar */
.navbar {
    background: radial-gradient(circle at center, #1a4b9a 0%, #0a2f63 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--light-gray);
    letter-spacing: .5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 4px 2px;
    scroll-margin-top: 200px;
}

.nav-links a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--light-gray);
    transition: .3s;
}

.nav-links a:hover:after {
    width: 100%;
}

.media-links {
    display: flex;
    justify-content: space-evenly;
}

.contact-link {
    flex: 1;
    text-align: end;
    padding-right: 30px;
}

.contact-link a {
    display: inline-flex;
    align-items: center;

    width: 2.1rem;
    height: 2.1rem;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: transform .28s ease, color .25s ease;
    transform-origin: 75% 80%;
    /* pivot near earpiece so it looks like lifting */

}

.contact-link a:hover,
.contact-link a:focus {
    transform: rotate(28deg) translateY(-2px);
    color: #4dffff !important;
}

.contact-link svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Hamburger */
.hamburger {
    width: 32px;
    height: 24px;
    position: relative;
    display: inline-block;
    background: radial-gradient(circle at center, #2d6fd6 0%, #0a2f6343 100%);
    border: none;
    padding: 0;
    cursor: pointer;
}

.hamburger:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.hamburger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    transition:
        transform .4s ease,
        top .3s ease,
        bottom .3s ease,
        opacity .25s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

/* Open (X) state driven by aria-expanded */
.hamburger[aria-expanded="true"] span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}


.hamburger {
    display: none;

    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    color: var(--blue);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width:768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: radial-gradient(circle at center, #2d6fd6 0%, #0a2f63 100%);
        padding: 0 0 0;
        overflow: hidden;
        max-height: 0;
        /* collapsed */
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        gap: 0;
        transition:
            max-height .4s ease,
            opacity .35s ease,
            transform .35s ease;
    }

    .nav-links li {
        width: 100%;
        padding: 0px 30px;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0;
    }

    /* Expanded (open) state */
    .nav-links.active {
        padding: 14px 0 18px;
        max-height: 500px;
        /* enough to show all items */
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* (Optional) remove old keyframes since transition handles both directions */
/* @keyframes fadeSlide { ... } */

/* Carousel
.carousel {
    position:relative;
    overflow:hidden;
    height:60vh;
    background:radial-gradient(circle at center, #2d6fd6 0%, #0a2f63 100%);
}
.carousel-slide {
    display:flex;
    height:100%;
    transition:transform .65s ease-in-out;
}
.carousel-item {
    min-width:100%;
    position:relative;
    display:flex;
    align-items:end;
    justify-content:center;
    color:var(--light-gray);
}
.carousel-item img {
    width:100%;
    height: 100%;
    object-fit:cover;
    filter:brightness(.55);
}
.carousel-text {
    position:absolute;
    max-width:70%;
    text-align:center;
    padding:20px 30px;
    border-radius: 30px;
    margin-bottom: 40px;
    background-color: #00000082;
}
.carousel-text h2 {
    font-size:2.3rem;
    margin-bottom:12px;
    color:var(--light-gray);
}
.carousel-text p { color:var(--light-gray); } */

/* Hero */
.hero {
    position: relative;
    min-height: 81vh;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: radial-gradient(circle at center, #2d6fd6 0%, #0a2f63 100%);
    color: var(--light-gray);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    animation: fadeUp .9s ease-in-out;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 14px;
    letter-spacing: .5px;
    background-color: #00000062;
    border-radius: 20px;
    padding: 10px;

    .title-text {
        font-size: clamp(2rem, 4vw, 2.6rem);
    }
}

.hero p {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.4;
    text-shadow: 0 2px 6px #000;
}

/* Image Reveal Section */
.image-reveal {
    position: relative;
    display: grid;
    gap: 38px;
    padding: 80px 6% 40px;
    background: radial-gradient(circle at center, #2d6fd6 0%, #0a2f63 100%);
    z-index: 1;
}

.reveal-card {
    background: radial-gradient(circle at center, #2d6fd6 0%, #0a2f63 100%);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 28px -8px #00000090;
}

.reveal-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: brightness(.85);
    transition: transform .8s ease, filter .8s ease;
}

.reveal-card h3 {
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 19px;
    margin: 0;
    font-size: 1.25rem;
    color: #fff;
    text-shadow: 0 2px 6px #000;
    letter-spacing: .5px;
    background-color: #00000064;
    border-radius: 13px;
    padding: 5px;
}

.reveal-card:hover img {
    transform: scale(1.05);
    filter: brightness(.95);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, .75, .25, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width:680px) {
    .image-reveal {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .reveal-card img {
        height: 260px;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.about {
    display: flex;
    text-align: center;
    flex-direction: column;
}

.about h2 {
    font-size: 35px;
}

/* Services */
.section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-heading {
    width: 100%;
    /* background:radial-gradient( at 30% 30%,rgba(1, 10, 55, 0.59),transparent 70%);
     */
    background-color: #042552;
    color: var(--light-gray);
    padding: 30px 30px 3px;
    font-size: 40px;
}

/* 
.services h2 {
    font-size:2.1rem;
    margin-bottom:30px;
    color:var(--blue);
}
.service-list {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:28px;
    max-width:1350px;
    margin:0 auto;
}
.service-item {
    background:radial-gradient(circle at center, #2d6fd6 0%, #0a2f63 100%);
    border:1px solid var(--gray);
    border-top:none;              
    border-radius:12px 12px 12px 12px;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
    padding-bottom: 30px;
    position:relative;
    overflow:hidden;
    transition:transform .35s, box-shadow .35s;
}
.service-item:hover {
    transform:translateY(-5px);
    box-shadow:0 8px 18px rgba(0,0,0,0.15);
}
.service-item img {
    width:100%;
    height:310px;
    object-fit: cover;
    margin:0 0px 16px;
    border-top-left-radius:0;
    border-top-right-radius:0;
}
.service-item h3 {
    margin-bottom:8px;
    font-size:1.1rem;
    color:var(--blue);
}
.service-item p { font-size:.9rem; } */

/* Reviews */
.reviews {
    padding: 55px 22px;
    background: radial-gradient(circle at center, #2d6fd6 0%, #0a2f63 100%);
    text-align: center;
}

.reviews h2 {
    margin-bottom: 28px;
    color: var(--blue);
}

.review-viewport {
    overflow: hidden;
    max-width: 100%;
    position: relative;
}

.review-container {
    display: flex;
    gap: 22px;
    will-change: transform;
    transition: transform .55s ease-in-out;
}

.review-card {
    flex: 0 0 260px;
    background: radial-gradient(circle at center, #2d6fd6 0%, #0a2f63 100%);
    color: var(--light-gray);
    padding: 20px 18px;
    border-radius: 10px;
    font-size: .9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Contact */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    padding: 60px 22px;
    background: radial-gradient(circle at center, #2d6fd6 0%, #0a2f63 100%);
    color: var(--light-gray);
}

.contact-heading {
    flex: 0 0 100%;
    margin: 0 0 8px;
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: .5px;
    font-weight: 700;
}

.contact-info {
    order: 1;
    flex: 1 1 320px;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.map {
    order: 2;
    flex: 1 1 340px;
    min-width: 260px;
    height: 360px;
    border: 2px solid var(--light-gray);
}

/* Larger screens: keep info left (first) and map right */
@media (min-width: 900px) {
    .contact-section {
        justify-content: space-between;
    }

    .contact-info,
    .map {
        max-width: none;
    }
}

/* Utility */
.hidden {
    display: none !important;
}




/* About us */
.about-section {
    padding: 70px 5% 40px;
    background: linear-gradient(145deg, #0e1a24, #152b3a);
    color: #f3f7fa;
    position: relative;
    overflow: hidden;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.about-section:before,
.about-section:after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.09), transparent 70%);
    top: -90px;
    right: -120px;
    filter: blur(2px);
    pointer-events: none;
}

.about-section:after {
    width: 300px;
    height: 300px;
    left: -110px;
    top: auto;
    bottom: -120px;
    background: radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.07), transparent 72%);
}

.about-heading {
    text-align: center;
    font-size: 2.4rem;
    margin: 0 0 10px;
    letter-spacing: .5px;
    background: linear-gradient(90deg, #fff, #c7e2ff);
    -webkit-background-clip: text;
    color: transparent;
}

.about-tagline {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #d0dde5;
}

.about-layout {
    display: grid;
    gap: 60px 60px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: start;
}

.about-owner {
    background: #112330;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 26px 32px;
    border-radius: 28px;
    position: relative;
    box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    backdrop-filter: blur(4px);
}

.about-owner:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 55%);
    pointer-events: none;
}

.owner-avatar {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 0 18px;
    border: 4px solid #1f3a4b;
    outline: 2px solid #4fa3ff;
    box-shadow: 0 0 0 4px rgba(79, 163, 255, 0.15);
    background: #0d1b24;
}

.owner-name {
    font-size: 1.3rem;
    margin: 0 0 6px;
    letter-spacing: .5px;
}

.owner-role {
    margin: 0 0 14px;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #79c4ff;
    font-weight: 600;
}

.owner-bio {
    font-size: .95rem;
    line-height: 1.55;
    color: #c2d5df;
    margin: 0 0 18px;
}

.owner-cta {
    display: inline-block;
    background: #2196f3;
    color: #fff;
    padding: 10px 18px 11px;
    border-radius: 50px;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background .3s, transform .3s;
}

.owner-cta:hover {
    background: #42a9ff;
    transform: translateY(-3px);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 34px 30px;
}

.shape-card {
    text-align: center;
    position: relative;
    transition: transform .5s;
}

.shape-card:hover {
    transform: translateY(-8px);
}

.hex-wrap,
.circle-wrap {
    width: 130px;
    height: 130px;
    margin: 0 auto 14px;
    position: relative;
}

.hex-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
    border: 3px solid #1f4257;
    outline: 2px solid #4fa3ff;
    background: #0d1d25;
    filter: brightness(.92);
    transition: filter .5s;
}

.circle-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #1f4257;
    outline: 2px solid #4fa3ff;
    background: #0d1d25;
    filter: brightness(.92);
    transition: filter .5s;
}

.shape-card:hover img {
    filter: brightness(1.05);
}

.shape-title {
    font-size: .83rem;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #a6d8ff;
    font-weight: 600;
}

.about-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    columns: 2;
    column-gap: 28px;
    font-size: .85rem;
}

.about-list li {
    break-inside: avoid;
    margin: 0 0 10px 0;
    position: relative;
    padding-left: 18px;
    line-height: 1.35;
    color: #d4e3ea;
}

.about-list li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #41a6ff;
    position: absolute;
    top: 5px;
    left: 0;
    box-shadow: 0 0 0 4px rgba(65, 166, 255, 0.25);
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 36px 0 0;
}

.stat-box {
    flex: 1 1 150px;
    min-width: 150px;
    background: #123042;
    padding: 18px 20px 20px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-box:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 65%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.stat-val {
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: .5px;
    background: linear-gradient(90deg, #fff, #9bd7ff);
    -webkit-background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 3px;
}

.stat-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #82c8ff;
    font-weight: 600;
}

/* footer */
.site-footer {
    background: radial-gradient(circle at 30% 40%, #0d3a66 0%, #082a4c 55%, #04182b 100%);
    color: #fff;
    padding: 10px 24px;
    /* text-align:center; */
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    justify-content: center;
}

.site-footer p {
    margin: 0;
}

.site-footer__brand {
    margin: 0 0 12px;
    font-size: .95rem;
    letter-spacing: .5px;
}

.site-footer__brand .tm {
    font-size: .75em;
    vertical-align: super;
    padding-right: 25px;
}

.site-footer__copy {
    margin: 0 0 18px;
    font-size: .8rem;
    opacity: .85;
    flex: 0 0 100%;
    text-align: center;
}

.site-footer__links {
    font-size: .85rem;
}

.site-footer__sep {
    opacity: .5;
    margin: 0 8px;
}

.site-footer a {
    color: #fff;
    text-decoration: underline;
}

.site-footer a:focus,
.site-footer a:hover {
    text-decoration: none;
}


@media (max-width:860px) {
    .about-layout {
        gap: 50px 34px;
    }
}

@media (max-width:640px) {
    .about-list {
        columns: 1;
    }

    .about-heading {
        font-size: 2rem;
    }

    .hex-wrap,
    .circle-wrap {
        width: 110px;
        height: 110px;
    }

    .about-stats {
        gap: 16px;
    }
}



/* Small screens: stack (default order already heading -> info -> map) */
@media (max-width: 899.98px) {

    .contact-section {
        min-height: 86vh;
    }

    .contact-info,
    .map {
        flex: 1 1 100%;
        text-align: center;
    }

    .map {
        height: 300px;
    }

    .hero-content {
        margin-bottom: 100px;
    }
}

@media (max-width:900px) {
    .service-item img {
        height: 290px;
    }
}

@media (max-width:600px) {
    .carousel-text h2 {
        font-size: 1.8rem;
    }

    .service-item img {
        height: 270px;
    }
}