/* ========================================
   AMBE ENGINEERING - PREMIUM STYLES
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Rajdhani:wght@600;700&display=swap');

:root {
    --primary-color: #0f223d;
    --primary-light: #1a3a52;
    --secondary-color: #2563eb;
    --secondary-dark: #1d4ed8;
    --secondary-light: #3b82f6;
    --accent-blue: #1d4ed8;
    --accent-navy: #0f223d;
    --accent-light: #dbeafe;
    --accent-sky: #60a5fa;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    --shadow-sm: 0 4px 15px rgba(15, 34, 61, 0.08);
    --shadow-md: 0 10px 40px rgba(15, 34, 61, 0.12);
    --shadow-lg: 0 20px 60px rgba(15, 34, 61, 0.15);
    --shadow-blue: 0 8px 30px rgba(37, 99, 235, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --nav-height: 124px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.custom-cursor-dot,
.custom-cursor-outline {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.custom-cursor-dot {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
    transition: transform 0.2s ease, background 0.2s ease;
}

.custom-cursor-outline {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(37, 99, 235, 0.45);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.custom-cursor-dot.hovered {
    transform: translate(-50%, -50%) scale(2);
    background: var(--secondary-light);
}

.custom-cursor-outline.hovered {
    width: 64px;
    height: 64px;
    border-color: var(--secondary-color);
    background: rgba(37, 99, 235, 0.08);
}

@media (min-width: 1025px) {
    body {
        cursor: none;
    }

    a, button, .btn, input, textarea, select {
        cursor: none;
    }
}

@media (max-width: 1024px) {
    .custom-cursor-dot,
    .custom-cursor-outline {
        display: none;
    }
}

/* ========================================
   SECTION REVEAL ANIMATION
   ======================================== */
.reveal-section {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero.reveal-section {
    opacity: 1;
    transform: none;
}

/* ========================================
   NAVBAR — solid blue header
   ======================================== */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: linear-gradient(90deg, #000510 0%, #071428 50%, #0b1929 100%);
    box-shadow: 0 6px 24px rgba(15, 34, 61, 0.28);
    transition: box-shadow var(--transition);
}

.nav-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 48px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: absolute;
    left: clamp(20px, 3vw, 48px);
    top: 50%;
    height: 100%;
    padding: 2px 0;
    transform: translateY(-50%);
    z-index: 2;
}

.logo img {
    height: 100%;
    max-width: min(460px, 48vw);
    width: auto;
    object-fit: contain;
    object-position: left center;
    transition: transform var(--transition);
    display: block;
    margin: 0;
    padding: 0;
}

.logo:hover img {
    transform: scale(1.03);
}

.logo span {
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 10px;
    letter-spacing: 1px;
}

.nav-links {
    position: static;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    z-index: 1;
    list-style: none;
    flex: 1;
}

.nav-links a {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 4px;
    transition: color var(--transition), opacity var(--transition);
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.nav-links a:hover {
    color: #ffffff;
    opacity: 0.82;
    background: transparent;
}

.nav-links a.active {
    color: #ffffff;
    font-weight: 700;
    background: transparent;
    opacity: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 0;
    flex-shrink: 0;
    position: absolute;
    right: clamp(16px, 3vw, 48px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.btn-inquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0056b3;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 86, 179, 0.4);
}

.btn-inquiry:hover {
    background: #004494;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 86, 179, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 19, 43, 0.4) 0%,
        rgba(11, 19, 43, 0.2) 50%,
        rgba(11, 19, 43, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

/* ========================================
   ABOUT HOME SECTION
   ======================================== */
.about-home {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about-home-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.about-home-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: blobPulse 8s ease-in-out infinite;
}

.about-home-bg::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: blobPulse 10s ease-in-out infinite reverse;
}

@keyframes blobPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image-collage {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin: 0 auto;
    animation: floatCollage 7s ease-in-out infinite;
}

@keyframes floatCollage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.collage-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 0;
}

.collage-orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88%;
    height: 88%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    animation: orbitSpin 30s linear infinite;
    z-index: 0;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.collage-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 8px 30px rgba(15, 34, 61, 0.15);
    background: white;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.45s ease,
                border-color 0.45s ease;
}

.collage-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.collage-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.3);
    border-color: var(--secondary-light);
    z-index: 10;
}

.collage-circle:hover img {
    transform: scale(1.08);
}

.circle-main {
    width: 54%;
    height: 54%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    border-width: 5px;
    border-color: white;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25);
    animation: mainCirclePulse 5s ease-in-out infinite;
}

@keyframes mainCirclePulse {
    0%, 100% { box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25); }
    50% { box-shadow: 0 16px 50px rgba(37, 99, 235, 0.4); }
}

.circle-main:hover {
    transform: translate(-50%, -50%) scale(1.06);
}

.circle-sub {
    width: 28%;
    height: 28%;
    z-index: 4;
}

.circle-1 {
    top: 0;
    left: 6%;
}

.circle-2 {
    top: 3%;
    right: 0;
}

.circle-3 {
    bottom: 3%;
    left: 0;
}

.circle-4 {
    bottom: 0;
    right: 6%;
}

.about-image-collage.collage-revealed .circle-1 {
    animation: floatSub1 6s ease-in-out infinite;
}

.about-image-collage.collage-revealed .circle-2 {
    animation: floatSub2 7s ease-in-out infinite 0.5s;
}

.about-image-collage.collage-revealed .circle-3 {
    animation: floatSub1 6.5s ease-in-out infinite 1s;
}

.about-image-collage.collage-revealed .circle-4 {
    animation: floatSub2 7.5s ease-in-out infinite 1.5s;
}

@keyframes floatSub1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes floatSub2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.collage-circle-logo {
    background: linear-gradient(145deg, #ffffff 0%, #eef2ff 100%);
    border: 4px solid var(--secondary-color) !important;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-circle-logo img {
    object-fit: contain;
    width: 85%;
    height: 85%;
    filter: none;
}

.collage-circle-logo:hover {
    border-color: var(--secondary-light) !important;
    background: linear-gradient(145deg, #ffffff 0%, #dbeafe 100%);
}

.about-home-content {
    padding-left: 10px;
}

.about-badge-slanted {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    padding: 9px 22px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 22px;
    transform: skewX(-4deg);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(37, 99, 235, 0.45); }
}

.about-badge-slanted span {
    display: inline-block;
    transform: skewX(4deg);
}

.about-home-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent-navy);
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.about-home-content h2 span {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description-lead {
    font-size: 1.08rem;
    color: #334155;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.75;
    padding-left: 18px;
    border-left: 4px solid var(--secondary-color);
}

.about-description-lead strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.about-description-body {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.85;
    font-size: 0.98rem;
}

.about-mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.about-mini-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--accent-navy);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 2px 10px rgba(15, 34, 61, 0.06);
    transition: all var(--transition);
}

.about-mini-feature i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.about-mini-feature:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-blue);
    background: #eef2ff;
}

.about-home-content .btn-primary {
    position: relative;
    overflow: hidden;
}

