/* ===================================
   ABOUT HERO SECTION
=================================== */

.about-hero {

    position: relative;

    padding: 180px 0 120px;

    overflow: hidden;

    background:
        radial-gradient(circle at top right,
            rgba(20, 184, 166, .18),
            transparent 30%),

        radial-gradient(circle at bottom left,
            rgba(245, 158, 11, .12),
            transparent 30%),

        linear-gradient(180deg,
            #f8fafc,
            #ffffff);
}

/* Background Shapes */

.about-bg-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    z-index: 0;
}

.shape-1 {

    width: 300px;
    height: 300px;

    background:
        rgba(20, 184, 166, .12);

    top: 50px;
    right: -80px;
}

.shape-2 {

    width: 250px;
    height: 250px;

    background:
        rgba(245, 158, 11, .12);

    bottom: 0;
    left: -80px;
}

/* Layout */

.about-hero-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 80px;

    align-items: center;
}

/* Badge */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    border-radius: 50px;

    background:
        rgba(20, 184, 166, .1);

    color: var(--primary);

    font-weight: 600;

    margin-bottom: 25px;
}

/* Heading */

.about-hero-content h1 {

    font-size:
        clamp(3rem, 6vw, 5.5rem);

    line-height: 1.05;

    margin-bottom: 25px;

    color: var(--dark);

    font-weight: 800;
}

.about-hero-content h1 span {

    display: block;

    color: var(--secondary);
}

/* Description */

.about-hero-content p {

    font-size: 1.1rem;

    line-height: 1.9;

    color: var(--text);

    max-width: 650px;

    margin-bottom: 35px;
}

/* Buttons */

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 40px;
}

/* Feature List */

.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;
}

.feature-item {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--dark);

    font-weight: 600;
}

.feature-item i {

    color: var(--secondary);
}

/* Hero Image */

.about-hero-image {

    position: relative;
}

.about-hero-image img {

    width: 100%;

    border-radius: 32px;

    display: block;

    box-shadow:
        0 30px 70px rgba(15, 23, 42, .15);

    transition: .6s ease;
}

.about-hero-image:hover img {

    transform:
        scale(1.03);
}

/* Floating Badges */

.floating-badge {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 22px;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, .95);

    backdrop-filter:
        blur(10px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);

    animation:
        floatBadge 4s ease-in-out infinite;
}

.floating-badge i {

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(20, 184, 166, .12);

    color: var(--primary);

    font-size: 1.2rem;
}

.floating-badge strong {

    display: block;

    color: var(--dark);
}

.floating-badge span {

    color: var(--text);

    font-size: .9rem;
}

.badge-1 {

    top: 30px;
    left: -40px;
}

.badge-2 {

    bottom: 30px;
    right: -30px;

    animation-delay: 2s;
}

/* Float Animation */

