:root {
    --navy: #081120;
    --navy-mid: #0d1e34;
    --navy-light: #122040;
    --blue: #b79e00;
    --blue-dark: #508b12;
    --blue-glow: rgba(0, 174, 239, 0.18);
    --yellow: #FFC400;
    --yellow-dark: #e0aa00;
    --white: #ffffff;
    --gray: #f0f4f8;
    --gray-mid: #cdd5e0;
    --text-muted: #8898aa;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
}

/* SCROLL PROGRESS BAR */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
    z-index: 9999;
    transition: width 0.1s;
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2px 6%;
    transition: var(--transition);
    background: white;
}

nav.scrolled {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    padding: 2px 5%;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--yellow));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: var(--navy);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--blue);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #70b113;
    text-decoration: none;
    font-size: 1.10rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    box-shadow: 0 0 25px var(--blue-glow);
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #183659;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(8, 17, 32, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--blue);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 5%;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

/* HERO */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 17, 32, 0.92) 0%, rgba(8, 17, 32, 0.5) 60%, rgba(0, 174, 239, 0.08) 100%);
}

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
    padding-top: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 174, 239, 0.12);
    border: 1px solid rgba(0, 174, 239, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge i {
    color: var(--yellow);
}

.hero-h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.55rem, 5vw, 4rem);
    /* font-weight: 00; */
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.9s 0.2s ease forwards;
}

.hero-h1 .accent {
    color: var(--blue);
    display: block;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: rgb(255 255 255 / 84%);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 0.9s 0.4s ease forwards;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.9s 0.6s ease forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 174, 239, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-3px);
}

.hero-counters {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.9s 0.8s ease forwards;
    max-width: 900px;
}

.counter-item {
    background: rgba(8, 17, 32, 0.7);
    backdrop-filter: blur(20px);
    padding: 22px 16px;
    text-align: center;
    transition: var(--transition);
}

.counter-item:hover {
    background: rgba(0, 174, 239, 0.1);
}

.counter-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    display: block;
}

.counter-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    font-weight: 400;
    display: block;
    line-height: 1.3;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.3;
    }
}

/* SECTION SHARED */
section {
    padding: 40px 2%;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--blue);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title .hi {
    color: var(--blue);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.8;
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ABOUT */
#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-images {
    position: relative;
    height: 520px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 78%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(8, 17, 32, 0.18);
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 54%;
    height: 54%;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid var(--white);
    box-shadow: 0 20px 60px rgba(8, 17, 32, 0.15);
}

.about-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    padding: 22px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.4);
    z-index: 10;
}

.about-badge .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge .lbl {
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--gray);
    border-radius: 14px;
    transition: var(--transition);
}

.about-feature:hover {
    background: rgba(0, 174, 239, 0.06);
    transform: translateY(-3px);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.about-feature h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.about-feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.progress-wrap {
    margin-top: 28px;
}

.prog-item {
    margin-bottom: 18px;
}

.prog-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.prog-bar {
    height: 6px;
    background: var(--gray);
    border-radius: 50px;
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
    width: 0;
    transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* SERVICES */
#services {
    background: linear-gradient(180deg, #f8fbff 0%, var(--white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(8, 17, 32, 0.08);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(8, 17, 32, 0.06);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 174, 239, 0.18);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-img-wrap {
    overflow: hidden;
    position: relative;
}

.service-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8, 17, 32, 0.3) 100%);
    pointer-events: none;
}

.service-icon-float {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.4);
    z-index: 2;
}

.service-body {
    padding: 36px 24px 28px;
}

.service-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-body p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-text i {
    transition: transform 0.3s ease;
}

.btn-text:hover i {
    transform: translateX(5px);
}

.btn-text:hover {
    color: var(--blue-dark);
}

/* WHY CHOOSE US */
#why {
    background: var(--navy);
}

#why .section-title {
    color: var(--white);
}