.about-home-content .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.about-home-content .btn-primary:hover::after {
    left: 100%;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tagline {
    display: inline-block;
    background: rgba(29, 78, 216, 0.1);
    color: var(--accent-blue);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.main-title-premium {
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.main-title-premium span {
    color: var(--secondary-color);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 20px;
}

.subtitle-premium {
    max-width: 700px;
}

.separator-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.separator-premium span {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color));
}

.separator-premium span:last-child {
    background: linear-gradient(to left, transparent, var(--secondary-color));
}

.separator-premium i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* ========================================
   HOME MACHINES SECTION
   ======================================== */
.home-machines {
    padding: 110px 0;
    background: linear-gradient(160deg, var(--accent-navy) 0%, var(--primary-light) 50%, #1e3a5f 100%);
    position: relative;
}

.home-machines::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.home-machines .container {
    position: relative;
    z-index: 1;
}

.home-machines .section-tagline {
    background: rgba(37, 99, 235, 0.2);
    color: var(--accent-sky);
}

.home-machines .section-title,
.home-machines .main-title-premium {
    color: white;
}

.home-machines .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.machines-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.machine-card-premium-dark {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.machine-card-premium-dark::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(37, 99, 235, 0.4), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.machine-card-premium-dark::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.machine-card-premium-dark:hover::before {
    opacity: 1;
}

.machine-card-premium-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.5);
}

.machine-card-premium-dark:hover::after {
    opacity: 1;
}

.machine-media-premium {
    width: 100%;
    height: 260px;
    min-height: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #1e3350 0%, #0f223d 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
}

.machine-media-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 34, 61, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.machine-card-premium-dark:hover .machine-media-premium::after {
    opacity: 1;
}

.card-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.machine-card-premium-dark:hover .card-icon-box {
    transform: rotate(-5deg) scale(1.1);
}

.card-title-box p {
    color: var(--accent-sky);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.card-header-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.card-icon-box i {
    color: white;
    font-size: 1.3rem;
}

.card-title-box h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.machine-media-premium img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.machine-card-premium-dark:hover .machine-media-premium img {
    transform: scale(1.05);
}

.machine-description-premium {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.machine-specs-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec-badge-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.spec-icon-box {
    width: 36px;
    height: 36px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon-box i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.machine-specs-grid-premium .spec-label {
    display: block;
    font-size: 0.72rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.machine-specs-grid-premium .spec-value {
    display: block;
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 700;
}

.home-machines .machine-description-premium {
    color: rgba(255, 255, 255, 0.9);
}

.home-machines .card-title-box h3,
.home-machines .card-title-box p {
    color: #ffffff;
}

.home-machines .card-title-box p {
    color: var(--accent-sky);
}

/* ========================================
   MISSION & VISION SECTION
   ======================================== */
.mission-vision-section {
    padding: 100px 0 90px;
    background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 45%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.mv-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.mission-vision-section .container {
    position: relative;
    z-index: 1;
}

.mv-header {
    text-align: center;
    margin-bottom: 36px;
}

.mv-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.12);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.mv-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent-navy);
    letter-spacing: 0.5px;
}

.mv-visual {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.mv-lines-area {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    pointer-events: none;
    z-index: 1;
}

.mv-connectors-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.mv-hub-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    min-height: 170px;
    z-index: 2;
}

.mv-hub-ring-outer {
    position: absolute;
    top: 8px;
    width: 130px;
    height: 130px;
    border: 2px dashed rgba(37, 99, 235, 0.35);
    border-radius: 50%;
    animation: mvRingSpin 20s linear infinite;
}

@keyframes mvRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mv-hub {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #eef2ff);
    border: 3px solid var(--secondary-light);
    box-shadow: var(--shadow-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    margin-top: 18px;
}

.mv-hub-icon {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.mv-hub-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-navy);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.mv-hub-sub {
    font-size: 0.65rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 2px;
}

.mv-connector-path {
    transition: stroke-dashoffset 0s, stroke-dasharray 0s;
}

.mission-vision-section.mv-lines-flow .mv-connector-path {
    animation: mvDashFlow 2.2s linear infinite;
}

@keyframes mvDashFlow {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -32; }
}

.mv-card-connector {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--secondary-light), 0 4px 14px rgba(37, 99, 235, 0.4);
    z-index: 5;
    opacity: 0;
    pointer-events: none;
}

.mv-card-connector::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    width: 3px;
    height: 14px;
    border-radius: 999px;
    background: repeating-linear-gradient(
        to bottom,
        currentColor 0 4px,
        transparent 4px 8px
    );
}

.mv-card-vision .mv-card-connector {
    color: var(--secondary-color);
}

.mv-card-mission .mv-card-connector {
    color: var(--secondary-light);
    background: var(--secondary-light);
    box-shadow: 0 0 0 2px var(--secondary-color), 0 4px 14px rgba(59, 130, 246, 0.4);
}

.mission-vision-section.mv-lines-drawn .mv-card-vision .mv-card-connector {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    transition: opacity 0.35s ease 1.3s, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 1.3s;
    animation: mvDotPulse 2.2s ease-in-out infinite 1.6s;
}

.mission-vision-section.mv-lines-drawn .mv-card-mission .mv-card-connector {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    transition: opacity 0.35s ease 1.5s, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s;
    animation: mvDotPulse 2.2s ease-in-out infinite 1.8s;
}

@keyframes mvDotPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.85; }
}

.mv-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.mv-card {
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow:
        0 8px 32px rgba(37, 99, 235, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.82);
    transition:
        transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    position: relative;
    margin-top: 8px;
    overflow: visible;
    cursor: pointer;
}

.mv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.55) 45%,
        transparent 100%
    );
    transform: skewX(-18deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 1;
}

.mv-card-vision {
    border-top: 3px solid var(--secondary-color);
}

.mv-card-mission {
    border-top: 3px solid var(--secondary-light);
}

@media (hover: hover) {
    .mv-card:hover {
        transform: translateY(-10px) scale(1.015);
        box-shadow: 0 22px 50px rgba(37, 99, 235, 0.22), 0 8px 24px rgba(15, 34, 61, 0.1);
    }

    .mv-card:hover::after {
        left: 130%;
    }

    .mv-card-vision:hover {
        border-color: rgba(37, 99, 235, 0.45);
        border-top-color: var(--secondary-color);
        background: rgba(255, 255, 255, 0.78);
        box-shadow: 0 22px 50px rgba(37, 99, 235, 0.22), inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    .mv-card-mission:hover {
        border-color: rgba(59, 130, 246, 0.45);
        border-top-color: var(--secondary-light);
        background: rgba(255, 255, 255, 0.78);
        box-shadow: 0 22px 50px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    .mv-card:hover .mv-card-icon {
        transform: scale(1.15) rotate(-6deg);
    }

    .mv-card-vision:hover .mv-card-icon {
        background: rgba(37, 99, 235, 0.2);
        box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
    }

    .mv-card-mission:hover .mv-card-icon {
        background: rgba(59, 130, 246, 0.22);
        box-shadow: 0 6px 18px rgba(59, 130, 246, 0.25);
    }

    .mv-card:hover .mv-card-badge {
        transform: scale(1.06);
        letter-spacing: 1.4px;
    }

    .mv-card-vision:hover .mv-card-badge {
        background: rgba(37, 99, 235, 0.18);
    }

    .mv-card-mission:hover .mv-card-badge {
        background: rgba(59, 130, 246, 0.2);
    }

    .mv-card:hover .mv-card-title {
        color: var(--secondary-color);
        transform: translateX(4px);
    }

    .mv-card:hover .mv-card-text {
        color: #334155;
    }

    .mv-card:hover .mv-card-list li {
        transform: translateX(8px);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 4px 12px rgba(37, 99, 235, 0.12);
    }

    .mv-card:hover .mv-card-list li:nth-child(2) {
        transition-delay: 0.06s;
    }

    .mv-card:hover .mv-card-list li:nth-child(3) {
        transition-delay: 0.12s;
    }

    .mv-card:hover .mv-bullet {
        transform: scale(1.35);
        box-shadow: 0 0 10px rgba(37, 99, 235, 0.45);
    }

    .mission-vision-section.mv-lines-drawn .mv-card:hover .mv-card-connector {
        transform: translateX(-50%) scale(1.25);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2), 0 0 18px rgba(37, 99, 235, 0.45);
    }
}

.mv-card:active {
    transform: translateY(-4px) scale(1.005);
}

.mv-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.mv-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), background 0.35s ease, box-shadow 0.35s ease;
}

.mv-icon-vision {
    background: rgba(37, 99, 235, 0.12);
    color: var(--secondary-color);
}

.mv-icon-mission {
    background: rgba(59, 130, 246, 0.15);
    color: var(--secondary-dark);
}

.mv-card-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    transition: transform 0.35s ease, letter-spacing 0.35s ease, background 0.35s ease;
}

.mv-badge-vision {
    background: rgba(37, 99, 235, 0.1);
    color: var(--secondary-color);
}

.mv-badge-mission {
    background: rgba(59, 130, 246, 0.12);
    color: var(--secondary-dark);
}

.mv-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-navy);
    margin-bottom: 14px;
    transition: color 0.35s ease, transform 0.35s ease;
}

.mv-card-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 18px;
    transition: color 0.35s ease;
}

.mv-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mv-card-list li strong {
    color: var(--accent-navy);
}

.mv-bullet {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ========================================
   SERVICES PREVIEW — INTERACTIVE GLASS
   ======================================== */
.services-preview {
    padding: 110px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.services-preview-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.services-preview-bg::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.services-preview .container {
    position: relative;
    z-index: 1;
}

.services-showcase-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.services-showcase-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--secondary-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.services-showcase-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent-navy);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.services-showcase-subtitle {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 22px;
}

.services-showcase-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.services-showcase-line span {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color));
}

