/* =========================================================
   MOBILE LINK MULTIMEDIA GALLERY
   FINAL PROFESSIONAL STYLESHEET
   ========================================================= */


/* =========================================================
   ROOT / RESET
   ========================================================= */

:root {
    --navy: #06283e;
    --navy-dark: #031b2b;
    --navy-light: #0b354f;

    --green: #09c56b;
    --green-dark: #00a85b;
    --green-light: #5cdda0;

    --white: #ffffff;
    --soft-white: #f8fbfa;
    --light: #f3f7f8;

    --text: #08243a;
    --muted: #6d7e89;

    --line: #e2ebee;

    --shadow-sm:
        0 6px 20px rgba(4, 35, 54, 0.07);

    --shadow:
        0 12px 35px rgba(4, 35, 54, 0.10);

    --shadow-lg:
        0 20px 50px rgba(4, 35, 54, 0.15);

    --radius: 16px;
}


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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


img {
    display: block;
    max-width: 100%;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.topbar {
    height: 36px;
    background: var(--navy-dark);
    color: #e8f4f6;

    padding: 0 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.1px;
}


.topbar > div:first-child {
    white-space: nowrap;
}


.topbar > div:nth-child(2) {
    white-space: nowrap;
}


.top-links {
    font-size: 11px;
    color: #bfd2da;
}


.top-links b {
    color: var(--green-light);
    margin: 0 8px;
}


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.header {
    height: 82px;

    padding: 0 5%;

    display: flex;
    align-items: center;

    background: var(--white);

    border-bottom: 1px solid var(--line);

    position: sticky;
    top: 0;
    z-index: 100;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.025);
}


/* Brand */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}


.brand img {
    width: 64px;
    height: 64px;

    object-fit: contain;
}


.brand-name {
    font-size: 24px;
    font-weight: 900;

    letter-spacing: -1.1px;
    line-height: 1;
}


.brand-name span {
    color: var(--green-dark);
}


.brand-subtitle {
    font-size: 9px;

    letter-spacing: 2.8px;

    font-weight: 800;

    color: #71818a;

    margin-top: 6px;
}


/* Navigation */

.nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 34px;
}


.nav a {
    position: relative;

    padding: 31px 0;

    font-size: 14px;
    font-weight: 800;

    color: var(--text);

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.nav a:hover,
.nav a.active {
    color: var(--green-dark);
}


.nav a:hover {
    transform: translateY(-1px);
}


.nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 15px;

    height: 3px;

    background: var(--green);

    border-radius: 5px;
}


/* WhatsApp */