#why .section-sub {
    color: rgba(255, 255, 255, 0.55);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.why-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.06), transparent);
    opacity: 0;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 174, 239, 0.4);
    box-shadow: 0 20px 60px rgba(0, 174, 239, 0.15);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.15), rgba(0, 174, 239, 0.05));
    border: 1px solid rgba(0, 174, 239, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--blue);
    font-size: 1.8rem;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.4);
}

.why-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* GALLERY */
#gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:nth-child(1) .gallery-img,
.gallery-item:nth-child(6) .gallery-img {
    height: 280px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(8, 17, 32, 0.8) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    transform: translateY(15px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.07);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 17, 32, 0.97);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--blue);
}

/* STATS */
#stats {
    background: linear-gradient(135deg, var(--navy) 0%, #0f2040 100%);
    position: relative;
    overflow: hidden;
}

#stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: var(--navy-mid);
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(0, 174, 239, 0.08);
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.stat-suffix {
    color: var(--blue);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    line-height: 1.5;
    max-width: 120px;
    margin: 0 auto;
}

/* TESTIMONIALS */
#testimonials {
    background: var(--gray);
}

.testi-slider {
    max-width: 1100px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testi-card {
    min-width: calc(50% - 12px);
    margin-right: 24px;
    background: var(--white);
    border-radius: 20px;
    padding: 38px 36px;
    box-shadow: 0 8px 40px rgba(8, 17, 32, 0.07);
    position: relative;
    border: 1px solid rgba(8, 17, 32, 0.05);
}

.testi-quote {
    font-size: 4rem;
    color: var(--blue);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 0.7;
    margin-bottom: 20px;
}

.testi-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--white);
}

.testi-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
}

.testi-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testi-stars {
    color: var(--yellow);
    font-size: 0.85rem;
    margin-top: 3px;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-mid);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--blue);
    width: 26px;
    border-radius: 4px;
}

.testi-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(8, 17, 32, 0.12);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--navy);
    font-size: 0.9rem;
}

.testi-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

/* FAQ */
#faq {
    background: var(--white);
}

.faq-wrap {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border: 1px solid rgba(8, 17, 32, 0.08);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: rgba(0, 174, 239, 0.3);
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.08);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    transition: var(--transition);
}

.faq-q:hover {
    color: var(--blue);
}

.faq-q i {
    font-size: 1.1rem;
    color: var(--blue);
    transition: transform 0.4s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 0 28px 22px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* CONTACT */
#contact {
    background: linear-gradient(180deg, #f8fbff 0%, var(--white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 50px auto 0;
    align-items: start;
}

.contact-form-box {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 80px rgba(8, 17, 32, 0.1);
    border: 1px solid rgba(8, 17, 32, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(8, 17, 32, 0.1);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: var(--navy);
    outline: none;
    transition: var(--transition);
    background: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 174, 239, 0.45);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
}

@keyframes ripple-anim {
    to {
        transform: scale(40);
        opacity: 0;
    }
}

.contact-info {
    padding-top: 10px;
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-info>p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.1), rgba(0, 174, 239, 0.05));
    border: 1px solid rgba(0, 174, 239, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.2rem;
}

.info-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.info-item p,
.info-item a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.6;
}

.map-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-top: 28px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--blue);
}

.map-placeholder:hover {
    border-color: rgba(0, 174, 239, 0.3);
}

/* FOOTER */
footer {
    background: var(--navy);
    padding: 70px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin: 16px 0 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul a:hover {
    color: var(--blue);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.83rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--blue);
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--blue-dark);
}

.footer-bottom {
    max-width: 1200px;
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: var(--blue);
    text-decoration: none;
}

/* FLOATING BUTTONS */
#whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 888;
    transition: var(--transition);
    text-decoration: none;
}

#whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

#back-top {
    position: fixed;
    bottom: 24px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
    z-index: 888;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    border: none;
}

#back-top.visible {
    opacity: 1;
}

#back-top:hover {
    transform: translateY(-4px);
}

/* LOADING */
#loader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.loader-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
}

.loader-logo span {
    color: var(--blue);
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
    border-radius: 3px;
    animation: load-fill 1.8s ease forwards;
}

@keyframes load-fill {
    to {
        width: 100%;
    }
}