.services-showcase-line span:last-child {
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.services-showcase-line i {
    color: var(--secondary-color);
    font-size: 1rem;
    animation: spinSlow 10s linear infinite;
}

.services-interactive {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
    align-items: stretch;
}

.services-nav-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(37, 99, 235, 0.3) transparent;
}

.service-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(15, 34, 61, 0.06);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent-navy);
}

.service-nav-btn i {
    color: var(--secondary-color);
    font-size: 0.95rem;
    width: 18px;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.service-nav-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.7;
    min-width: 20px;
}

.service-nav-btn span:last-of-type {
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
}

.service-nav-btn:hover {
    transform: translateX(6px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: var(--shadow-blue);
    background: rgba(255, 255, 255, 0.9);
}

.service-nav-btn.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    transform: translateX(8px);
}

.service-nav-btn.active i,
.service-nav-btn.active .service-nav-num {
    color: white;
    opacity: 1;
}

.services-display-glass {
    position: relative;
    min-height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 16px 48px rgba(37, 99, 235, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.service-display-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px) scale(0.98);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1), visibility 0.45s;
}

.service-display-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    position: relative;
}

.service-display-image {
    height: 100%;
    min-height: 480px;
    overflow: hidden;
    background: linear-gradient(180deg, #e8eef5, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.service-display-image img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.service-display-slide.active .service-display-image img {
    animation: serviceImageIn 0.65s ease forwards;
}

@keyframes serviceImageIn {
    from { transform: scale(1.08); opacity: 0.7; }
    to { transform: scale(1); opacity: 1; }
}

.service-display-info {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
}

.service-display-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-color);
    background: rgba(37, 99, 235, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    width: fit-content;
}

.service-display-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--accent-navy);
    margin-bottom: 16px;
    line-height: 1.15;
}

.service-display-info p {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.8;
    margin: 0;
}

.services-cta-link {
    text-align: center;
    margin-top: 44px;
}

.services-explore-btn {
    padding: 16px 32px;
    font-size: 1rem;
    box-shadow: var(--shadow-blue);
}

.services-explore-btn:hover {
    box-shadow: 0 12px 36px rgba(37, 99, 235, 0.45);
}

.services-checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.service-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 20px 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.service-check-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.service-check-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-navy);
    line-height: 1.4;
}

.service-check-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
    border-color: rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #ffffff, #eef2ff);
}

.service-check-item:hover i {
    transform: scale(1.2);
}

.services-cta-link {
    text-align: center;
    margin-top: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card-premium-light {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card-premium-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card-premium-light:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-blue);
    border-color: rgba(37, 99, 235, 0.3);
}

.service-card-premium-light:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper-light {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card-premium-light:hover .service-icon-wrapper-light {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.service-icon-wrapper-light i {
    color: white;
    font-size: 1.5rem;
}

.service-card-premium-light h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card-premium-light p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.service-explore-link-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap var(--transition);
}

.service-explore-link-light:hover {
    gap: 12px;
}

/* ========================================
   WHY PARTNER SECTION (Mockup Match)
   ======================================== */
.why-partner-section {
    position: relative;
    padding: 110px 0;
    background: #f8fafc;
    overflow: hidden;
}

.why-partner-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.45;
    pointer-events: none;
}

.why-partner-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: url('image&video/machine image.png') center/cover no-repeat;
    opacity: 0.06;
    mask-image: linear-gradient(to left, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 30%, transparent 100%);
    pointer-events: none;
}

.why-partner-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.partner-company-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}

.partner-company-tag i {
    animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.partner-main-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent-navy);
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.partner-title-line {
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    margin-bottom: 24px;
    border-radius: 3px;
}

.partner-lead-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 420px;
}

.partner-stats-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 36px;
}

.partner-stat-item {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    transition: transform var(--transition);
}

.partner-stat-item:hover {
    transform: translateY(-4px);
}

.partner-stat-divider {
    width: 1px;
    background: var(--border-light);
    margin: 8px 0;
    flex-shrink: 0;
}

.partner-stat-icon {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 10px;
    transition: transform var(--transition);
}

.partner-stat-item:hover .partner-stat-icon {
    transform: scale(1.15);
}

.partner-stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--accent-navy);
    line-height: 1;
}

.partner-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 6px;
    line-height: 1.4;
}

.partner-navy-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, var(--accent-navy) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 26px 28px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.partner-navy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.navy-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.navy-card-icon i {
    color: var(--accent-sky);
    font-size: 1.2rem;
}

.navy-card-main-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.65;
}

.navy-card-divider {
    width: 50px;
    height: 2px;
    background: var(--secondary-light);
    margin: 14px 0;
}

.navy-card-sub-text {
    color: var(--accent-sky);
    font-size: 0.9rem;
    font-weight: 500;
}

.why-partner-timeline {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    min-height: 520px;
}

.timeline-connectors-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.connector-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1.5s ease;
}

.why-partner-section.connectors-drawn .connector-path {
    stroke-dashoffset: 0;
}

.connector-node {
    opacity: 0;
    transform-origin: center;
    transition: opacity 0.4s ease 0.8s;
}

.why-partner-section.connectors-drawn .connector-node {
    opacity: 1;
}

.timeline-col-1,
.timeline-col-2 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.timeline-col-2 {
    padding-top: 50px;
}

.timeline-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 0;
    box-shadow: 0 4px 20px rgba(15, 34, 61, 0.08);
    border: 1px solid var(--border-light);
    border-left: 5px solid var(--accent-blue);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-left-width var(--transition);
}

.timeline-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-blue);
    border-left-width: 7px;
}

.timeline-card:hover::before {
    opacity: 1;
}

.card-border-navy {
    border-left-color: var(--accent-navy);
}

.card-border-blue-light {
    border-left-color: var(--secondary-light);
}

.card-border-blue {
    border-left-color: var(--secondary-color);
}

.timeline-card-index {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(15, 34, 61, 0.14);
    line-height: 1;
    z-index: 3;
    pointer-events: none;
}

.timeline-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    position: relative;
    z-index: 2;
}

.timeline-icon-box {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.timeline-card:hover .timeline-icon-box {
    transform: scale(1.08) rotate(-3deg);
}

.timeline-svg-icon {
    width: 100%;
    height: 100%;
}

.timeline-card-body h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-navy);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.timeline-card-line {
    width: 32px;
    height: 3px;
    background: var(--secondary-color);
    margin-bottom: 10px;
    border-radius: 2px;
    transition: width var(--transition);
}

.timeline-card:hover .timeline-card-line {
    width: 50px;
}

.timeline-card-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.65;
}

.timeline-card-body {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.testimonials-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.testimonials-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.testimonials-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent-navy);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.testimonials-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.testimonial-featured {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 36px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: relative;
    transition: box-shadow var(--transition), opacity 0.35s ease, transform 0.35s ease;
}

.testimonial-featured.is-switching {
    opacity: 0.7;
    transform: translateY(4px);
}

.testimonial-quote-icon {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 16px;
    line-height: 1;
}

.testimonial-quote-icon i {
    color: var(--secondary-light);
    opacity: 0.85;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.95rem;
}

.testimonial-category {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--secondary-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #334155;
    line-height: 1.75;
    margin: 0 0 28px;
    font-weight: 500;
    transition: opacity 0.35s ease;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--accent-navy);
    margin-bottom: 4px;
}

.testimonial-author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(37, 99, 235, 0.35) transparent;
}

.testimonial-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 18px 20px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition);
    font-family: inherit;
}

.testimonial-list-item:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.testimonial-list-item.active {
    background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 100%);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-blue);
}

.testimonial-list-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--accent-navy);
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--border-light);
    transition: all var(--transition);
}

.testimonial-list-item.active .testimonial-list-avatar {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    border-color: transparent;
}

.testimonial-list-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--accent-navy);
    margin-bottom: 3px;
}

.testimonial-list-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.35;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-box-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
}

.cta h2,
.cta-box-glass h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta p,
.cta-box-glass p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(180deg, #000510 0%, #071428 50%, #0b1929 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0056b3, #3b82f6, transparent);
    z-index: 2;
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 5, 16, 0.92) 0%, rgba(7, 20, 40, 0.95) 100%),
        url('image&video/fabrication.jpg') center/cover no-repeat;
    opacity: 0.35;
    pointer-events: none;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: inline-block;
    background: #ffffff;
    padding: 14px 34px 14px 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
    max-width: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.footer-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.footer-logo a {
    display: block;
    line-height: 0;
}