.nav-whatsapp {
    margin-left: 30px;

    background: var(--green);

    color: var(--white);

    padding: 15px 24px;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 8px 25px rgba(9, 197, 107, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.nav-whatsapp:hover {
    transform: translateY(-3px);

    background: var(--green-dark);

    box-shadow:
        0 13px 32px rgba(9, 197, 107, 0.32);
}


/* Mobile menu */

.menu-btn {
    display: none;

    border: 0;

    background: transparent;

    color: var(--navy);

    font-size: 29px;

    cursor: pointer;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
    display: grid;

    grid-template-columns: 41% 59%;

    height: 545px;
    min-height: 545px;

    background: var(--navy);

    color: var(--white);

    overflow: hidden;

    position: relative;
}


/* Hero content */

.hero-copy {
    height: 545px;

    padding:
        45px
        5%
        45px
        7%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    z-index: 3;

    background:
        radial-gradient(
            circle at -10% 70%,
            rgba(0, 197, 107, 0.25) 0 105px,
            transparent 106px
        ),
        var(--navy);
}


/* Decorative glow */

.hero-copy::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -190px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        rgba(9, 197, 107, 0.06);

    pointer-events: none;
}


/* Eyebrow */

.eyebrow {
    font-size: 12px;

    letter-spacing: 4px;

    font-weight: 800;

    color: #56dd9c;

    margin-bottom: 14px;
}


/* Main title */

.hero h1 {
    font-size: 62px;

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 900;

    white-space: nowrap;
}


.hero h1 span {
    color: var(--green);
}


/* Subtitle */

.hero h2 {
    font-size: 30px;

    line-height: 1.15;

    margin-top: 12px;

    font-weight: 800;
}


/* Services line */

.hero-services {
    font-size: 16px;

    font-weight: 700;

    margin-top: 20px;

    white-space: nowrap;
}


.hero-services b {
    color: var(--green);

    margin: 0 5px;
}


/* Description */

.hero-desc {
    font-size: 15px;

    color: #c4d4db;

    margin-top: 5px;
}


/* Buttons */

.hero-buttons {
    display: flex;

    gap: 13px;

    margin-top: 27px;
}


.btn {
    padding: 15px 22px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 800;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.btn.green {
    background: var(--green);

    color: var(--white);

    box-shadow:
        0 9px 25px rgba(9, 197, 107, 0.18);
}


.btn.green:hover {
    background: var(--green-dark);

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(9, 197, 107, 0.28);
}


.btn.outline {
    border: 1px solid #63dca3;

    color: var(--white);

    background: rgba(255, 255, 255, 0.01);
}


.btn.outline:hover {
    background: rgba(9, 197, 107, 0.08);

    transform: translateY(-3px);

    border-color: var(--green);
}


/* Trust points */

.trust {
    display: flex;

    flex-wrap: wrap;

    gap: 22px;

    margin-top: 28px;

    font-size: 12px;

    color: #d8e5e9;
}


.trust span {
    white-space: nowrap;
}


/* Hero image */

.hero-photo {
    height: 545px;

    position: relative;

    overflow: hidden;

    background: var(--navy);

    isolation: isolate;
}


/* Actual shop image */

.hero-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /*
      Keeps the exterior looking fresh
      while showing the useful shop area.
    */
    object-position: center 18%;

    transform: scale(1.01);

    animation:
        heroZoom 1.2s ease both;

    transition:
        transform 1.2s ease;
}


.hero:hover .hero-photo img {
    transform: scale(1.035);
}


/* Smooth image connection */

.hero-photo::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            var(--navy) 0%,
            rgba(6, 40, 62, 0.94) 4%,
            rgba(6, 40, 62, 0.60) 12%,
            rgba(6, 40, 62, 0.18) 25%,
            transparent 42%
        );
}


/* Slight bottom darkening */

.hero-photo::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 100px;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            transparent,
            rgba(3, 27, 43, 0.20)
        );
}


/* Rating box */

.rating {
    position: absolute;

    right: 6%;

    top: 11%;

    z-index: 5;

    background: var(--white);

    color: var(--navy);

    padding: 15px 19px;

    border-radius: 13px;

    text-align: center;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.20);

    animation:
        ratingFloat 3.5s ease-in-out infinite;
}


.rating strong {
    display: block;

    font-size: 22px;

    font-weight: 900;
}


.rating small {
    display: block;

    font-size: 10px;

    color: #687982;

    margin-top: 4px;
}


/* =========================================================
   CATEGORY STRIP
   ========================================================= */

.categories {
    padding:
        25px
        4.5%
        45px;

    background: var(--white);
}


.category-grid {
    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 17px;
}


/* Category card */