#loader.done {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

/* GLOW CURSOR EFFECT */
.glow-cursor {
    width: 20px;
    height: 20px;
    background: rgba(0, 174, 239, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s;
    mix-blend-mode: screen;
}

/* KEYFRAMES */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        height: 380px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-counters {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 70px 5%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
    }

    .gallery-img,
    .gallery-item:nth-child(1) .gallery-img,
    .gallery-item:nth-child(6) .gallery-img {
        height: 180px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        min-width: 90%;
    }

    .hero-counters {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .hero-counters {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 28px 20px;
    }

    .about-img-main,
    .about-img-accent {
        width: 100%;
        height: 200px;
    }

    .about-images {
        height: 420px;
    }
}

/*=====================================
PREMIUM STATS SECTION
=====================================*/

.pmc-stats-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.pmc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */

.pmc-stat-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 40px 28px;
    text-align: center;
    overflow: hidden;
    transition: 0.45s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.03);
}

.pmc-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 174, 239, 0.03),
            rgba(0, 114, 255, 0.02));
    opacity: 0;
    transition: 0.4s;
}

.pmc-stat-card:hover::before {
    opacity: 1;
}

.pmc-stat-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(0, 174, 239, 0.08);
    border-color: rgba(0, 174, 239, 0.18);
}

/* ICON */

.pmc-stat-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #103258, #103258);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 174, 239, 0.25);
}

.pmc-stat-card:nth-child(2) .pmc-stat-icon {
    background: linear-gradient(135deg, #508914, #508914);
}

.pmc-stat-card:nth-child(5) .pmc-stat-icon {
    background: linear-gradient(135deg, #133b5f, #133b5f);
}

.pmc-stat-card:nth-child(6) .pmc-stat-icon {
    background: linear-gradient(135deg, #508914, #508914);
}

/* NUMBERS */

.pmc-stat-card h2 {
    font-size: 42px;
    font-weight: 800;
    color: #081120;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.pmc-stat-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #081120;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.pmc-stat-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    position: relative;
    z-index: 2;
}

/* HOVER LINE */

.pmc-hover-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 5px;
    background: linear-gradient(90deg, #103258, #103258);
    transition: 0.5s;
}

.pmc-stat-card:hover .pmc-hover-line {
    width: 100%;
}

/* ACTIVE CARD */

.active-card {
    transform: translateY(-10px);
    border-color: rgba(0, 174, 239, 0.2);
    box-shadow:
        0 25px 45px rgba(0, 174, 239, 0.10),
        0 10px 25px rgba(0, 0, 0, 0.05);
}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:1400px) {

    .pmc-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:991px) {

    .pmc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:767px) {

    .pmc-stats-section {
        padding: 70px 0;
    }

    .pmc-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pmc-stat-card {
        padding: 35px 24px;
    }

    .pmc-stat-card h2 {
        font-size: 34px;
    }

    .pmc-stat-card h4 {
        font-size: 18px;
    }

}

/*=====================================
WHO WE ARE SECTION
=====================================*/

.pmc-who-section {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

/* CONTAINER */

.pmc-who-section .container {
    max-width: 1400px;
    padding-left: 40px;
    padding-right: 40px;
    margin: auto;
}

/* BG GLOW */

.pmc-who-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
    background: rgba(0, 174, 239, 0.06);
    filter: blur(120px);
    border-radius: 50%;
}

/* MAIN GRID */

.pmc-who-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/*=====================================
CONTENT SIDE
=====================================*/

.pmc-small-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 174, 239, 0.08);
    border: 1px solid rgba(0, 174, 239, 0.15);
    border-radius: 60px;
    color: #b79e00;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
}

.pmc-who-content h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    color: #081120;
    margin-bottom: 28px;
}

.pmc-who-content h2 span {
    color: #b79e00;
}

.pmc-who-text {
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
    margin-bottom: 24px;
}

/*=====================================
FEATURE GRID
=====================================*/

.pmc-who-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pmc-who-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: 0.4s ease;
}

.pmc-who-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 174, 239, 0.2);
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.08);
}