.footer-logo img {
    height: auto;
    width: min(100%, 360px);
    max-width: 430px;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin-bottom: 0;
    filter: none;
    transition: transform var(--transition);
}

.footer-logo:hover img {
    transform: scale(1.02);
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.85;
    color: #cbd5e1 !important;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 0.92rem;
    line-height: 1.85;
    color: #94a3b8;
}

.footer-section p.footer-desc {
    color: #cbd5e1;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: #94a3b8;
    font-size: 0.92rem;
    transition: all var(--transition);
    display: inline-block;
}

.footer-section ul a:hover {
    color: var(--accent-sky);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-social {
    margin-top: 22px;
}

.footer-social-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-brand .social-links {
    margin-top: 0;
}

.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services-list li {
    margin-bottom: 8px;
}

.footer-services-list a {
    color: #94a3b8;
    font-size: 0.88rem;
    transition: all var(--transition);
    display: inline-block;
    line-height: 1.4;
}

.footer-services-list a:hover {
    color: var(--accent-sky);
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-sm);
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-sky);
    font-size: 0.95rem;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact-text strong {
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-contact-text span,
.footer-contact-text a {
    color: #94a3b8;
    transition: color var(--transition);
}

.footer-contact-text a:hover {
    color: var(--accent-sky);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(0, 5, 16, 0.5);
}

.footer-bottom p {
    font-size: 0.88rem;
    color: #64748b;
}

/* ========================================
   PAGE HEADER (Inner Pages)
   ======================================== */
.page-header {
    padding: 70px 24px 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    text-align: center;
}

.page-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
}

/* ========================================
   ABOUT HERO HEADER (Custom Page Banner)
   ======================================== */
.about-hero-header {
    position: relative;
    min-height: 700px;
    background: url('image&video/about hero.png') no-repeat;
    background-size: cover;
    background-position: 85% center;
    display: flex;
    align-items: center;
    padding: 170px 0;
    overflow: hidden;
    color: white;
}

.about-hero-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(15, 34, 61, 0.98) 0%, 
        rgba(15, 34, 61, 0.88) 40%, 
        rgba(15, 34, 61, 0.4) 75%, 
        rgba(15, 34, 61, 0) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .about-hero-header {
        min-height: 400px;
        padding: 100px 0 70px;
        background-position: 75% center;
    }
    .about-hero-header::before {
        background: rgba(15, 34, 61, 0.95);
    }
    .about-hero-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    .about-hero-header p {
        font-size: 0.98rem;
        margin-bottom: 22px;
    }
    .about-hero-badges {
        gap: 10px;
    }
    .about-hero-header .hero-badge {
        font-size: 0.8rem;
        padding: 7px 12px;
    }
}

@media (max-width: 480px) {
    .about-hero-header {
        min-height: 360px;
        padding: 90px 0 60px;
    }
    .about-hero-header h1 {
        font-size: 1.65rem;
    }
    .about-hero-header p {
        font-size: 0.9rem;
    }
    .about-hero-tag {
        font-size: 0.72rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
}

.about-hero-header .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-content {
    max-width: 620px;
    text-align: left;
}

.about-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.35);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-sky);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.about-hero-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: white;
    text-transform: uppercase;
}

.about-hero-header h1 span {
    color: var(--accent-sky);
}

.about-hero-header p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.about-hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: #cbd5e1;
    backdrop-filter: blur(4px);
    transition: all var(--transition);
}

.hero-badge i {
    color: var(--accent-sky);
}

.hero-badge:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.35);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.85;
    font-size: 1.02rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    background: #f8fafc;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.highlight:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.25);
    background: white;
    box-shadow: var(--shadow-sm);
}

.highlight i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--secondary-light);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
    z-index: 2;
}

.about-image:hover {
    transform: scale(1.01) translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.about-image:hover::before {
    inset: 10px;
    opacity: 0.65;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: all var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ========================================
   WHO WE ARE - REDESIGNED FEATURES & STATS
   ======================================== */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 35px 0 40px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 46px;
    height: 46px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary-color);
    font-size: 1.15rem;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.05);
    transition: all var(--transition);
}

.about-feature-item:hover .about-feature-icon {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.08);
    box-shadow: var(--shadow-blue);
}

.about-feature-text h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.about-feature-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* About Section Stats Bar */
.about-stats-bar {
    background: linear-gradient(135deg, #071428 0%, #0f223d 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-stats-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: white;
    position: relative;
    z-index: 1;
}

.about-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.about-stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-sky);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all var(--transition);
}

.about-stat-item:hover .about-stat-icon {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.35);
    color: white;
    transform: scale(1.05);
}

.about-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: white;
}

.about-stat-label {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.35;
    font-weight: 500;
}

@media (max-width: 992px) {
    .about-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }
    .about-stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-section {
        padding: 60px 0;
    }
    .about-section .main-title-premium,
    .founder-content .main-title-premium,
    .founder-section-title,
    .services-qa-content .main-title-premium {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
    }
    .about-stats-bar {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 20px;
        margin-top: 50px;
    }
    .about-stat-item::after {
        display: none !important;
    }
    .about-stat-num {
        font-size: 1.85rem;
    }
    .values-section,
    .services-qa-section,
    .company-info {
        padding: 60px 0;
    }
    .services-qa-section .main-title-premium {
        text-align: left !important;
    }
    .qa-lead {
        font-size: 0.98rem;
    }
    .qa-feature-card {
        padding: 18px;
        gap: 14px;
    }
    .qa-cert-card {
        max-width: 100%;
        width: 100%;
    }
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #07162c 0%, #0f223d 50%, #152e52 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.values-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.values-section .section-title {
    color: #ffffff !important;
}

.values-section .section-title span {
    color: var(--secondary-light) !important;
}

.values-section .section-tagline {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--accent-sky) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.values-section .separator-premium span {
    background: rgba(255, 255, 255, 0.25) !important;
}

.values-section .separator-premium i {
    color: var(--accent-sky) !important;
}

.values-section .value-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.values-section .value-card:hover {
    border-color: var(--secondary-light);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.2);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition);
}

.value-card:hover .value-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.value-icon i {
    color: var(--secondary-color);
    font-size: 1.6rem;
    transition: all var(--transition);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

.company-info {
    padding: 100px 0;
    background: var(--bg-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 32px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.2);
}

.info-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card h3 i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ========================================
   SERVICES PAGE (Mockup Overhaul)
   ======================================== */
.services-hero-header {
    position: relative;
    min-height: 600px;
    background: url('image&video/services_hero_banner.png') no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 160px 0;
    overflow: hidden;
    color: white;
}

.services-hero-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(15, 34, 61, 0.96) 0%, 
        rgba(15, 34, 61, 0.85) 50%, 
        rgba(37, 99, 235, 0.4) 100%);
    z-index: 1;
}

.services-hero-header .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.services-hero-content {
    max-width: 650px;
}

.services-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--secondary-light);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-hero-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 16px;
}

.services-hero-content h1 span {
    color: var(--secondary-light);
}

.services-hero-content p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.7;
}

/* Services Listing Grid */
.services-section-premium {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card-premium-row {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-height: 240px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card-text {
    width: 50%;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.service-card-num-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(37, 99, 235, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.service-card-top-icon {
    font-size: 1.25rem;
    color: var(--secondary-light);
    opacity: 0.85;
    transition: all var(--transition);
}

.service-card-middle-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card-middle-content p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card-bottom-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
}

.service-card-bottom-link i {
    font-size: 0.85rem;
    transition: transform var(--transition);
}

/* Slanted Image Side */
.service-card-image-side {
    width: 50%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    background: var(--primary-color);
}

.service-card-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects */
.service-card-premium-row:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 12px 35px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.25);
}

.service-card-premium-row:hover .service-card-image-side img {
    transform: scale(1.1);
}

.service-card-premium-row:hover .service-card-bottom-link i {
    transform: translateX(6px);
}

.service-card-premium-row:hover .service-card-top-icon {
    color: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

/* Responsive constraints */
@media (max-width: 1200px) {
    .services-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-hero-header {
        padding: 80px 0;
        min-height: 350px;
    }
    
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-card-premium-row {
        min-height: auto;
        flex-direction: column;
    }
    
    .service-card-text {
        width: 100%;
        padding: 24px;
    }
    
    .service-card-image-side {
        width: 100%;
        height: 200px;
        clip-path: none;
    }
}

.process-section {
    padding: 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 60%), 
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 60%), 
                #0b132b;
    position: relative;
    overflow: hidden;
}