@keyframes floatBadge {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Stats Section */

.hero-stats {

    margin-top: 90px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.hero-stats .stat-card {

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    text-align: center;

    box-shadow:
        0 15px 40px rgba(15, 23, 42, .06);

    transition: .35s ease;
}

.hero-stats .stat-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 25px 60px rgba(20, 184, 166, .12);
}

.hero-stats h3 {

    font-size: 2.5rem;

    color: var(--primary);

    margin-bottom: 10px;
}

.hero-stats p {

    color: var(--text);
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px) {

    .about-hero-wrapper {

        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-buttons,
    .hero-features {

        justify-content: center;
    }

    .about-hero-image {

        max-width: 700px;

        margin: auto;
    }

    .hero-stats {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .badge-1,
    .badge-2 {

        display: none;
    }
}

@media(max-width:768px) {

    .about-hero {

        padding: 140px 0 90px;
    }

    .hero-stats {

        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {

        font-size: 2.8rem;
    }

    .hero-buttons {

        flex-direction: column;
    }

    .hero-buttons .btn {

        width: 100%;
    }
}

/* ===================================
   OUR STORY
=================================== */

.our-story {

    background: #ffffff;

    position: relative;
}

.story-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

/* Story Image */

.story-image {

    position: relative;
}

.story-image img {

    width: 100%;

    border-radius: 32px;

    display: block;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, .12);

    transition: .6s ease;
}

.story-image:hover img {

    transform: scale(1.03);
}

/* Experience Badge */

.experience-badge {

    position: absolute;

    left: -30px;

    bottom: 40px;

    background: #ffffff;

    padding: 25px 30px;

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);

    text-align: center;

    z-index: 2;

    animation:
        floatExperience 4s ease-in-out infinite;
}

.experience-badge h3 {

    font-size: 2.5rem;

    color: var(--primary);

    margin-bottom: 8px;
}

.experience-badge span {

    color: var(--text);

    font-size: .95rem;
}

@keyframes floatExperience {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Story Content */

.section-tag {

    display: inline-flex;

    align-items: center;

    padding: 10px 20px;

    border-radius: 999px;

    background:
        rgba(20, 184, 166, .1);

    color: var(--primary);

    font-weight: 600;

    margin-bottom: 20px;
}

.story-content h2 {

    font-size:
        clamp(2.8rem, 5vw, 4.5rem);

    line-height: 1.1;

    color: var(--dark);

    margin-bottom: 25px;
}

.story-content p {

    color: var(--text);

    line-height: 1.9;

    margin-bottom: 20px;

    font-size: 1.05rem;
}

/* Highlights */

.story-highlights {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    margin-top: 35px;
}

.highlight-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px;

    background: #f8fafc;

    border-radius: 18px;

    transition: .35s ease;
}

.highlight-item:hover {

    transform:
        translateY(-5px);

    background: #ffffff;

    box-shadow:
        0 15px 35px rgba(20, 184, 166, .12);
}

.highlight-item i {

    color: var(--secondary);

    font-size: 1.1rem;
}

.highlight-item span {

    font-weight: 600;

    color: var(--dark);
}

/* ===================================
   COMPANY JOURNEY
=================================== */

/* ====================================
   PREMIUM ASYMMETRICAL TIMELINE DESIGN
==================================== */

.company-journey {
    position: relative;
    background-color: #f8fafc;
    /* Clean background slate contrast */
    padding: 120px 0;
    overflow: hidden;
}

.modern-timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Central spine layout tracking path */
.timeline-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #cbd5e1;
    transform: translateX(-50%);
    border-radius: 4px;
    z-index: 1;
}

/* Single row step item nodes */
.timeline-node {
    position: relative;
    display: flex;
    width: 100%;
    z-index: 2;
}

/* Alternate positioning right and left down the track grid array */
.timeline-node:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-node:nth-child(even) {
    justify-content: flex-end;
}

/* Card panel containers layout base system */
.timeline-panel {
    width: calc(50% - 50px);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.01), 0 2px 4px -1px rgba(15, 23, 42, 0.01);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

/* Year Badge Capsular indicators layout spacing metrics */
.year-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #e6f3f2;
    /* Light brand accent teal tint */
    color: #0f766e;
    /* Main primary theme color */
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.panel-body h3 {
    font-size: 1.35rem;
    color: #08111f;
    margin-bottom: 10px;
    font-weight: 700;
}

.panel-body p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* --- CENTER TIMELINE MARKERS & INTERACTION POINTS --- */

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 36px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    z-index: 5;
}

.marker-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #0f766e;
    border: 4px solid #ffffff;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15);
    transition: all 0.4s ease;
}

/* Decorative animated rings mimicking modern active trace grids */
.pulse-ring {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid #14b8a6;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.4s ease;
}

/* --- HOVER DESKTOP RESPONSIVENESS MICRO-EFFECTS --- */

.timeline-node:hover .timeline-panel {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 10px 10px -5px rgba(15, 23, 42, 0.02);
    border-color: rgba(15, 118, 110, 0.25);
}

.timeline-node:hover .marker-dot {
    background: #14b8a6;
    box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.25);
}

