/* ===== CSS VARIABLES & THEME ===== */
:root {
    --bg-color: #f7ebe7;
    --bg-alt: #ecd1c8;
    --text-primary: #2b1f18;
    --text-secondary: #70574f;

    --accent-primary: #c21e02;
    --accent-secondary: #a15a44;
    --accent-gradient: linear-gradient(135deg, #c21e02, #9b1701, #361c13);

    --glass-bg: rgba(255, 249, 245, 0.85);
    --glass-border: rgba(194, 30, 2, 0.14);

    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --nav-text: #f4f4f4;
    --nav-fade: rgba(16, 24, 36, 0.85);
    --nav-hover: #ffb29d;
    --footer-bg: #120907;
    --footer-text: #f8f2ee;
    --footer-muted: #d3b1a5;
    --footer-accent: #ff9c7f;
    --footer-border: rgba(255, 209, 200, 0.12);
}

/* Load HandelGothic if available locally or from /fonts — place woff/woff2 files in the fonts/ folder */
@font-face {
    font-family: 'HandelGothic';
    src: local('HandelGothic'), local('Handel Gothic'),
         url('fonts/HandelGothic.woff2') format('woff2'),
         url('fonts/HandelGothic.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.relent-font {
    font-family: 'HandelGothic', 'Handel Gothic', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgb(190, 0, 0);
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.dark-bg {
    background: rgba(225, 230, 245, 0.55);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-aboutus {
    background-color: rgb(255, 222, 216, 0.5);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-products {}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

.w-100 {
    width: 100%;
}

.placeholder-img {
    background: linear-gradient(135deg, #f6dfd9, #e2b8a5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

/* ===== GLASSMORPHISM ===== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

/* ===== PRODUCT SHOWCASE (NEW) ===== */
.section-products {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(255, 222, 216, 0.35) 100%);
}

.section-products .container {
    position: relative;
    z-index: 1;
}

/* Decorative blobs */
.prod-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.prod-blob-1 {
    top: -12%;
    left: -8%;
    width: 540px;
    height: 540px;
    background: radial-gradient(ellipse at center, rgba(194, 30, 2, 0.13) 0%, transparent 68%);
    animation: prodBlob1 10s ease-in-out infinite alternate;
}

.prod-blob-2 {
    bottom: -8%;
    right: -6%;
    width: 440px;
    height: 440px;
    background: radial-gradient(ellipse at center, rgba(161, 90, 68, 0.11) 0%, transparent 65%);
    animation: prodBlob2 13s ease-in-out infinite alternate;
}

.prod-blob-3 {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(194, 30, 2, 0.06) 0%, transparent 70%);
    animation: prodBlob1 16s ease-in-out infinite alternate-reverse;
}

@keyframes prodBlob1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(28px, 20px) scale(1.12); }
}

@keyframes prodBlob2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-22px, -16px) scale(1.1); }
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

/* Base card */
.psc-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.psc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(194, 30, 2, 0.14);
}

/* Gradient top bar */
.psc-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 24px 24px 0 0;
    transform: scaleX(0.4);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.psc-card:hover .psc-top-bar {
    transform: scaleX(1);
}

/* Featured (middle) card — elevated */
.psc-card.psc-featured {
    background: linear-gradient(145deg, #fff9f8 0%, #fff0ed 100%);
    border-color: rgba(194, 30, 2, 0.22);
    box-shadow: 0 12px 40px rgba(194, 30, 2, 0.1);
    transform: translateY(-6px);
}

.psc-card.psc-featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 28px 64px rgba(194, 30, 2, 0.18);
}

.psc-card.psc-featured .psc-top-bar {
    height: 5px;
    transform: scaleX(1);
}

/* "Most Popular" ribbon */
.psc-featured-badge {
    position: absolute;
    top: 18px;
    right: -28px;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 2.4rem;
    transform: rotate(38deg);
    pointer-events: none;
}

/* Icon */
.psc-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(194, 30, 2, 0.1), rgba(194, 30, 2, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: transform 0.35s ease, background 0.35s ease;
}

.psc-card:hover .psc-icon-wrap {
    transform: scale(1.1) rotate(-4deg);
    background: linear-gradient(135deg, rgba(194, 30, 2, 0.18), rgba(194, 30, 2, 0.1));
}

.psc-icon-wrap svg {
    width: 42px;
    height: 42px;
}