/* Background grid effect */
.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-tag {
    display: inline-block;
    color: var(--secondary-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px 24px;
    flex: 1;
    min-width: 210px;
    max-width: 250px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Glass card shine on hover */
.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.process-step:hover::before {
    left: 150%;
}

.process-step:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2),
                0 0 30px rgba(59, 130, 246, 0.05);
}

.step-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--secondary-light);
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.25);
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 24px;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.step-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.16) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-light);
    font-size: 1.65rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-icon-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.45);
    border-color: transparent;
}

.process-step h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.process-step p {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.65;
    transition: color 0.3s ease;
}

.process-step:hover p {
    color: #e2e8f0;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.3rem;
    animation: arrowPulse 2s infinite ease-in-out;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.3;
        color: rgba(255, 255, 255, 0.15);
    }
    50% {
        transform: translateX(6px);
        opacity: 1;
        color: var(--secondary-light);
        text-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    }
}

@media (max-width: 1024px) {
    .process-timeline {
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }
    
    .process-step {
        width: 100%;
        max-width: 450px;
        padding: 30px 24px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
        animation: arrowPulseVertical 2s infinite ease-in-out;
    }
}

@keyframes arrowPulseVertical {
    0%, 100% {
        transform: translateY(0) rotate(90deg);
        opacity: 0.3;
        color: rgba(255, 255, 255, 0.15);
    }
    50% {
        transform: translateY(6px) rotate(90deg);
        opacity: 1;
        color: var(--secondary-light);
    }
}

/* ========================================
   MACHINES PAGE
   ======================================== */
.machines-section {
    padding: 80px 0;
}

.machine-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.machine-card-right {
    direction: rtl;
}

.machine-card-right > * {
    direction: ltr;
}

.machine-image {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.machine-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.machine-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.machine-details h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.machine-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.machine-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 12px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec {
    background: white;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--secondary-color);
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.capabilities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.capabilities-list i {
    color: var(--secondary-color);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.equipment-card {
    background: white;
    padding: 28px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.equipment-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.equipment-icon i {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.equipment-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.equipment-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.advantages-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.advantage-item {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.advantage-icon i {
    color: white;
    font-size: 1.4rem;
}

.advantage-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.advantage-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   CONTACT PAGE (Custom Overhaul)
   ======================================== */
.contact-hero-header {
    position: relative;
    min-height: 600px;
    background: url('image&video/contact_hero_banner.png') no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 160px 0;
    overflow: hidden;
    color: white;
}

.contact-hero-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(15, 34, 61, 0.96) 0%, 
        rgba(15, 34, 61, 0.85) 50%, 
        rgba(37, 99, 235, 0.4) 100%);
    z-index: 1;
}

.contact-hero-header .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-hero-content {
    max-width: 650px;
}

.contact-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--secondary-light);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-hero-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 16px;
}

.contact-hero-content h1 span {
    color: var(--secondary-light);
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.7;
}

.contact-section {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(59, 130, 246, 0.03) 0%, transparent 40%),
                #f8fafc;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 45px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(15, 34, 61, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 34, 61, 0.08), 
                0 0 30px rgba(37, 99, 235, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.contact-form-wrapper h2::after,
.contact-info-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.contact-form-wrapper:hover h2::after {
    width: 60px;
}

/* Floating label layout */
.floating-group {
    position: relative;
    margin-bottom: 24px;
}

.floating-group input,
.floating-group textarea {
    width: 100%;
    padding: 24px 16px 8px; /* Room for floating label above text */
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: #f8fafc;
    color: var(--primary-color);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left top;
}

/* Textarea needs label positioned at top of text area */
.floating-group textarea {
    resize: vertical;
}

.floating-group textarea + label {
    top: 24px;
    transform: none;
}

.floating-group input:focus,
.floating-group textarea:focus {
    background: #ffffff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.12);
}

/* Floating transition on focus or having value */
.floating-group input:focus + label,
.floating-group input:not(:placeholder-shown) + label {
    top: 10px;
    transform: scale(0.75) translateY(-30%);
    color: var(--secondary-color);
}

.floating-group textarea:focus + label,
.floating-group textarea:not(:placeholder-shown) + label {
    top: 10px;
    transform: scale(0.75) translateY(-30%);
    color: var(--secondary-color);
}

/* Premium File Uploader styles */
.file-upload-group {
    margin-bottom: 28px;
}

.upload-label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-md);
    background: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.file-upload-wrapper:hover,
.file-upload-wrapper.dragover {
    border-color: var(--secondary-color);
    background: rgba(37, 99, 235, 0.03);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.05);
}