.pmc-who-feature i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #103258, #103258);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.pmc-who-feature span {
    font-size: 16px;
    font-weight: 600;
    color: #081120;
}

/*=====================================
BUTTON
=====================================*/

.pmc-who-btn-wrap {
    margin-top: 45px;
}

.pmc-who-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 34px;
    background: linear-gradient(135deg, #103258, #103258);
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.25);
}

.pmc-who-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

/*=====================================
IMAGE SIDE
=====================================*/

.pmc-who-images {
    position: relative;
}

.pmc-main-img img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.pmc-small-img {
    position: absolute;
    right: -40px;
    bottom: 40px;
    width: 250px;
    border-radius: 24px;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pmc-small-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.pmc-overlay-card {
    position: absolute;
    left: -30px;
    top: 50px;
    background: #081120;
    color: #fff;
    padding: 28px;
    border-radius: 24px;
    width: 240px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.pmc-overlay-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #103258, #103258);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.pmc-overlay-card h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pmc-overlay-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:1200px) {

    .pmc-who-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .pmc-who-content h2 {
        font-size: 48px;
    }

}

@media(max-width:991px) {

    .pmc-who-section {
        padding: 100px 0;
    }

    .pmc-who-section .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .pmc-who-wrapper {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .pmc-who-images {
        order: -1;
    }

    .pmc-main-img img {
        height: 520px;
    }

}

@media(max-width:767px) {

    .pmc-who-section {
        padding: 90px 0;
    }

    .pmc-who-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pmc-who-content h2 {
        font-size: 34px;
    }

    .pmc-who-text {
        font-size: 15px;
    }

    .pmc-who-feature-grid {
        grid-template-columns: 1fr;
    }

    .pmc-main-img img {
        height: 420px;
    }

    .pmc-small-img {
        width: 180px;
        right: 0;
        bottom: 20px;
    }

    .pmc-overlay-card {
        left: 10px;
        top: 20px;
        width: 200px;
        padding: 22px;
    }

    .pmc-overlay-card h3 {
        font-size: 32px;
    }

}

/*=====================================
PMC PREMIUM ABOUT SECTION
=====================================*/

.pmc-about-area {
    position: relative;
    padding: 60px 60px;
    background: #071320;
    overflow: hidden;
}

.pmc-about-area::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    left: -150px;
    top: -120px;
    background: rgba(0, 174, 239, 0.08);
    filter: blur(120px);
    border-radius: 50%;
}

.pmc-about-area::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    right: -100px;
    bottom: -100px;
    background: rgba(255, 196, 0, 0.08);
    filter: blur(120px);
    border-radius: 50%;
}

.pmc-about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/*=====================================
IMAGE SIDE
=====================================*/

.pmc-about-visual {
    position: relative;
}

.pmc-main-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.pmc-floating-image {
    position: absolute;
    right: -40px;
    bottom: 40px;
    width: 260px;
    border-radius: 24px;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.pmc-floating-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.pmc-exp-box {
    position: absolute;
    top: 40px;
    left: -25px;
    background: linear-gradient(135deg, #b79e00, #b79e00);
    color: #fff;
    padding: 25px 35px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.3);
}

.pmc-exp-box h2 {
    font-size: 46px;
    font-weight: 800;
    margin: 0;
}

.pmc-exp-box span {
    font-size: 15px;
    opacity: 0.9;
}

.pmc-certified-box {
    position: absolute;
    left: 40px;
    bottom: -30px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 18px 24px;
    border-radius: 20px;
}

.pmc-certified-box i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC400, #ff9800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.pmc-certified-box h5 {
    color: #fff;
    margin: 0;
    font-size: 18px;
}

.pmc-certified-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/*=====================================
CONTENT SIDE
=====================================*/

.pmc-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 174, 239, 0.08);
    border: 1px solid rgba(0, 174, 239, 0.2);
    padding: 12px 24px;
    border-radius: 60px;
    color: #b79e00;
    font-size: 14px;
    margin-bottom: 28px;
}