/* Content area */
.psc-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.psc-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    background: rgba(194, 30, 2, 0.08);
    border: 1px solid rgba(194, 30, 2, 0.16);
    border-radius: 99px;
    padding: 0.25rem 0.85rem;
    margin-bottom: 0.8rem;
    width: fit-content;
}

.psc-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.psc-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Feature list */
.psc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.psc-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.psc-feature-list li svg {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* Tags / chips */
.psc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

.psc-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(43, 31, 24, 0.07);
    border-radius: 99px;
    padding: 0.25rem 0.8rem;
    border: 1px solid rgba(43, 31, 24, 0.1);
    transition: background 0.2s, color 0.2s;
}

.psc-card:hover .psc-tags span {
    background: rgba(194, 30, 2, 0.07);
    color: var(--accent-primary);
    border-color: rgba(194, 30, 2, 0.18);
}

/* CTA link at card bottom */
.psc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-decoration: none;
    padding: 0.7rem 0;
    border-top: 1px solid rgba(194, 30, 2, 0.1);
    margin-top: auto;
    transition: gap 0.25s ease, opacity 0.25s;
}

.psc-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.psc-link:hover svg {
    transform: translateX(4px);
}

/* ===== STATS STRIP ===== */
.products-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 3rem;
    flex-wrap: wrap;
}

.pstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 2.5rem;
    text-align: center;
}

.pstat-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pstat-number sup {
    font-size: 1.1rem;
    font-weight: 700;
}

.pstat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pstat-divider {
    width: 1px;
    height: 48px;
    background: var(--glass-border);
    flex-shrink: 0;
}

/* ===== SERVICES SECTION ===== */
.section-services {
    position: relative;
    background: linear-gradient(135deg, rgba(247, 235, 231, 0.7) 0%, rgba(252, 245, 241, 0.5) 100%);
    overflow: hidden;
}

.services-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
}

.services-blob-1 {
    top: -8%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(ellipse at center, rgba(194, 30, 2, 0.08) 0%, transparent 65%);
    animation: servBlob1 14s ease-in-out infinite alternate;
}

.services-blob-2 {
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(161, 90, 68, 0.09) 0%, transparent 65%);
    animation: servBlob2 15s ease-in-out infinite alternate-reverse;
}

@keyframes servBlob1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(24px, 18px) scale(1.1); }
}

@keyframes servBlob2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-20px, -14px) scale(1.08); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

/* Service Card */
.service-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.35s ease;
    min-height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(194, 30, 2, 0.12);
    border-color: rgba(194, 30, 2, 0.22);
}

/* Service top bar gradient */
.service-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover .service-top-bar {
    transform: scaleX(1);
}

/* Service Icon */
.service-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(194, 30, 2, 0.12), rgba(194, 30, 2, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: transform 0.35s ease, background 0.35s ease;
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.15) rotate(6deg);
    background: linear-gradient(135deg, rgba(194, 30, 2, 0.18), rgba(194, 30, 2, 0.1));
}

.service-icon-wrap svg {
    width: 40px;
    height: 40px;
}

/* Service Content */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Services section actions */
.services-actions {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* ===== TESTIMONIALS ===== */
.section-testimonials {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(255,250,248,0.6), rgba(247,235,231,0.4));
    overflow: hidden;
}

.test-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.22;
    z-index: 1;
}

.test-blob-1 {
    left: -6%;
    top: 10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at center, rgba(194,30,2,0.14), transparent 60%);
}

.test-blob-2 {
    right: -6%;
    bottom: -8%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle at center, rgba(161,90,68,0.12), transparent 60%);
}

.testimonial-wrap {
    position: relative;
    z-index: 10;
}

.testimonial-container {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.testimonial-item {
    display: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    max-width: 980px;
    width: 100%;
    box-shadow: 0 8px 28px rgba(16,24,36,0.06);
    align-items: center;
    gap: 1.25rem;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2,0.9,0.2,1);
}

.testimonial-item.active {
    display: flex;
    opacity: 1;
}

.testimonial-media img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid rgba(255,255,255,0.92);
    box-shadow: 0 18px 40px rgba(16,24,36,0.16);
}

.testimonial-body {
    flex: 1;
}

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
}