.file-upload-trigger {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.file-upload-trigger i {
    font-size: 2.2rem;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.file-upload-wrapper:hover .file-upload-trigger i,
.file-upload-wrapper.dragover .file-upload-trigger i {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.upload-text {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-color);
}

.upload-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.file-preview-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: var(--radius-sm);
    animation: fadeInUp 0.3s ease both;
}

.file-preview-icon {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.file-preview-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}

.file-preview-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.file-preview-size {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.file-preview-remove {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    transition: all 0.2s ease;
}

.file-preview-remove:hover {
    color: #ef4444;
    transform: scale(1.15);
}

/* Form Success message styles */
.form-success-message {
    text-align: center;
    padding: 40px 10px;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #22c55e;
    font-size: 2.2rem;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
    animation: scaleInSuccess 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both 0.2s;
}

.form-success-message h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.form-success-message p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.form-success-message p strong {
    color: var(--primary-color);
}

.form-success-message p strong#successRefId {
    color: var(--secondary-color);
}

.form-success-message .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@keyframes scaleInSuccess {
    from {
        transform: scale(0.3);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border: none;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    filter: brightness(1.05);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-box:hover {
    transform: translateX(8px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 10px 30px rgba(15, 34, 61, 0.06);
}

.info-icon {
    width: 52px;
    height: 52px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.contact-info-box:hover .info-icon {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

.info-icon i {
    font-size: 1.25rem;
}

.info-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.info-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.info-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--secondary-light);
}

.social-links-vertical {
    margin-top: 15px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.social-links-vertical:hover {
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 10px 25px rgba(15, 34, 61, 0.04);
}

.social-links-vertical h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.map-section {
    padding: 60px 0 80px;
    background: var(--bg-light);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 30px;
}

.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-light);
    padding: 28px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========================================
   HOME PAGE ANIMATIONS & EFFECTS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroZoom {
    from { transform: translate(-50%, -50%) scale(1); }
    to { transform: translate(-50%, -50%) scale(1.06); }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll[data-reveal="left"],
.animate-on-scroll:not([data-reveal]) {
    transform: translateX(-50px);
}

.animate-on-scroll[data-reveal="right"] {
    transform: translateX(50px);
}

.animate-on-scroll[data-reveal="top"] {
    transform: translateY(-50px);
}

.animate-on-scroll[data-reveal="bottom"] {
    transform: translateY(50px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.section-header {
    animation: fadeInUp 0.8s ease both;
}

.separator-premium i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.cta-box-glass {
    transition: transform var(--transition), box-shadow var(--transition);
}

.cta-box-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta .btn-light:hover,
.cta .btn-secondary:hover {
    transform: translateY(-3px);
}

.footer-section {
    transition: transform var(--transition);
}

.footer-section:hover {
    transform: translateY(-2px);
}

.social-links a {
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-blue);
}

.spec-badge-box {
    transition: background var(--transition), transform var(--transition);
}

.machine-card-premium-dark:hover .spec-badge-box {
    background: rgba(37, 99, 235, 0.12);
    transform: translateX(3px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Laptop / small desktop */
@media (min-width: 993px) and (max-width: 1199px) {
    :root {
        --nav-height: 114px;
    }

    .logo img {
        height: 100%;
        max-width: min(360px, 39vw);
        margin: 0;
    }

    .nav-links a {
        font-size: 0.82rem;
        padding: 8px 10px;
    }

    .btn-inquiry {
        padding: 10px 18px;
        font-size: 0.82rem;
    }

    .about-home-content h2,
    .partner-main-title,
    .mv-title,
    .testimonials-title {
        font-size: 2.35rem;
    }

    .section-title,
    .main-title-premium {
        font-size: 2.1rem;
    }

    .about-home,
    .home-machines,
    .mission-vision-section,
    .services-preview,
    .why-partner-section,
    .testimonials-section {
        padding: 90px 0;
    }

    .mv-card {
        padding: 28px 22px;
    }

    .services-showcase-title {
        font-size: 2.35rem;
    }

    .services-interactive {
        grid-template-columns: 300px 1fr;
    }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 992px) {
    :root {
        --nav-height: 104px;
    }

    .logo img {
        height: 100%;
        max-width: min(320px, 40vw);
        margin: 0;
    }

    .nav-links a {
        font-size: 0.75rem;
        padding: 6px 8px;
    }

    .btn-inquiry {
        padding: 9px 14px;
        font-size: 0.78rem;
    }

    .hero {
        height: 62vh;
        min-height: 420px;
    }

    .about-home-grid,
    .why-partner-container {
        gap: 36px;
    }

    .about-home-content h2 {
        font-size: 2.2rem;
    }

    .mv-lines-area,
    .mv-connectors-svg {
        display: none;
    }

    .mission-vision-section .mv-card-connector {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    .mv-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .mv-hub-area {
        min-height: 150px;
        margin-bottom: 8px;
    }

    .mv-title {
        font-size: 2.1rem;
    }

    .machines-grid-premium {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .machine-media-premium {
        height: 210px;
    }

    .services-interactive {
        grid-template-columns: 1fr;
    }

    .services-nav-col {
        max-height: none;
        flex-direction: row;
        flex-wrap: wrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
    }

    .service-nav-btn {
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
    }

    .services-display-glass {
        min-height: 420px;
    }

    .service-display-slide.active {
        grid-template-columns: 1fr;
    }

    .service-display-image {
        min-height: 240px;
    }

    .why-partner-container {
        grid-template-columns: 1fr;
    }

    .why-partner-bg-image {
        width: 100%;
        height: 40%;
        opacity: 0.04;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-featured {
        padding: 28px 24px;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-quote {
        font-size: 1.05rem;
    }

    .mv-title {
        font-size: 2rem;
    }

    .about-home-grid,
    .why-partner-container,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-home-content {
        padding-left: 0;
    }

    .machines-grid-premium,
    .services-checklist-grid,
    .services-grid,
    .values-grid,
    .info-grid,
    .equipment-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .partner-stat-divider {
        display: none;
    }

    .partner-stat-item {
        flex: 1 1 30%;
    }

    .machine-card {
        grid-template-columns: 1fr;
    }

    .machine-card-right {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 90px;
    }

    .container {
        padding: 0 18px;
    }

    .navbar {
        box-shadow: 0 4px 16px rgba(15, 34, 61, 0.22);
    }

    .nav-container {
        justify-content: flex-end;
        padding: 0 16px;
    }

    .logo {
        left: 16px;
    }

    .logo img {
        height: 100%;
        max-width: min(300px, 72vw);
        margin: 0;
    }

    .nav-links {
        position: fixed;
        left: 0;
        right: 0;
        top: var(--nav-height);
        flex: none;
        transform: translateY(-150%);
        justify-content: flex-start;
        background: #000510;
        flex-direction: column;
        padding: 16px;
        gap: 0;
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a:hover,
    .nav-links a.active {
        opacity: 1;
        background: rgba(255, 255, 255, 0.06);
    }

    .btn-inquiry {
        display: none;
    }

    .nav-right {
        position: static;
        transform: none;
        margin-left: auto;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        height: 52vh;
        min-height: 340px;
    }

    .about-home,
    .home-machines,
    .mission-vision-section,
    .services-preview,
    .why-partner-section,
    .testimonials-section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title,
    .main-title-premium {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .section-subtitle,
    .subtitle-premium {
        font-size: 0.92rem;
    }

    .about-home-content h2,
    .partner-main-title,
    .mv-title,
    .testimonials-title {
        font-size: 1.85rem;
    }

    .about-description-lead {
        font-size: 0.98rem;
        padding-left: 14px;
    }

    .about-description-body {
        font-size: 0.92rem;
    }

    .about-mini-features {
        gap: 8px;
    }

    .about-mini-feature {
        font-size: 0.76rem;
        padding: 7px 12px;
    }

    .mv-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mv-card {
        padding: 24px 20px;
        margin-top: 0;
    }

    .mv-card-title {
        font-size: 1.3rem;
    }

    .mv-card-text,
    .mv-card-list li {
        font-size: 0.88rem;
    }

    .mv-hub {
        width: 96px;
        height: 96px;
    }

    .mv-hub-ring-outer {
        width: 112px;
        height: 112px;
    }

    .machine-card-premium-dark {
        padding: 22px 18px;
    }

    .machine-media-premium {
        height: 200px;
    }

    .machine-specs-grid-premium {
        grid-template-columns: 1fr;
    }

    .services-interactive {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-nav-col {
        flex-direction: column;
        flex-wrap: nowrap;
        max-height: 280px;
    }

    .service-nav-btn {
        flex: none;
        width: 100%;
        min-width: 0;
    }

    .service-display-slide.active {
        grid-template-columns: 1fr;
    }

    .service-display-image {
        min-height: 220px;
    }

    .service-display-info {
        padding: 24px 20px;
    }

    .service-display-info h3 {
        font-size: 1.45rem;
    }

    .services-showcase-title {
        font-size: 1.85rem;
    }

    .testimonial-featured {
        padding: 24px 20px;
    }

    .testimonial-quote {
        font-size: 0.98rem;
    }

    .machines-grid-premium,
    .services-checklist-grid,
    .services-grid,
    .services-detailed-grid,
    .values-grid,
    .info-grid,
    .equipment-grid,
    .advantages-grid,
    .faq-grid,
    .machine-specs-grid-premium {
        grid-template-columns: 1fr;
    }

    .partner-stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .partner-stat-item {
        flex: none;
    }

    .why-partner-bg-image {
        display: none;
    }

    .timeline-connectors-svg {
        display: none;
    }

    .why-partner-timeline {
        grid-template-columns: 1fr;
    }

    .timeline-col-2 {
        padding-top: 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-box-glass {
        padding: 40px 24px;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .process-arrow {
        display: none;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-image-collage {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-height: 86px;
    }

    .container {
        padding: 0 14px;
    }

    .about-home,
    .home-machines,
    .mission-vision-section,
    .services-preview,
    .why-partner-section,
    .testimonials-section {
        padding: 52px 0;
    }

    .hero {
        height: 44vh;
        min-height: 280px;
    }

    .logo img {
        height: 100%;
        max-width: min(250px, 72vw);
        margin: 0;
    }

    .section-title,
    .main-title-premium,
    .about-home-content h2,
    .partner-main-title,
    .mv-title,
    .testimonials-title {
        font-size: 1.55rem;
    }

    .mv-tag,
    .section-tagline span {
        font-size: 0.68rem;
        letter-spacing: 1.8px;
    }

    .mv-card {
        padding: 20px 16px;
    }

    .mv-card-top {
        flex-wrap: wrap;
        gap: 10px;
    }

    .mv-card-badge {
        font-size: 0.62rem;
    }

    .about-image-collage {
        max-width: 300px;
    }

    .about-mini-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .machine-card-premium-dark {
        padding: 18px 14px;
    }

    .machine-media-premium {
        height: 170px;
    }

    .services-showcase-title {
        font-size: 1.55rem;
    }

    .service-display-info h3 {
        font-size: 1.25rem;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.88rem;
    }

    .footer-logo img {
        height: auto;
        width: min(100%, 250px);
        max-width: 250px;
    }

    .cta-box-glass {
        padding: 32px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-video {
        animation: none;
    }

    .mv-card::after {
        display: none;
    }
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.whatsapp-float i {
    font-size: 28px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 85px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
}

/* ========================================
   QUALITY ASSURANCE & STANDARDS SECTION
   ======================================== */
.services-qa-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-qa-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.qa-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.qa-lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 30px;
}

.qa-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qa-feature-card {
    display: flex;
    gap: 20px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qa-feature-card:hover {
    transform: translateX(8px);
    background: white;
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.qa-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.qa-feature-card:hover .qa-icon-wrapper {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

.qa-feature-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.qa-feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.services-qa-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-cert-card {
    background: white;
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    max-width: 320px;
    width: 100%;
}

.qa-cert-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
    pointer-events: none;
    transition: transform 0.5s ease;
}

.qa-cert-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(15, 34, 61, 0.12);
    border-color: rgba(37, 99, 235, 0.25);
}

.qa-cert-card:hover::before {
    transform: translate(20px, 20px) scale(1.1);
}

.qa-cert-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

.cert-badge-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.4rem;
    color: #eab308;
    background: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.cert-card-info h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.cert-card-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 992px) {
    .services-qa-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .qa-cert-card {
        max-width: 290px;
    }
}

.cert-click-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 80px;
    background: rgba(15, 34, 61, 0.65);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.qa-cert-card:hover .cert-click-overlay {
    opacity: 1;
}

.cert-click-overlay i {
    font-size: 1.6rem;
    color: var(--secondary-light);
    animation: pulseZoom 1.5s infinite ease-in-out;
}

@keyframes pulseZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ========================================
   CNC FIBER LASER CUTTING SERVICE PAGE
   ======================================== */
.laser-cutting-hero {
    position: relative;
    min-height: 600px;
    background: url('image&video/service 1.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 160px 0;
    overflow: hidden;
    color: white;
}

.laser-cutting-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(15, 34, 61, 0.96) 0%, 
        rgba(15, 34, 61, 0.85) 50%, 
        rgba(37, 99, 235, 0.4) 100%);
    z-index: 1;
}

/* Laser Scanner elements in Hero */
.laser-scanner-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.laser-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(239, 68, 68, 0.8) 25%, 
        rgba(249, 115, 22, 1) 50%, 
        rgba(239, 68, 68, 0.8) 75%, 
        transparent);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.8), 0 0 25px rgba(239, 68, 68, 0.6);
    animation: laserSweep 5s ease-in-out infinite;
}

.laser-glow-pointer {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 3;
    animation: laserPointerSweep 5s ease-in-out infinite;
}

.laser-glow-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffffff, 0 0 25px #ef4444;
}

.laser-glow-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 2px solid rgba(239, 68, 68, 0.6);
    border-radius: 50%;
    animation: laserRadarPulse 1.8s infinite linear;
}

.laser-sparks {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #f97316;
    border-radius: 50%;
    box-shadow: 0 0 10px #f97316, 0 0 15px #ef4444;
    opacity: 0;
}

.spark-1 { animation: sparkAnim1 5s infinite ease-in-out; }
.spark-2 { animation: sparkAnim2 5s infinite ease-in-out 1.2s; }
.spark-3 { animation: sparkAnim3 5s infinite ease-in-out 2.5s; }
.spark-4 { animation: sparkAnim4 5s infinite ease-in-out 3.7s; }

@keyframes laserSweep {
    0%, 100% { top: 15%; opacity: 0.3; }
    10% { opacity: 1; }
    50% { top: 85%; opacity: 1; }
    90% { opacity: 1; }
    95% { opacity: 0.3; }
}

@keyframes laserPointerSweep {
    0%, 100% { top: 15%; left: 20%; opacity: 0.3; }
    10% { opacity: 1; }
    25% { left: 80%; }
    50% { top: 85%; left: 35%; opacity: 1; }
    75% { left: 75%; }
    90% { opacity: 1; }
    95% { opacity: 0.3; }
}

@keyframes laserRadarPulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

@keyframes sparkAnim1 {
    0% { top: 15%; left: 20%; transform: scale(1) translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    15% { transform: scale(0.2) translate(-40px, 50px); opacity: 0; }
    100% { opacity: 0; }
}

@keyframes sparkAnim2 {
    0% { top: 35%; left: 60%; transform: scale(1) translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    15% { transform: scale(0.2) translate(50px, -30px); opacity: 0; }
    100% { opacity: 0; }
}

@keyframes sparkAnim3 {
    0% { top: 65%; left: 45%; transform: scale(1) translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    15% { transform: scale(0.2) translate(-30px, -50px); opacity: 0; }
    100% { opacity: 0; }
}

@keyframes sparkAnim4 {
    0% { top: 80%; left: 70%; transform: scale(1) translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    15% { transform: scale(0.2) translate(40px, 40px); opacity: 0; }
    100% { opacity: 0; }
}

.laser-cutting-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.laser-hero-content {
    max-width: 650px;
}

.laser-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(59, 130, 246, 0.5);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--secondary-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
}

.laser-hero-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.laser-hero-content h1 span {
    color: var(--secondary-light);
    background: linear-gradient(135deg, var(--secondary-light), var(--accent-sky));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.laser-hero-content p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 30px;
}

.laser-hero-actions {
    display: flex;
    align-items: center;
}

.laser-hero-actions .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.laser-hero-actions .btn-primary:hover {
    box-shadow: var(--shadow-blue), 0 0 15px rgba(37, 99, 235, 0.4);
}

.laser-hero-actions .btn-specs {
    margin-left: 15px;
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.laser-hero-actions .btn-specs:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.laser-overview-section {
    padding: 100px 0;
    background: #ffffff;
}

.laser-overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.overview-text h2 span {
    color: var(--secondary-color);
}

.overview-text p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.overview-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.overview-image-wrapper img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.laser-overview-grid:hover img {
    transform: scale(1.03);
}

.image-accent-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: all 0.3s ease;
}

.laser-overview-grid:hover .image-accent-border {
    transform: translate(-10px, -10px);
}

.capabilities-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.cap-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(15, 34, 61, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cap-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.15);
}

.cap-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.cap-card:hover .cap-icon-box {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.cap-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 12px;
}

.cap-table {
    width: 100%;
    border-collapse: collapse;
}

.cap-table tr {
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cap-table tr:last-child {
    border-bottom: none;
}

.cap-table tr:hover {
    background: rgba(37, 99, 235, 0.03);
}

.cap-table td {
    padding: 14px 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.cap-table tr:hover td:first-child {
    color: var(--secondary-color);
    transform: translateX(5px);
    font-weight: 600;
}

.cap-table td.cap-value {
    text-align: right;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--secondary-color);
}

.cap-table tr:hover td.cap-value {
    color: var(--secondary-dark);
    transform: translateX(-5px);
    text-shadow: 0 0 8px rgba(37, 99, 235, 0.2);
}

.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.advantages-section .section-title {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 12px;
}

.advantages-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.advantage-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(15, 34, 61, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.advantage-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light), transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.advantage-card:hover::after {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow-md), var(--shadow-blue);
}

.adv-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.advantage-card:hover .adv-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary-light);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.advantage-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.advantage-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.faq-section-laser {
    padding: 100px 0;
    background: #f8fafc;
}

/* FAQ Accordion Layout */
.faq-accordion-laser {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(15, 34, 61, 0.02);
}

.faq-accordion-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 10px 25px rgba(15, 34, 61, 0.05);
}

.faq-accordion-header {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-accordion-header span {
    padding-right: 20px;
}

.faq-accordion-icon {
    font-size: 0.95rem;
    color: var(--secondary-color);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    opacity: 0;
}

.faq-accordion-body {
    padding: 0 30px 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Accordion Active States */
.faq-accordion-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 12px 30px rgba(15, 34, 61, 0.06), 0 0 15px rgba(37, 99, 235, 0.05);
    border-left: 4px solid var(--secondary-color);
}

.faq-accordion-item.active .faq-accordion-header {
    color: var(--secondary-color);
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(45deg); /* Plus to X */
    color: var(--secondary-dark);
}

.faq-accordion-item.active .faq-accordion-content {
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-accordion-header {
        padding: 18px 20px;
        font-size: 0.98rem;
    }
    .faq-accordion-body {
        padding: 0 20px 20px;
        font-size: 0.88rem;
    }
}

.cta-laser {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-laser::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.cta-laser .cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-laser h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cta-laser p {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Responsive Rules for Laser Inner Page */
@media (max-width: 991px) {
    .laser-cutting-hero {
        min-height: 500px;
        padding: 130px 0;
    }
    .laser-hero-content h1 {
        font-size: 2.8rem;
    }
    .laser-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .overview-image {
        max-width: 500px;
        margin: 0 auto;
        order: -1;
    }
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .capabilities-section,
    .advantages-section,
    .faq-section-laser,
    .laser-overview-section {
        padding: 60px 0;
    }
    .overview-image-wrapper {
        margin-right: 20px;
        margin-bottom: 20px;
    }
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .faq-grid-laser {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .laser-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .laser-hero-actions .btn {
        margin-left: 0 !important;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .laser-hero-content h1 {
        font-size: 2.2rem;
    }
    .overview-text h2 {
        font-size: 2rem;
    }
}

/* ========================================
   MACHINE CAPABILITIES PAGE STYLES
   ======================================== */
.machines-hero-header {
    position: relative;
    width: 100%;
    aspect-ratio: 2172 / 724;
    background: url('image&video/machine capabilities.png') no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.equipment-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.06);
    color: var(--secondary-color);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 15px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
}

.machines-hero-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(7, 20, 40, 0.88) 0%, 
        rgba(15, 34, 61, 0.75) 50%, 
        rgba(11, 25, 41, 0.92) 100%);
    z-index: 1;
    display: none;
}

.machines-hero-header .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.machines-hero-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.machines-hero-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    margin: 0 auto;
}

.machines-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.machine-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 45px;
    margin-bottom: 60px;
    display: flex;
    align-items: stretch;
    gap: 60px;
    box-shadow: var(--shadow-sm);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.machine-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-md), 0 10px 30px rgba(37, 99, 235, 0.04);
}

.machine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), var(--secondary-light));
    opacity: 0;
    transition: opacity 0.45s ease;
}

.machine-card:hover::before {
    opacity: 1;
}

.machine-image {
    width: 48%;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    background: #ffffff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.machine-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.machine-card:hover .machine-image img {
    transform: scale(1.05) rotate(0.5deg);
}

.machine-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.machine-card:hover .machine-image::after {
    left: 100%;
}

.machine-details {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.machine-details h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.machine-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.machine-details h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.spec {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.05);
}

.spec-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-label i {
    color: var(--secondary-color);
    font-size: 0.82rem;
    transition: transform 0.3s ease;
}

.spec:hover .spec-label i {
    transform: scale(1.15) rotate(5deg);
}

.spec-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.spec:hover .spec-value {
    color: var(--secondary-color);
}

.machine-details .capabilities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.capabilities-list li {
    font-size: 0.88rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(15, 34, 61, 0.02);
}

.capabilities-list li:hover {
    transform: translateX(4px) translateY(-1px);
    background: rgba(37, 99, 235, 0.04);
    border-color: rgba(37, 99, 235, 0.15);
    color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.capabilities-list li i {
    color: var(--secondary-color);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.capabilities-list li:hover i {
    transform: scale(1.2);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.equipment-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 35px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(15, 34, 61, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.equipment-card:hover::before {
    transform: scaleX(1);
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md), 0 10px 25px rgba(37, 99, 235, 0.03);
    border-color: rgba(37, 99, 235, 0.15);
}

.equipment-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.06);
    color: var(--secondary-color);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-card:hover .equipment-icon {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.equipment-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.equipment-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.advantage-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-top: 3px solid transparent;
    border-radius: var(--radius-md);
    padding: 35px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(15, 34, 61, 0.03);
    position: relative;
}

.advantage-item:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.12);
    border-top-color: var(--secondary-color);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.06);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-item:hover .advantage-icon {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.advantage-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.advantage-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Responsive Rules for Machines Page */
@media (max-width: 991px) {
    .machines-hero-header {
        padding: 0;
        min-height: auto;
    }
    .machines-hero-header h1 {
        font-size: 2.8rem;
    }
    .machine-card {
        flex-direction: column !important;
        gap: 35px;
        padding: 30px;
    }
    .machine-image {
        width: 100%;
        min-height: 300px;
    }
    .machine-details {
        width: 100%;
    }
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .machines-section {
        padding: 65px 0;
    }
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .machine-details .capabilities-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .advantages-section {
        padding: 70px 0;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .advantage-item {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .machines-hero-header h1 {
        font-size: 2.2rem;
    }
    .machines-hero-header p {
        font-size: 1.1rem;
    }
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   INTERACTIVE SUPPORTING EQUIPMENT CIRCLE
   ======================================== */
.equipment-circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    width: 100%;
}

.desktop-only-circle {
    display: flex;
}

.mobile-only-grid {
    display: none;
}

.equipment-circle-wrapper {
    position: relative;
    width: 580px;
    height: 580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.orbit-ring-outer {
    width: 500px;
    height: 500px;
    border: 1.5px solid rgba(96, 165, 250, 0.22);
}

.orbit-ring-inner {
    width: 410px;
    height: 410px;
    border: 1.5px dashed rgba(96, 165, 250, 0.35);
    animation: spinRing 50s linear infinite;
}

@keyframes spinRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.center-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(15, 34, 61, 0.1);
    border: 6px solid #f8fafc;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.center-content {
    position: absolute;
    inset: 0;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.45s;
    z-index: 2;
}

.center-content.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 3;
}

.center-logo {
    margin-bottom: 16px;
    max-width: 170px;
}

.center-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.center-instruction {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.55;
    max-width: 220px;
}

.detail-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--secondary-color);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.25); }
    50% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
}

.center-content.detail-state h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.center-content.detail-state p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.orbit-point {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.15);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(15, 34, 61, 0.05);
    transform: translate(-50%, -50%);
}

.point-1 { top: 40px; left: 50%; }
.point-2 { top: 50%; left: 540px; }
.point-3 { top: 540px; left: 50%; }
.point-4 { top: 50%; left: 40px; }

.point-number {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.orbit-point:hover, .orbit-point.active {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: var(--shadow-blue);
}

.orbit-point:hover .point-number, .orbit-point.active .point-number {
    color: #ffffff;
}

.orbit-point::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    opacity: 0;
    transform: scale(1);
    transition: all 0.3s ease;
}

.orbit-point:hover::after, .orbit-point.active::after {
    opacity: 1;
    animation: pointPulse 2s infinite;
}

@keyframes pointPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.22); opacity: 0; }
}

/* Responsiveness fallback styling for interactive circle */
@media (max-width: 991px) {
    .desktop-only-circle {
        display: none !important;
    }
    .mobile-only-grid {
        display: grid !important;
    }
    .supporting-section {
        padding: 70px 0;
    }
}

/* ========================================
   SUPPORTING EQUIPMENT SECTION (DARK NAVY)
   ======================================== */
.supporting-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f223d 0%, #071428 100%);
    position: relative;
    overflow: hidden;
}

.supporting-section .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

/* Make sure mobile fallback cards look premium on dark navy */
.supporting-section .equipment-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.supporting-section .equipment-card h3 {
    color: #ffffff;
}

.supporting-section .equipment-card p {
    color: rgba(255, 255, 255, 0.7);
}

.supporting-section .equipment-icon {
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
}

.supporting-section .equipment-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.supporting-section .equipment-card:hover .equipment-icon {
    background: var(--secondary-color);
    color: #ffffff;
}

/* ========================================
   FOUNDER & LEADERSHIP SECTION
   ======================================== */
.founder-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.founder-card-glow {
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.founder-card-inner {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    z-index: 1;
    transition: transform var(--transition), box-shadow var(--transition);
}

.founder-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
}

.founder-card-inner img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: 480px;
    object-fit: cover;
    object-position: center 12%;
}

.founder-meta {
    padding: 24px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, #f8fafc 100%);
    border-top: 1px solid var(--border-light);
}

.founder-meta h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-navy);
    margin-bottom: 4px;
}