.timeline-node:hover .pulse-ring {
    animation: timelinePulse 1.5s infinite ease-out;
}

@keyframes timelinePulse {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ====================================================================
   CROSS-DEVICE ULTRA-RESPONSIVE BREAKPOINT GRID LOGIC
==================================================================== */
@media (max-width: 768px) {

    /* 1. Snap central spine line to the left edge margin layout border zone */
    .timeline-spine {
        left: 16px;
        transform: none;
    }

    /* 2. Overwrite side alternate directional distribution rules */
    .timeline-node {
        justify-content: flex-start !important;
        padding-left: 44px;
        width: 100%;
    }

    /* 3. Force cards to span the complete width canvas natively */
    .timeline-panel {
        width: 100% !important;
        padding: 24px;
    }

    /* 4. Relocate tracking center indicator point modules */
    .timeline-marker {
        left: 16px;
        top: 32px;
    }
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px) {

    .story-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .story-content {

        text-align: center;
    }

    .story-highlights {

        max-width: 700px;

        margin-left: auto;
        margin-right: auto;
    }

    .experience-badge {

        left: 20px;
    }

    .timeline::before {

        left: 60px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {

        flex-direction: row;

        padding-left: 140px;
    }

    .timeline-year {

        position: absolute;

        left: 0;

        width: 90px;
        height: 90px;

        font-size: 1rem;
    }

    .timeline-content {

        width: 100%;
    }
}

@media(max-width:768px) {

    .story-highlights {

        grid-template-columns: 1fr;
    }

    .experience-badge {

        display: none;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {

        padding-left: 0;

        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

    .timeline::before {

        display: none;
    }

    .timeline-year {

        position: relative;
    }

    .timeline-content {

        width: 100%;
    }

    .story-content h2 {

        font-size: 2.4rem;
    }
}

/* ===================================
   WHY CHOOSE US
=================================== */

.why-choose-us {

    padding: 120px 0;

    background:
        linear-gradient(180deg,
            #ffffff,
            #f8fafc);

    position: relative;
}

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;

    margin-top: 70px;
}

.why-card {

    background: #ffffff;

    border-radius: 30px;

    padding: 40px 30px;

    text-align: center;

    position: relative;

    overflow: hidden;

    transition: .4s ease;

    box-shadow:
        0 15px 40px rgba(15, 23, 42, .06);

    border: 1px solid rgba(226, 232, 240, .7);
}

.why-card::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    background:
        radial-gradient(rgba(20, 184, 166, .12),
            transparent 70%);

    top: -120px;
    right: -120px;

    opacity: 0;

    transition: .4s ease;
}

.why-card:hover::before {

    opacity: 1;
}

.why-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 25px 70px rgba(20, 184, 166, .15);
}

.why-icon {

    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            rgba(20, 184, 166, .12),
            rgba(15, 118, 110, .08));

    transition: .4s ease;
}

.why-card:hover .why-icon {

    transform:
        rotate(8deg) scale(1.08);
}

.why-icon i {

    font-size: 2rem;

    color: var(--primary);
}

.why-card h3 {

    font-size: 1.4rem;

    margin-bottom: 15px;

    color: var(--dark);
}

.why-card p {

    color: var(--text);

    line-height: 1.8;
}

/* ===================================
   CORE VALUES
=================================== */

.core-values {

    padding: 120px 0;

    background: #08111f;

    position: relative;

    overflow: hidden;
}

.core-values::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(20, 184, 166, .15),
            transparent 70%);

    top: -250px;
    right: -150px;
}

.core-values::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(245, 158, 11, .12),
            transparent 70%);

    bottom: -150px;
    left: -100px;
}

.values-wrapper {

    position: relative;

    z-index: 2;
}

.values-content {

    text-align: center;

    max-width: 800px;

    margin: auto;

    margin-bottom: 70px;
}

.values-content .section-tag {

    margin-bottom: 20px;
}