.testimonial-meta .client-name {
    display: block;
    font-weight: 800;
    color: var(--text-primary);
    font-size: 1.05rem;
}
.testimonial-meta .client-designation {
    display: block;
    font-size: 0.95rem;
    color: var(--accent-secondary);
    margin-top: 0.15rem;
}
.testimonial-meta .client-company {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.testimonial-controls {
    display:flex;
    justify-content:center;
    gap:0.5rem;
    margin-top:1rem;
}

.tc-dot {
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(16,24,36,0.12);
    border: 2px solid rgba(255,255,255,0.08);
    cursor:pointer;
}

.tc-dot.active { background: var(--accent-primary); box-shadow: 0 6px 18px rgba(194,30,2,0.18); }

/* Small screens adjustments */
@media (max-width: 720px) {
    .testimonial-container { flex-direction: column; }
    .testimonial-media img { width: 140px; height:140px; border-width:4px; }
    .testimonial-quote { font-size: 1rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-showcase {
        grid-template-columns: 1fr 1fr;
    }

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

    .psc-card.psc-featured {
        grid-column: 1 / -1;
        transform: none;
        flex-direction: row;
        gap: 2rem;
        align-items: flex-start;
    }

    .psc-card.psc-featured:hover {
        transform: translateY(-6px);
    }

    .psc-card.psc-featured .psc-icon-wrap {
        flex-shrink: 0;
    }
}

@media (max-width: 720px) {
    .products-showcase {
        grid-template-columns: 1fr;
    }

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

    .psc-card.psc-featured {
        flex-direction: column;
    }

    .products-stats {
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .pstat {
        padding: 0.5rem 1.25rem;
    }

    .pstat-number {
        font-size: 1.8rem;
    }

    .pstat-divider {
        display: none;
    }
}

/* ===== BUTTONS ===== */

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(29, 49, 86, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(29, 49, 86, 0.32);
}

.btn-secondary {
    background: rgba(29, 49, 86, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(29, 49, 86, 0.2);
}

.btn-secondary:hover {
    background: rgba(29, 49, 86, 0.14);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(29, 49, 86, 0.7);
}

.btn-outline:hover {
    background: rgba(29, 49, 86, 0.08);
    color: var(--text-primary);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(29, 49, 86, 0.18);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-main);
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #a15a44;
    box-shadow: 0 0 14px rgba(194, 30, 2, 0.18);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: var(--transition);
    background: transparent;
    color: var(--nav-text);
}

.navbar.scrolled {
    background: rgba(8, 18, 42, 0.92);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled .logo,
.navbar.scrolled .logo-subtitle {
    color: #fff;
}

.logo-container {
    display: flex;
    flex-direction: column;
    width: fit-content;
    line-height: 1;
}

.logo, .footer-brand-logo {
    font-family: 'HandelGothic', 'Handel Gothic', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgb(190, 0, 0);
    margin: 0;
}

.footer-brand-logo {
    color: #fff;
    font-size: 2.8rem !important;
}

.logo-subtitle {
    font-family: 'HandelGothic', 'Handel Gothic', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-top: 4px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-brand .logo-subtitle {
    color: #ffefef;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.95;
    position: relative;
    color: var(--text-primary);
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--accent-primary);
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-links a.active,
.navbar.scrolled .nav-links a:hover {
    color: #fff;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.nav-action-btn {
    margin-left: 1rem;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
}

.mobile-nav-links li:last-child a {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.mobile-nav-links .btn-primary {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--nav-text);
    transition: var(--transition);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--nav-text);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(8, 18, 42, 0.96);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    font-size: 1.4rem;
}

.mobile-nav-links a {
    color: var(--nav-text);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--nav-hover);
}

.mobile-nav-links .btn-primary {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    font-size: 1rem;
}

/* ===== HERO / 3D SLIDER SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0;
}

#three-slider-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.hero-cutout {
    width: 100%;
    max-width: 520px;
    transform: translateZ(0);
        transform-origin: center center;
}

.hero-copy h1 {
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.hero-features li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: var(--text-primary);
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
}

.hero-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.slider-controls {
    pointer-events: all;
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        padding: 1.5rem;
    }

    .slider-controls {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-copy h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ===== PAGE HEADER (FOR INTERNAL PAGES) ===== */
.page-header {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-color) 100%);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Decorative blobs for page header */
.header-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
    opacity: 0.6;
}

.header-blob-1 {
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(194, 30, 2, 0.12) 0%, transparent 70%);
}

.header-blob-2 {
    bottom: -15%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(161, 90, 68, 0.1) 0%, transparent 70%);
}


/* ===== FEATURES ===== */
.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ===== ABOUT SNIPPET & PAGE ===== */
.about-snippet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.about-text p {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.8;
    max-width: 520px;
}

/* Image wrapper — no box, just floating art */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
}