.founder-designation {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-section-tag {
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    padding: 6px 12px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--secondary-color);
    align-self: flex-start;
}

.founder-section-title {
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 8px;
    text-align: left;
}

.founder-established {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.founder-quote {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--secondary-color);
    font-weight: 600;
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.founder-text {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.founder-text:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image-wrapper {
        max-width: 380px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 60px 0;
    }

    .founder-image-wrapper {
        max-width: 320px;
    }

    .founder-card-inner img {
        max-height: 400px;
    }

    .founder-quote {
        font-size: 1.05rem;
        padding-left: 15px;
        margin-bottom: 20px;
    }

    .founder-text {
        font-size: 0.92rem;
        line-height: 1.75;
    }

    .founder-grid {
        gap: 30px;
    }

    .founder-meta {
        padding: 20px 16px;
    }

    .founder-card-inner:hover {
        transform: none;
        box-shadow: var(--shadow-lg);
    }

    .founder-established {
        font-size: 0.78rem;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .about-section .main-title-premium,
    .founder-content .main-title-premium,
    .founder-section-title,
    .services-qa-content .main-title-premium {
        font-size: 1.5rem !important;
    }

    .founder-image-wrapper {
        max-width: 100%;
    }

    .founder-card-inner img {
        max-height: 360px;
        aspect-ratio: 3 / 4;
    }

    .founder-meta h3 {
        font-size: 1.35rem;
    }

    .founder-designation {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }

    .founder-quote {
        font-size: 0.95rem;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .about-stat-num {
        font-size: 1.65rem;
    }

    .about-stat-label {
        font-size: 0.78rem;
    }
}