.pmc-about-content h2 {
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.pmc-about-content h2 span {
    color: #b79e00;
}

.pmc-about-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}

/*=====================================
FEATURES
=====================================*/

.pmc-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pmc-feature-card {
    display: flex;
    gap: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 24px;
    transition: 0.4s ease;
}

.pmc-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 174, 239, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.pmc-feature-icon {
    min-width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #b79e00, #b79e00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.pmc-feature-card h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 18px;
}

.pmc-feature-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.7;
}

/*=====================================
BUTTON
=====================================*/

.pmc-btn-wrap {
    margin-top: 45px;
}

.pmc-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 34px;
    border-radius: 60px;
    background: linear-gradient(135deg, #b79e00, #b79e00);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.3);
}

.pmc-main-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:991px) {

    .pmc-about-layout {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .pmc-about-content h2 {
        font-size: 44px;
    }

    .pmc-main-image img {
        height: 520px;
    }

}

@media(max-width:767px) {

    .pmc-about-area {
        padding: 90px 0;
    }

    .pmc-about-content h2 {
        font-size: 34px;
    }

    .pmc-feature-grid {
        grid-template-columns: 1fr;
    }

    .pmc-main-image img {
        height: 420px;
    }

    .pmc-floating-image {
        width: 180px;
        right: 0;
    }

    .pmc-exp-box {
        left: 10px;
        top: 20px;
        padding: 18px 24px;
    }

    .pmc-exp-box h2 {
        font-size: 32px;
    }

    .pmc-certified-box {
        left: 10px;
        right: 10px;
        bottom: -40px;
    }

}
/*=====================================
PRODUCT SECTION
=====================================*/

.pmc-product-area{
    position: relative;
    padding: 120px 0;
    background: #f8fbff;
    overflow: hidden;
}

/* CONTAINER */

.pmc-product-area .container{
    max-width: 1400px;
    margin: auto;
    padding-left: 40px;
    padding-right: 40px;
}

/*=====================================
HEADING
=====================================*/

.pmc-product-heading{
    text-align: center;
    margin-bottom: 70px;
}

.pmc-product-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 60px;
    background: rgba(0,174,239,0.08);
    border: 1px solid rgba(0,174,239,0.12);
    color: #b79e00;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.pmc-product-heading h2{
    font-size: 58px;
    line-height: 1.2;
    font-weight: 800;
    color: #081120;
    margin-bottom: 20px;
}

.pmc-product-heading h2 span{
    color: #b79e00;
}

.pmc-product-heading p{
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
}

/*=====================================
GRID
=====================================*/

.pmc-product-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/*=====================================
CARD
=====================================*/

.pmc-product-card{
    position: relative;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.45s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.04),
        0 2px 10px rgba(0,0,0,0.03);
}

.pmc-product-card:hover{
    transform: translateY(-12px);
    box-shadow:
        0 30px 60px rgba(0,174,239,0.12),
        0 15px 35px rgba(0,0,0,0.08);
}

/* IMAGE */

.pmc-product-image{
    position: relative;
    overflow: hidden;
}

.pmc-product-image img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.6s ease;
}

.pmc-product-card:hover .pmc-product-image img{
    transform: scale(1.08);
}

/* BADGE */