.values-content h2 {

    color: #ffffff;

    font-size:
        clamp(2.8rem, 5vw, 4.5rem);

    line-height: 1.1;

    margin-bottom: 25px;
}

.values-content p {

    color:
        rgba(255, 255, 255, .75);

    line-height: 1.9;
}

.values-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}

/* Value Card */

.value-card {

    position: relative;

    padding: 45px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, .05);

    backdrop-filter:
        blur(15px);

    border:
        1px solid rgba(255, 255, 255, .08);

    transition: .4s ease;

    overflow: hidden;
}

.value-card::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(20, 184, 166, .12),
            transparent 70%);

    top: -100px;
    right: -100px;

    opacity: 0;

    transition: .4s ease;
}

.value-card:hover::before {

    opacity: 1;
}

.value-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(20, 184, 166, .25);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .25);
}

.value-number {

    font-size: 4rem;

    font-weight: 800;

    color:
        rgba(20, 184, 166, .25);

    line-height: 1;

    margin-bottom: 20px;
}

.value-card h3 {

    color: #ffffff;

    font-size: 1.7rem;

    margin-bottom: 15px;
}

.value-card p {

    color:
        rgba(255, 255, 255, .75);

    line-height: 1.9;
}

/* ===================================
   ANIMATIONS
=================================== */



@keyframes fadeUpCard {

    from {

        opacity: 0;

        transform:
            translateY(40px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1200px) {

    .why-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media(max-width:991px) {

    .values-grid {

        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .why-grid {

        grid-template-columns: 1fr;
    }

    .value-card {

        padding: 35px 25px;
    }

    .value-number {

        font-size: 3rem;
    }

    .values-content h2 {

        font-size: 2.4rem;
    }
}

/* ===================================
   STORE GALLERY
=================================== */

.store-gallery {

    padding: 120px 0;

    background: #ffffff;

    position: relative;
}

.gallery-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-rows: 280px;

    gap: 24px;
}

/* Large Card */

.gallery-large {

    grid-column: span 2;

    grid-row: span 2;
}

/* Wide Card */

.gallery-wide {

    grid-column: span 2;
}

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    cursor: pointer;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, .08);
}

.gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .8s ease;
}

.gallery-item:hover img {

    transform:
        scale(1.12);
}

.gallery-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .05));

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 35px;

    opacity: .95;

    transition: .4s ease;
}

.gallery-item:hover .gallery-overlay {

    background:
        linear-gradient(to top,
            rgba(15, 118, 110, .88),
            rgba(0, 0, 0, .15));
}

.gallery-overlay h3 {

    color: #fff;

    font-size: 1.5rem;

    margin-bottom: 8px;

    transform: translateY(15px);

    transition: .4s ease;
}

.gallery-overlay p {

    color:
        rgba(255, 255, 255, .85);

    transform: translateY(15px);

    transition: .4s ease .1s;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {

    transform: translateY(0);
}

/* ===================================
   ACHIEVEMENTS
=================================== */

.achievements {

    padding: 120px 0;

    background:
        linear-gradient(135deg,
            #08111f,
            #0f172a);

    position: relative;

    overflow: hidden;
}

.achievements::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(20, 184, 166, .15),
            transparent 70%);

    top: -250px;
    right: -150px;
}

.achievements::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(245, 158, 11, .12),
            transparent 70%);

    bottom: -150px;
    left: -100px;
}

.achievement-wrapper {

    position: relative;

    z-index: 2;
}

.achievement-content {

    text-align: center;

    max-width: 800px;

    margin: auto;

    margin-bottom: 70px;
}

.achievement-content h2 {

    color: #ffffff;

    font-size:
        clamp(2.8rem, 5vw, 4.5rem);

    line-height: 1.1;

    margin: 20px 0;
}

.achievement-content p {

    color:
        rgba(255, 255, 255, .75);

    line-height: 1.9;
}

.achievement-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;
}

.achievement-card {

    background:
        rgba(255, 255, 255, .06);

    backdrop-filter:
        blur(15px);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 30px;

    padding: 40px 25px;

    text-align: center;

    transition: .4s ease;
}