/* Radial accent glow behind image */
.about-img-wrap::before {
    content: '';
    position: absolute;
    inset: -12% -10%;
    background: radial-gradient(ellipse at 60% 55%, rgba(194, 30, 2, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: aboutGlow 6s ease-in-out infinite alternate;
}

@keyframes aboutGlow {
    from {
        transform: scale(1) translate(0, 0);
        opacity: 0.85;
    }

    to {
        transform: scale(1.08) translate(4px, -6px);
        opacity: 1;
    }
}

.about-img-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: aboutFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 24px 40px rgba(194, 30, 2, 0.22));
}

@keyframes aboutFloat {
    0% {
        transform: translateY(0px);
    }

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

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

/* Responsive */
@media (max-width: 960px) {
    .about-snippet {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-text p {
        max-width: 100%;
    }

    .about-image {
        order: -1;
        /* image first on mobile */
    }

    .about-img-wrap {
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .about-img-wrap {
        max-width: 280px;
    }
}


/* ===== AUTHORITY MESSAGE ===== */
.authority-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 4rem 3rem;
}

.quote-icon {
    font-size: 5rem;
    color: var(--accent-primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
    font-family: serif;
}

.authority-message {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
}

.authority-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.avatar-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #333;
}

.authority-profile h4 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.authority-profile span {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

/* ===== TESTIMONIAL SLIDER ===== */

.testimonial-container {
    position: relative;
}

.testimonial-item {
    display: none;
    align-items: stretch;
    gap: 2rem;
}

.testimonial-item.active {
    display: flex;
}

/* Keep equal height for all slides */
.testimonial-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px; /* adjust based on design */
    width: 100%;
}

/* Clamp long text */
.testimonial-quote {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8; /* number of visible lines */
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

/* Expanded state */
.testimonial-quote.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* Read More button */
.read-more-btn {
    margin-top: 12px;
    background: none;
    border: none;
    color: var(--accent-primary);
    cursor: pointer;
    font-weight: 600;
    padding: 0;
    font-size: 0.95rem;
}

.read-more-btn:hover {
    opacity: 0.8;
}

/* Mobile */
@media(max-width:768px) {
    .testimonial-item.active {
        flex-direction: column;
    }

    .testimonial-body {
        min-height: 500px;
    }
}

/* ===== CLIENT GRID ===== */
.client-grid-section {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.client-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(29, 49, 86, 0.06);
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(29, 49, 86, 0.12);
}

.client-card img {
    display: block;
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem;
}

.client-card .client-meta {
    padding: 0 0.25rem;
}

.client-card .client-meta h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.client-card .client-meta p {
    margin: 0.5rem 0 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.4;
}

.client-card.hidden {
    display: none;
}

.client-actions {
    text-align: center;
    margin-top: 2rem;
}

.section-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    color: var(--accent-secondary);
}

@media (max-width: 1200px) {
    .client-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .client-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .client-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== NEWS GRID ===== */
.news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.news-card {
    padding: 0;
    overflow: hidden;
}

.news-img {
    height: 200px;
    border-radius: 16px 16px 0 0;
    border: none;
    border-bottom: 1px solid var(--glass-border);
}

.news-content {
    padding: 2rem;
}

.news-content .date {
    display: block;
    color: var(--accent-primary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #a39081;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-primary);
}

/* ===== TEAM ===== */
.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.team-card {
    text-align: center;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid var(--accent-primary);
}

/* ===== CAREERS ===== */
.careers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.job-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.legal-content p, .legal-content ul {
    margin-bottom: 1.5rem;
    color: var(--footer-muted);
}

.legal-content ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 54px;
    height: 54px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(190, 0, 0, 0.15);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.info-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.map-embed {
    margin-top: 2rem;
}

.map-embed h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.map-embed iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 24px;
}

.form-container.glass {
    padding: 3rem;
    border-radius: 32px;
}

.form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.98rem;
    line-height: 1.6;
    display: block;
}

.form-message.success {
    color: #26a65b;
}

.form-message.error {
    color: #e74c3c;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(190, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid var(--footer-border);
    padding: 2.5rem 0 1.25rem;
    background: var(--footer-bg);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h2,
.footer-links h3,
.footer-bottom p,
.footer-brand p,
.footer-links a {
    color: var(--footer-text);
}

.footer-brand-logo {
    /* Main styles in consolidated logo section */
}


.footer-brand p {
    margin-top: 1rem;
    max-width: 300px;
    color: var(--footer-muted);
    overflow-wrap: break-word;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
    background: var(--accent-primary);
    color: #fff;
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 20px rgba(194, 30, 2, 0.25);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-links h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--footer-muted);
}

.footer-links a:hover {
    color: var(--footer-accent);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--footer-border);
    padding-top: 1.5rem;
    color: var(--footer-muted);
    font-size: 0.9rem;
}

.floating-actions {
    position: fixed;
    right: 1.5rem;
    top: 40%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-end;
    width: 170px;
    z-index: 110;
}

.floating-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(4, 28, 71, 0.94);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 18px 36px rgba(3, 18, 45, 0.18);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    padding: 0;
}