.category {
    min-height: 255px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background: var(--white);

    overflow: hidden;

    text-align: center;

    box-shadow: var(--shadow-sm);

    position: relative;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.category:hover {
    transform: translateY(-8px);

    border-color:
        rgba(8, 197, 107, 0.45);

    box-shadow:
        0 18px 40px
        rgba(6, 35, 55, 0.13);
}


/* Category image */

.category img {
    width: 100%;

    height: 142px;

    object-fit: cover;

    object-position: center;

    padding: 7px;

    background: #f7faf9;

    transition:
        transform 0.5s ease;
}


.category:hover img {
    transform: scale(1.045);
}

/* AUDIO & MULTIMEDIA - FINAL TITLE FIX */

.category:nth-child(5) {
    overflow: hidden;
}

.category:nth-child(5) img {
    height: 142px !important;
    width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 7px !important;
    background: #f7faf9;

    transform: none !important;
    position: relative;
    z-index: 0;
}

.category:nth-child(5) h3 {
    position: relative;
    z-index: 10;
    display: block;
    margin: 14px 7px 5px !important;
    line-height: 1.25;
    background: #ffffff;
}

.category:nth-child(5) p {
    position: relative;
    z-index: 10;
    display: block;
    margin: 0 9px 16px !important;
    line-height: 1.45;
    background: #ffffff;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    width: 100%;

    max-width: 1400px;

    margin: auto;

    padding:
        70px
        5%;
}


.section-head {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 32px;
}


.label {
    display: block;

    font-size: 11px;

    letter-spacing: 3px;

    color: var(--green-dark);

    font-weight: 900;

    margin-bottom: 6px;
}


.section-head h2 {
    font-size: 40px;

    line-height: 1.1;

    letter-spacing: -1.6px;

    font-weight: 900;
}


.section-head h2 em {
    font-style: normal;

    color: var(--green-dark);
}


.section-head p {
    font-size: 15px;

    color: var(--muted);

    margin-top: 8px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.service {
    height: 260px;

    border-radius: 17px;

    overflow: hidden;

    position: relative;

    background: #dfe9eb;

    box-shadow: var(--shadow);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.service:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px
        rgba(6, 35, 58, 0.17);
}


/* Service image */

.service img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.55s ease;
}


.service:hover img {
    transform: scale(1.05);
}


/* Dark bottom overlay */

.service::after {
    content: "";

    position: absolute;

    inset: 25% 0 0;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(2, 25, 39, 0.18) 20%,
            rgba(2, 25, 39, 0.95) 100%
        );

    z-index: 1;
}


/* Service text */

.service > div {
    position: absolute;

    left: 23px;

    right: 20px;

    bottom: 21px;

    z-index: 3;

    color: var(--white);
}


.service h3 {
    font-size: 22px;

    line-height: 1.2;

    font-weight: 900;
}


.service p {
    font-size: 14px;

    margin-top: 5px;

    color: #e8f3f5;
}


/* =========================================================
   STUDENT FRIENDLY STORE - 30% OFF
   ========================================================= */

.student {
    margin: 8px 4.5% 55px;

    min-height: 225px;

    position: relative;
    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            105deg,
            #08b968 0%,
            #05c875 52%,
            #087e61 100%
        );

    color: #fff;

    display: grid;

    grid-template-columns:
        18%
        55%
        27%;

    align-items: center;

    padding: 30px 38px;

    box-shadow:
        0 22px 50px rgba(0, 116, 82, 0.20);

    isolation: isolate;
}


/* Decorative left circle */

.student::before {
    content: "";

    position: absolute;

    width: 310px;
    height: 310px;

    left: -115px;
    top: -45px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.075);

    z-index: -1;
}


/* Decorative right circle */

.student::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: 45px;
    bottom: -155px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.07);

    z-index: -1;
}


/* =========================================================
   LEFT STUDENT BENEFITS
   ========================================================= */

.student-icon {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}


.student-cap {
    font-size: 74px;

    line-height: 1;

    filter:
        drop-shadow(
            0 8px 7px rgba(0,0,0,0.15)
        );

    animation:
        studentCapFloat 3s ease-in-out infinite;
}


.student-icon small {
    margin-top: 10px;

    font-size: 10px;

    line-height: 1.35;

    letter-spacing: 2px;

    font-weight: 900;

    color: #f0fff8;
}


/* =========================================================
   CENTER CONTENT
   ========================================================= */

.student-content {
    position: relative;

    z-index: 3;

    padding-left: 8px;
}


.student-content > span {
    display: block;

    font-size: 11px;

    letter-spacing: 4px;

    font-weight: 900;

    color: #effff7;

    margin-bottom: 5px;
}


.student-content h2 {
    margin: 0;

    font-size: 45px;

    line-height: 1.05;

    letter-spacing: -1.8px;

    font-weight: 900;

    color: #ffffff;
}


/* "Friendly Store!" yellow */

.student-content h2 strong {
    color: #ffe13b;

    font-weight: 900;
}


/* =========================================================
   SPECIAL RATE LINE
   ========================================================= */

.student-content p {
    margin-top: 8px;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 700;

    color: #ffffff;
}