.achievement-card:hover {

    transform:
        translateY(-12px);

    border-color:
        rgba(20, 184, 166, .25);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .25);
}

.achievement-icon {

    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            rgba(20, 184, 166, .15),
            rgba(15, 118, 110, .08));
}

.achievement-icon i {

    font-size: 2rem;

    color: #14b8a6;
}

.achievement-card h3 {

    color: #ffffff;

    font-size: 2.3rem;

    margin-bottom: 10px;
}

.achievement-card p {

    color:
        rgba(255, 255, 255, .75);
}

/* ===================================
   ANIMATIONS
=================================== */

.gallery-item,
.achievement-card {

    animation:
        fadeUpGallery .8s ease forwards;
}

@keyframes fadeUpGallery {

    from {

        opacity: 0;

        transform:
            translateY(40px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1200px) {

    .achievement-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media(max-width:991px) {

    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .gallery-large,
    .gallery-wide {

        grid-column: span 2;
    }
}

@media(max-width:768px) {

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 260px;
    }

    .gallery-large,
    .gallery-wide {

        grid-column: auto;

        grid-row: auto;
    }

    .achievement-grid {

        grid-template-columns: 1fr;
    }

    .achievement-content h2 {

        font-size: 2.4rem;
    }
}
/* ===================================
   OUR TEAM
=================================== */

.our-team {

    padding: 120px 0;

    background: #ffffff;
}

.team-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

.team-card {

    background: #ffffff;

    border-radius: 30px;

    padding: 45px 30px;

    text-align: center;

    position: relative;

    overflow: hidden;

    border: 1px solid #edf2f7;

    transition: .4s ease;

    box-shadow:
        0 15px 40px rgba(15, 23, 42, .05);
}

.team-card::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(20, 184, 166, .12),
            transparent 70%);

    top: -120px;
    right: -120px;

    opacity: 0;

    transition: .4s ease;
}

.team-card:hover::before {

    opacity: 1;
}

.team-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 30px 70px rgba(20, 184, 166, .15);
}

.team-icon {

    width: 100px;
    height: 100px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 28px;

    background:
        linear-gradient(135deg,
            rgba(20, 184, 166, .12),
            rgba(15, 118, 110, .08));

    transition: .4s ease;
}

.team-card:hover .team-icon {

    transform:
        rotate(10deg) scale(1.08);
}

.team-icon i {

    font-size: 2.2rem;

    color: var(--primary);
}

.team-card h3 {

    font-size: 1.5rem;

    margin-bottom: 15px;

    color: var(--dark);
}

.team-card p {

    color: var(--text);

    line-height: 1.8;
}

/* ===================================
   LOCATIONS
=================================== */

.about-locations {

    padding: 120px 0;

    background:
        linear-gradient(180deg,
            #f8fafc,
            #ffffff);
}

.locations-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 25px;
}

.location-card {

    background: #ffffff;

    border-radius: 28px;

    padding: 35px 25px;

    text-align: center;

    position: relative;

    overflow: hidden;

    transition: .4s ease;

    border: 1px solid #edf2f7;

    box-shadow:
        0 15px 40px rgba(15, 23, 42, .05);
}

.location-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 25px 60px rgba(20, 184, 166, .12);
}

.location-number {

    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    font-size: 1.2rem;

    font-weight: 700;

    color: #ffffff;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    box-shadow:
        0 15px 35px rgba(20, 184, 166, .25);
}

.location-card h3 {

    margin-bottom: 15px;

    font-size: 1.4rem;

    color: var(--dark);
}

.location-card p {

    color: var(--text);

    line-height: 1.8;
}

/* ===================================
   CTA SECTION
=================================== */

.about-cta {

    padding: 120px 0;

    background: #ffffff;
}