.pmc-product-badge{
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: linear-gradient(135deg,#b79e00,#b79e00);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,174,239,0.25);
}

/* CONTENT */

.pmc-product-content{
    padding: 30px;
}

.pmc-product-category{
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #b79e00;
    margin-bottom: 12px;
}

.pmc-product-content h3{
    font-size: 26px;
    font-weight: 700;
    color: #081120;
    margin-bottom: 20px;
}

/* PRICE */

.pmc-product-price{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.old-price{
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
}

.new-price{
    font-size: 24px;
    font-weight: 800;
    color: #b79e00;
}

/* BUTTON */

.pmc-product-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 60px;
    background: #081120;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

.pmc-product-btn:hover{
    background: linear-gradient(135deg,#b79e00,#b79e00);
    color: #fff;
    transform: translateY(-4px);
}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:1200px){

    .pmc-product-heading h2{
        font-size: 48px;
    }

}

@media(max-width:991px){

    .pmc-product-area{
        padding: 100px 0;
    }

    .pmc-product-area .container{
        padding-left: 25px;
        padding-right: 25px;
    }

    .pmc-product-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:767px){

    .pmc-product-area{
        padding: 90px 0;
    }

    .pmc-product-area .container{
        padding-left: 18px;
        padding-right: 18px;
    }

    .pmc-product-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .pmc-product-heading{
        margin-bottom:50px;
    }

    .pmc-product-heading h2{
        font-size: 34px;
    }

    .pmc-product-heading p{
        font-size:15px;
    }

    .pmc-product-image img{
        height:250px;
    }

    .pmc-product-content{
        padding:24px;
    }

    .pmc-product-content h3{
        font-size:22px;
    }

}
/*=====================================
TOP HEADER
=====================================*/

.pmc-topbar{
    width:100%;
    background:#081120;
    padding:5px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.pmc-topbar-container{
    max-width:1350px;
    margin:auto;
    padding:0 100px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* LEFT */

.pmc-topbar-left{
    display:flex;
    align-items:center;
    gap:30px;
}

.pmc-topbar-left a{
    display:flex;
    align-items:center;
    gap:10px;

    color:rgba(255,255,255,0.8);
    text-decoration:none;

    font-size:14px;
    font-weight:500;

    transition:0.3s ease;
}

.pmc-topbar-left a:hover{
    color:#b79e00;
}

.pmc-topbar-left i{
    color:#b79e00;
}

/* RIGHT */

.pmc-topbar-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.pmc-topbar-right span{
    display:flex;
    align-items:center;
    gap:10px;

    color:rgba(255,255,255,0.8);

    font-size:14px;
    font-weight:500;
}

.pmc-topbar-right span i{
    color:#b79e00;
}

/* SOCIAL */

.pmc-social-top{
    display:flex;
    align-items:center;
    gap:10px;
}

.pmc-social-top a{
    width:34px;
    height:34px;

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:13px;

    transition:0.3s ease;
}

.pmc-social-top a:hover{
    background:#b79e00;
    transform:translateY(-3px);
}

/*=====================================
NAVBAR
=====================================*/

#navbar{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.nav-inner{
    max-width:1350px;
    height:90px;

    margin:auto;
    padding:0 40px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.logo img{
    width:120px;
    height:auto;
    background:#fff;
    padding:5px;
    border-radius:10px;
}

/* MENU */

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;

    list-style:none;
    margin:0;
    padding:0;
}

.nav-links li a{
    position:relative;

    text-decoration:none;

    color:#081120;

    font-size:16px;
    font-weight:600;

    transition:0.3s ease;
}

.nav-links li a::after{
    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:3px;

    background:#b79e00;

    border-radius:20px;

    transition:0.3s ease;
}

.nav-links li a:hover{
    color:#b79e00;
}

.nav-links li a:hover::after{
    width:100%;
}

/* BUTTON */

.nav-cta{
    padding:10px 20px !important;

    border-radius:60px;

    background:linear-gradient(135deg,#b79e00,#b79e00);

    color:#fff !important;

    box-shadow:0 15px 35px rgba(0,174,239,0.22);
}

.nav-cta::after{
    display:none;
}

.nav-cta:hover{
    transform:translateY(-3px);
}

/* MOBILE */

.hamburger{
    width:48px;
    height:48px;

    background:#081120;

    border-radius:14px;

    display:none;

    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:5px;

    cursor:pointer;
}

.hamburger span{
    width:22px;
    height:2px;

    background:#fff;

    border-radius:20px;
}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:991px){

    .pmc-topbar{
        display:none;
    }

    .nav-links{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .nav-inner{
        height:78px;
        padding:0 20px;
    }

    .logo img{
        width:95px;
    }

}

@media(max-width:767px){

    .nav-inner{
        height:72px;
        padding:0 16px;
    }

    .logo img{
        /* width:80px; */
        width: 125px !important;
    }

    .hamburger{
        width:44px;
        height:44px;
    }

}