/* =========================================================
   30% OFF BADGE
   ========================================================= */

.student-content::after {
    content: "30% OFF";

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 13px;

    padding: 7px 17px;

    border-radius: 30px;

    background: #ffe13b;

    color: #075536;

    font-size: 16px;

    font-weight: 950;

    letter-spacing: 0.5px;

    box-shadow:
        0 7px 18px rgba(0,0,0,0.13);

    animation:
        discountPulse 2.5s ease-in-out infinite;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.student-points {
    display: flex;

    flex-wrap: wrap;

    gap: 7px 20px;

    margin-top: 13px;
}


.student-points span {
    font-size: 12px;

    line-height: 1.4;

    font-weight: 800;

    color: #ffffff;

    white-space: nowrap;
}


/* =========================================================
   RIGHT SIDE
   ========================================================= */

.student-note {
    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;
}


/* =========================================================
   STUDENT FRIENDLY CARD
   ========================================================= */

.student-paper {
    width: 175px;

    height: 126px;

    padding: 16px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #effff8 100%
        );

    color: #07304a;

    box-shadow:
        0 15px 30px rgba(0,0,0,0.16);

    transform:
        rotate(-4deg);

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.student-paper:hover {
    transform:
        rotate(0deg)
        translateY(-6px);

    box-shadow:
        0 20px 38px rgba(0,0,0,0.20);
}


/* Circle on card */

.student-paper::before {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -25px;
    top: -28px;

    border-radius: 50%;

    background:
        rgba(8, 197, 107, 0.12);
}


/* Card title */

.student-paper span {
    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 900;

    color: #71828b;
}


/* Card heading */

.student-paper b {
    margin-top: 3px;

    font-size: 19px;

    line-height: 1.05;

    font-weight: 900;

    color: #08a85d;
}


/* Small icons */

.student-paper i {
    margin-top: 9px;

    font-size: 21px;

    font-style: normal;

    letter-spacing: 5px;
}


/* =========================================================
   CONTACT BUTTON
   ========================================================= */

.student-note > a {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 21px;

    border-radius: 28px;

    background: #ffffff;

    color: #079c58;

    font-size: 12px;

    font-weight: 900;

    white-space: nowrap;

    box-shadow:
        0 9px 22px rgba(0,0,0,0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.student-note > a:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 28px rgba(0,0,0,0.17);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes studentCapFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-3deg);
    }

    50% {
        transform:
            translateY(-7px)
            rotate(3deg);
    }
}


@keyframes discountPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}


/* =========================================================
   STUDENT OFFER - TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .student {
        grid-template-columns:
            16%
            56%
            28%;

        padding:
            27px
            25px;
    }

    .student-content h2 {
        font-size: 37px;
    }

    .student-paper {
        width: 145px;
        height: 112px;
    }

    .student-note {
        gap: 12px;
    }
}


/* =========================================================
   STUDENT OFFER - MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .student {
        grid-template-columns: 1fr;

        text-align: center;

        padding:
            32px
            22px;

        gap: 15px;
    }


    .student-icon {
        height: auto;
    }


    .student-cap {
        font-size: 62px;
    }


    .student-content {
        padding-left: 0;
    }


    .student-content > span {
        font-size: 9px;

        letter-spacing: 3px;
    }


    .student-content h2 {
        font-size: 36px;

        letter-spacing: -1px;
    }


    .student-content p {
        font-size: 14px;
    }


    .student-points {
        justify-content: center;

        gap:
            7px
            14px;
    }


    .student-note {
        flex-direction: column;

        gap: 13px;
    }


    .student-paper {
        display: none;
    }
}


/* =========================================================
   STUDENT OFFER - SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .student {
        margin:
            5px
            5%
            42px;

        border-radius: 18px;

        padding:
            28px
            18px;
    }


    .student-content h2 {
        font-size: 31px;
    }


    .student-content p {
        font-size: 13px;
    }


    .student-content::after {
        font-size: 14px;

        padding:
            6px
            15px;
    }


    .student-points span {
        font-size: 10px;
    }
}

/* =========================================================
   PRODUCTS
   ========================================================= */

.products {
    padding-top: 45px;
}