.cta-box {

    position: relative;

    overflow: hidden;

    border-radius: 40px;

    padding: 90px;

    text-align: center;

    background:
        linear-gradient(135deg,
            #0f766e,
            #14b8a6);

    color: #ffffff;
}

.cta-box::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);

    top: -180px;
    right: -120px;
}

.cta-box::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);

    bottom: -120px;
    left: -80px;
}

.cta-box span {

    position: relative;

    display: inline-flex;

    padding: 12px 22px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .15);

    font-weight: 600;

    margin-bottom: 20px;
}

.cta-box h2 {

    position: relative;

    font-size:
        clamp(2.8rem, 5vw, 4.8rem);

    line-height: 1.1;

    margin-bottom: 20px;
}

.cta-box p {

    position: relative;

    max-width: 700px;

    margin: auto auto 40px;

    color:
        rgba(255, 255, 255, .88);

    line-height: 1.9;
}

.cta-buttons {

    position: relative;

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {

    background: #ffffff;

    color: var(--dark);
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1200px) {

    .team-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .locations-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }
}

@media(max-width:991px) {

    .cta-box {

        padding: 70px 40px;
    }

    .locations-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .team-grid {

        grid-template-columns: 1fr;
    }

    .locations-grid {

        grid-template-columns: 1fr;
    }

    .cta-box {

        padding: 60px 25px;
    }

    .cta-buttons {

        flex-direction: column;
    }

    .cta-buttons .btn {

        width: 100%;
    }

    .cta-box h2 {

        font-size: 2.4rem;
    }
}
.retail-heading {

    text-align: center;

    max-width: 900px;

    margin: 0 auto 70px;
}

.heading-tag {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 24px;

    background: #ecfdf5;

    color: #0f766e;

    border-radius: 50px;

    font-size: .95rem;
    font-weight: 600;

    margin-bottom: 20px;
}

.heading-content {

    max-width: 100%;
}

.heading-content h2 {

    font-size: clamp(2rem, 3vw, 3.2rem);
        line-height: 1.15;
        letter-spacing: -1px;

    font-weight: 800;

   

    margin-bottom: 20px;

    color: #08111f;
}
.values-content h2,
.achievement-content h2,
.story-content h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}
.heading-content h2 span {

    color: #14b8a6;
}

.heading-content p {

    max-width: 700px;

    margin: auto;

    font-size: 1.1rem;

    line-height: 1.8;

    color: #64748b;
}

.why-card,
.value-card,
.gallery-item,
.stat-card {
    opacity: 0;
    transform: translateY(50px);
    transition: .8s;
}

.show {
    opacity: 1;
    transform: translateY(0);
}.why-card,
.value-card,
.gallery-item,
.stat-card,
.achievement-card,
.team-card,
.location-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================================================
   MOBILE HERO & SECTION HEADINGS COMPRESSION FIX
==================================================================== */
@media (max-width: 768px) {

    /* 1. Prevent Hero Main Titles from breaking clumsily over lines */
    .about-hero-content h1 {
        font-size: 2.2rem !important;
        /* Forces title typography down to proper proportions */
        line-height: 1.2 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 16px !important;
    }

    /* 2. Standardize Section Headers across the entire page layout */
    .retail-heading,
    .values-content,
    .achievement-content,
    .story-content {
        margin-bottom: 40px !important;
        /* Compresses excess vertical margin spaces */
        padding: 0 10px !important;
    }

    /* Target all standard inner h2 section headers strictly on mobile screens */
    .heading-content h2,
    .values-content h2,
    .achievement-content h2,
    .story-content h2 {
        font-size: 1.8rem !important;
        /* Perfectly balanced title metrics for smartphones */
        line-height: 1.25 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 12px !important;
    }

    /* 3. Scale down secondary subtitle labels */
    .heading-content p,
    .values-content p,
    .achievement-content p,
    .story-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        color: #64748b !important;
    }

    /* 4. Shrink the upper tag capsule pill sizes slightly */
    .heading-tag,
    .section-tag,
    .hero-badge {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
        margin-bottom: 14px !important;
    }
}