.floating-action span {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.floating-action svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.floating-action:hover {
    transform: translateY(-5px);
    background: rgba(14, 88, 162, 0.95);
    width: 160px;
    border-radius: 30px;
    padding: 0 1.5rem;
    justify-content: flex-start;
}

.floating-action:hover span {
    max-width: 100px;
    opacity: 1;
    margin-left: 0.75rem;
}

.whatsapp-action {
    background: #25d366;
    color: #ffffff;
}

.whatsapp-action:hover {
    background: #1fbf5c;
}

.email-action {
    background: #ea4335;
    color: #ffffff;
}

.email-action:hover {
    background: #d93025;
}

.scroll-top-btn {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(190, 0, 0, 0.95);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
    box-shadow: 0 20px 40px rgba(4, 28, 71, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 110;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 640px) {
    .floating-actions {
        right: 0.75rem;
        top: auto;
        bottom: 6rem;
        width: auto;
        align-items: flex-end;
    }

    /* Keep buttons circular on small screens to avoid full-width stretching */
    .floating-action {
        min-width: 52px;
        width: 52px;
        padding: 0.6rem;
    }

    /* Hide text labels on small screens (hover expansion not available on touch) */
    .floating-action span {
        display: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

    .contact-wrapper,
    .about-snippet {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hide the enquiry button next to the hamburger on mobile */
    .nav-action-btn {
        display: none;
    }

    /* Make hamburger bars visible on dark/varied backgrounds */
    .hamburger span {
        background: #ffffff;
        height: 3px;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .authority-box {
        padding: 3rem 1.5rem;
    }

    .authority-message {
        font-size: 1.2rem;
    }
}

/* ===== CLIENT PAGE TESTIMONIAL GRID ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.testimonial-grid-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.35s ease;
    box-shadow: 0 10px 30px rgba(16, 24, 36, 0.04);
}

.testimonial-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(194, 30, 2, 0.1);
    border-color: rgba(194, 30, 2, 0.24);
}

.testimonial-grid-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 8rem;
    line-height: 1;
    font-family: serif;
    color: rgba(194, 30, 2, 0.05);
    font-weight: 900;
    user-select: none;
    pointer-events: none;
}

.testimonial-grid-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-grid-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-top: 1px solid rgba(194, 30, 2, 0.08);
    padding-top: 1.5rem;
}

.testimonial-grid-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 8px 20px rgba(16, 24, 36, 0.12);
    flex-shrink: 0;
}

.testimonial-grid-info {
    display: flex;
    flex-direction: column;
}

.testimonial-grid-info .client-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.testimonial-grid-info .client-designation {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-top: 0.2rem;
}

.testimonial-grid-info .client-company {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 0.1rem;
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

@media (max-width: 480px) {
    .testimonial-grid-card {
        padding: 1.75rem;
    }
    .testimonial-grid-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* ===== VISION & MISSION SECTION ===== */
.vision-mission-section {
    background: linear-gradient(180deg, rgba(255, 222, 216, 0.15) 0%, var(--bg-color) 100%);
    position: relative;
    overflow: hidden;
}

.vision-mission-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.vision-card, .mission-card {
    display: flex;
    flex-direction: column;
    padding: 3.5rem 3rem;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.35s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(194, 30, 2, 0.12);
    border-color: rgba(194, 30, 2, 0.22);
}

.vm-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(194, 30, 2, 0.12), rgba(194, 30, 2, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    transition: transform 0.35s ease, background 0.35s ease;
}

.vision-card:hover .vm-icon-wrap, .mission-card:hover .vm-icon-wrap {
    transform: scale(1.15) rotate(6deg);
    background: linear-gradient(135deg, rgba(194, 30, 2, 0.18), rgba(194, 30, 2, 0.1));
}

.vm-icon {
    width: 32px;
    height: 32px;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.point-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.mission-points span {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.mission-points strong {
    color: var(--text-primary);
}

@media (max-width: 960px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .vision-card, .mission-card {
        padding: 2.5rem 2rem;
    }
}