.view-all {
    border:
        1px solid var(--green);

    color: var(--green-dark);

    padding:
        11px
        18px;

    border-radius: 25px;

    font-size: 12px;

    font-weight: 900;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.view-all:hover {
    background: var(--green);

    color: var(--white);

    transform: translateY(-3px);
}


/* Product grid */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}


/* Product card */

.product {
    min-height: 335px;

    border:
        1px solid var(--line);

    border-radius: 16px;

    padding: 13px;

    background: var(--white);

    text-align: center;

    box-shadow:
        0 5px 18px
        rgba(6, 35, 55, 0.06);

    display: flex;

    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.product:hover {
    transform: translateY(-7px);

    border-color:
        rgba(8, 197, 107, 0.35);

    box-shadow:
        0 20px 42px
        rgba(6, 35, 58, 0.13);
}


/* Product image */

.product img {
    width: 100%;

    height: 225px;

    object-fit: contain;

    object-position: center;

    background: #f8fafb;

    border-radius: 11px;

    padding: 10px;

    transition:
        transform 0.45s ease;
}


.product:hover img {
    transform: scale(1.055);
}


/* Product title */

.product h3 {
    font-size: 16px;

    line-height: 1.3;

    margin:
        14px
        4px
        10px;

    min-height: 24px;

    font-weight: 800;
}


/* Product button */

.product a {
    display: block;

    margin-top: auto;

    background: var(--green);

    color: var(--white);

    border-radius: 8px;

    padding: 10px;

    font-size: 12px;

    font-weight: 900;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.product a:hover {
    background: var(--green-dark);

    transform: translateY(-2px);
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery {
    padding-top: 45px;
}


.gallery-grid {
    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        1fr
        1fr;

    gap: 18px;
}


.gallery-grid img {
    width: 100%;

    height: 230px;

    object-fit: cover;

    border-radius: 15px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.gallery-grid img:hover {
    transform: scale(1.025);

    box-shadow:
        0 15px 35px
        rgba(6, 35, 55, 0.15);
}


/* =========================================================
   REVIEWS
   ========================================================= */

.reviews {
    background: var(--navy);

    color: var(--white);

    padding:
        65px
        5%;
}


.reviews .section-head {
    max-width: 1400px;

    margin:
        0
        auto
        30px;
}


.reviews .section-head p {
    color: #b8ccd4;
}


.reviews .section-head h2 {
    color: var(--white);
}


/* Review grid */

.review-grid {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


/* Review card */

.review-grid article {
    background: var(--white);

    color: var(--navy);

    border-radius: 15px;

    padding: 21px;

    display: grid;

    grid-template-columns:
        50px
        1fr;

    gap: 14px;

    align-items: start;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.review-grid article:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 35px
        rgba(0, 0, 0, 0.16);
}


/* Avatar */

.avatar {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #eaf6f1;

    display: grid;

    place-items: center;

    color: var(--green-dark);

    font-size: 20px;

    font-weight: 900;
}


.review-grid article b {
    font-size: 14px;
}


.stars {
    color: #f5b900;

    letter-spacing: 2px;

    font-size: 13px;

    margin:
        3px
        0;
}


.review-grid p {
    font-size: 12px;

    line-height: 1.55;

    color: #526873;

    margin-top: 5px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    padding-top: 70px;

    padding-bottom: 75px;
}


.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}


.contact-grid > a,
.contact-grid > div {
    border:
        1px solid var(--line);

    border-radius: 14px;

    padding: 23px;

    background: var(--white);

    box-shadow:
        0 5px 18px
        rgba(6, 35, 55, 0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.contact-grid > a:hover {
    transform: translateY(-5px);

    border-color:
        rgba(8, 197, 107, 0.35);

    box-shadow:
        0 14px 30px
        rgba(6, 35, 55, 0.10);
}


.contact-grid b {
    display: block;

    font-size: 15px;

    margin-bottom: 8px;
}


.contact-grid span {
    display: block;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background: var(--navy-dark);

    color: #d8e7eb;

    padding:
        52px
        5%
        0;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.3fr
        1.3fr;

    gap: 45px;

    max-width: 1400px;

    margin: auto;
}


/* Footer brand */

.footer-brand img {
    width: 65px;
    height: 65px;

    object-fit: contain;

    float: left;

    margin-right: 12px;

    background: var(--white);

    border-radius: 8px;
}


.footer-brand h3 {
    font-size: 23px;

    padding-top: 8px;

    color: var(--white);
}


.footer-brand h3 span {
    color: var(--green);
}


.footer-brand p {
    clear: both;

    padding-top: 15px;

    font-size: 12px;

    color: #a9c0c8;

    line-height: 1.7;
}


/* Footer headings */

.footer-grid h4 {
    color: var(--white);

    font-size: 14px;

    margin-bottom: 13px;
}


/* Footer links */

.footer-grid a,
.footer-grid p {
    display: block;

    font-size: 12px;

    color: #b4c8cf;

    margin: 7px 0;

    line-height: 1.55;

    transition:
        color 0.2s ease;
}


.footer-grid a:hover {
    color: var(--green-light);
}


/* Copyright */

.copyright {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.14);

    margin-top: 38px;

    padding:
        17px
        0;

    font-size: 11px;

    text-align: center;

    color: #9fb5bd;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.floating-wa {
    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 59px;
    height: 59px;

    border-radius: 50%;

    background: var(--green);

    color: var(--white);

    display: grid;

    place-items: center;

    font-size: 27px;

    box-shadow:
        0 12px 28px
        rgba(0, 0, 0, 0.20);

    z-index: 200;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.floating-wa:hover {
    transform: scale(1.08);

    background: var(--green-dark);
}


/* Pulse ring */

.floating-wa::before {
    content: "";

    position: absolute;

    inset: -5px;

    border:
        2px solid
        rgba(8, 197, 107, 0.35);

    border-radius: 50%;

    animation:
        pulse 2.4s ease-out infinite;
}


/* =========================================================
   SCROLL REVEAL ANIMATION
   ========================================================= */

.reveal-ready {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal-ready.is-visible {
    opacity: 1;

    transform: none;
}


/* Cards */

.category,
.service,
.product,
.review-grid article,
.contact-grid > * {
    will-change: transform;
}


/* =========================================================
   KEYFRAME ANIMATIONS
   ========================================================= */

@keyframes heroZoom {

    from {
        opacity: 0;
        transform: scale(1.045);
    }

    to {
        opacity: 1;
        transform: scale(1.01);
    }
}


@keyframes ratingFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


@keyframes pulse {

    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    70%,
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}


@keyframes studentFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-4deg);
    }

    50% {
        transform:
            translateY(-7px)
            rotate(2deg);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .header {
        padding: 0 4%;
    }


    .nav {
        gap: 22px;
    }


    .nav-whatsapp {
        margin-left: 15px;

        padding:
            14px
            18px;
    }


    .hero {
        grid-template-columns:
            43%
            57%;

        height: 520px;

        min-height: 520px;
    }


    .hero-copy,
    .hero-photo {
        height: 520px;

        min-height: 520px;
    }


    .hero h1 {
        font-size: 55px;
    }


    .category-grid {
        grid-template-columns:
            repeat(4, 1fr);

        gap: 17px;
    }


    .category {
        min-height: 245px;
    }


    .product-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }
}


/* =========================================================
   MOBILE / SMALL TABLET
   ========================================================= */

@media (max-width: 800px) {

    /* Topbar */

    .topbar {
        height: auto;

        min-height: 35px;

        padding:
            7px
            4%;

        font-size: 9px;

        flex-wrap: wrap;

        gap: 5px;
    }


    .top-links {
        display: none;
    }


    /* Header */

    .header {
        height: 72px;

        padding:
            0
            4%;
    }


    .brand {
        gap: 9px;
    }


    .brand img {
        width: 51px;
        height: 51px;
    }


    .brand-name {
        font-size: 19px;

        letter-spacing: -0.8px;
    }


    .brand-subtitle {
        font-size: 7px;

        letter-spacing: 2px;

        margin-top: 4px;
    }


    /* Mobile menu button */

    .menu-btn {
        display: block;

        margin-left: auto;
    }


    /* Navigation dropdown */

    .nav {
        display: none;

        position: absolute;

        top: 72px;

        left: 0;
        right: 0;

        background: var(--white);

        padding:
            8px
            5%;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        box-shadow:
            0 15px 25px
            rgba(0, 0, 0, 0.10);
    }


    .nav.open {
        display: flex;
    }


    .nav a {
        width: 100%;

        padding:
            14px
            0;

        border-bottom:
            1px solid
            var(--line);
    }


    .nav a.active::after {
        display: none;
    }


    .nav-whatsapp {
        display: none;
    }


    /* Hero */

    .hero {
        grid-template-columns: 1fr;

        height: auto;

        min-height: 0;
    }


    .hero-copy {
        height: auto;

        min-height: 475px;

        padding:
            55px
            7%;
    }


    .hero-photo {
        height: 430px;

        min-height: 430px;
    }


    .hero-photo img {
        object-position:
            center
            18%;
    }


    .hero h1 {
        font-size: 52px;
    }


    /* Categories */

    .category-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 17px;
    }


    .category {
        min-height: 250px;
    }


    .category img {
        height: 150px;
    }


    /* Sections */

    .section {
        padding:
            55px
            5%;
    }


    .section-head h2 {
        font-size: 34px;
    }


    /* Services */

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 19px;
    }


    /* Student offer */

    .student {
        grid-template-columns: 1fr;

        text-align: center;

        padding:
            30px
            22px;

        gap: 14px;
    }


    .student-icon .student-cap {
        font-size: 64px;
    }


    .student-content h2 {
        font-size: 36px;
    }


    .student-points {
        justify-content: center;
    }


    .student-note {
        justify-content: center;

        flex-direction: column;

        gap: 13px;
    }


    .student-paper {
        display: none;
    }


    /* Products */

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


    .product {
        min-height: 310px;
    }


    .product img {
        height: 195px;
    }


    /* Gallery */

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


    .gallery-grid img {
        height: 180px;
    }


    /* Reviews */

    .review-grid {
        grid-template-columns: 1fr;
    }


    /* Contact */

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


    /* Footer */

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 30px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .topbar {
        justify-content: center;

        text-align: center;
    }


    .topbar > div:nth-child(2) {
        display: none;
    }


    /* Hero */

    .hero-copy {
        min-height: 485px;

        padding:
            52px
            7%;
    }


    .hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }


    .hero h2 {
        font-size: 25px;
    }


    .hero-services {
        font-size: 13px;

        white-space: normal;

        line-height: 1.8;
    }


    .hero-desc {
        font-size: 14px;
    }


    .hero-buttons {
        flex-direction: column;

        gap: 10px;
    }


    .btn {
        width: 100%;
    }


    .trust {
        gap: 11px;

        font-size: 10px;

        line-height: 1.7;
    }


    .hero-photo {
        height: 360px;

        min-height: 360px;
    }


    .hero-photo img {
        object-position:
            center
            18%;
    }


    .rating {
        right: 5%;

        top: 8%;

        padding:
            12px
            15px;
    }


    .rating strong {
        font-size: 19px;
    }


    /* Categories */

    .categories {
        padding:
            22px
            5%
            40px;
    }

.category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.category {
    min-height: 225px !important;
    border-radius: 18px;
    overflow: hidden;
}

.category img {
    width: 100% !important;
    height: 125px !important;
    object-fit: cover !important;
}

.category h3 {
    font-size: 16px !important;
    line-height: 1.2;
    margin: 11px 6px 5px !important;
}

.category p {
    font-size: 11px !important;
    line-height: 1.35;
    margin: 0 6px 12px !important;
}

/* =========================================================
   AUDIO & MULTIMEDIA - TITLE FIX
   ========================================================= */

.category:nth-child(5) {
    overflow: hidden;
}

.category:nth-child(5) img {
    height: 142px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    padding: 4px;
    background: #f7faf9;

    transform: scale(1.20);
    transform-origin: center center;

    position: relative;
    z-index: 1;
}

/* Audio & Multimedia - keep image inside its area */
.category:nth-child(5) img {
    transform: scale(1);
}

.category:nth-child(5):hover img {
    transform: scale(1.045);
}


.category:nth-child(5) h3,
.category:nth-child(5) p {
    position: relative;
    z-index: 5;
    background: #ffffff;
}

.category:nth-child(5) h3 {
    margin-top: 20px;
    margin-bottom: 5px;
    line-height: 1.3;
}

.category:nth-child(5) p {
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.45;
}

    /* Section */

    .section {
        padding:
            50px
            5%;
    }


    .section-head {
        display: block;

        margin-bottom: 25px;
    }


    .section-head h2 {
        font-size: 32px;
    }


    .section-head p {
        font-size: 14px;
    }


    .view-all {
        display: inline-block;

        margin-top: 15px;
    }


    /* Services */

    .service-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    .service {
        height: 275px;
    }


    .service h3 {
        font-size: 21px;
    }


    /* Student */

    .student {
        margin:
            5px
            5%
            42px;

        padding:
            30px
            20px;
    }


    .student-content > span {
        font-size: 9px;

        letter-spacing: 3px;
    }


    .student-content h2 {
        font-size: 33px;
    }


    .student-content p {
        font-size: 14px;
    }


    .student-points {
        gap:
            7px
            13px;
    }


    .student-points span {
        font-size: 11px;
    }


    /* Products */

    .product-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    .product {
        min-height: 0;
    }


    .product img {
        height: 220px;
    }


    .product h3 {
        font-size: 16px;
    }


    /* Gallery */

    .gallery-grid {
        grid-template-columns: 1fr;
    }


    .gallery-grid img {
        height: 220px;
    }


    /* Contact */

    .contact-grid {
        grid-template-columns: 1fr;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    footer {
        padding:
            45px
            6%
            0;
    }


    /* WhatsApp */

    .floating-wa {
        width: 55px;
        height: 55px;

        right: 16px;
        bottom: 16px;

        font-size: 25px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }


    .reveal-ready {
        opacity: 1;

        transform: none;
    }

    /* ===== MOBILE HERO COMPACT FIX ===== */
@media (max-width:520px){

    .hero-copy{
        min-height:0 !important;
        padding:38px 7% 30px !important;
        justify-content:center;
    }

    .eyebrow{
        font-size:10px;
        letter-spacing:3px;
        margin-bottom:10px;
    }

    .hero h1{
        font-size:43px !important;
        line-height:.95;
    }

    .hero h2{
        font-size:24px !important;
        margin-top:7px;
    }

    .hero-services{
        font-size:13px !important;
        line-height:1.8;
        margin-top:12px;
    }

    .hero-desc{
        font-size:13px;
        margin-top:2px;
    }

    .hero-buttons{
        gap:10px;
        margin-top:19px;
    }

    .hero-buttons .btn{
        padding:12px 18px;
        min-height:48px;
    }

    .trust{
        gap:8px 14px;
        margin-top:19px;
        font-size:10px;
        line-height:1.5;
    }

    .hero-photo{
        height:300px !important;
    }

    .rating{
        right:5%;
        top:8%;
        padding:10px 13px;
    }

    .rating strong{
        font-size:18px;
    }

    .rating small{
        font-size:9px;
    }
}

/* Categories - Mobile 2 Column */
.category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.category {
    min-height: 225px !important;
    border-radius: 18px;
    overflow: hidden;
}

.category img {
    width: 100%;
    height: 125px !important;
    object-fit: cover;
}

.category h3 {
    font-size: 16px !important;
    line-height: 1.2;
    margin: 11px 6px 5px !important;
}

.category p {
    font-size: 11px !important;
    line-height: 1.35;
    margin: 0 6px 12px !important;
}

/* ===== MOBILE CATEGORY IMAGE POLISH ===== */
@media (max-width: 800px) {

    .category img {
        height: 125px !important;
        width: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        padding: 6px !important;
        background: #f7faf9;
    }

    /* Printing image ko clean rakho */
    .category:nth-child(2) img {
        object-fit: contain !important;
        transform: none !important;
    }

    /* Audio ki existing fix preserve */
    .category:nth-child(5) img {
        object-fit: contain !important;
        transform: none !important;
    }
}
    
}