/* ============================================
           CSS VARIABLES & THEME
           ============================================ */
:root {
    --accent: 255, 123, 0;
    --accent-light: #ff9b40;
    --accent-dark: #cc6200;
    --accent-glow: rgba(255, 123, 0, 0.3);
    --accent-glow-soft: rgba(255, 123, 0, 0.1);
    --white: #ffffff;
    --black: #0d0d0d;
    --dark-bg: #0d0d0d;
    --dark-surface: #141414;
    --dark-card: #1a1a1a;
    --dark-border: rgba(255, 255, 255, 0.08);
    --light-bg: #f5f5f5;
    --light-card: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-dark: #1a1a1a;
    --text-dark-secondary: #555555;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg-dark: rgba(13, 13, 13, 0.85);
    --font-heading: "Boldonse", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(255, 123, 0, 0.15);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --container-max: 1240px;
    --container-wide: 1400px;
    --nav-height: 80px;
}

html[data-theme="light"] {
    --dark-bg: #f4f4f5;
    --dark-surface: #e4e4e7;
    --dark-card: #ffffff;
    --dark-border: rgba(15, 23, 42, 0.08);
    --text-primary: #0f172a;
    --text-secondary: rgba(207, 207, 207, 0.65);
    --text-muted: rgba(15, 23, 42, 0.42);
    --glass-bg: rgba(15, 23, 42, 0.04);
    --glass-border: rgba(15, 23, 42, 0.12);
    --glass-bg-dark: rgba(255, 255, 255, 0.9);
    --white: #f1ebeb;
    --black: #0f172a;
    --bg-deep-rgb: 244, 244, 245;
    --text-dark: #0f172a;
    --text-dark-secondary: #475569;

    .navbar.scrolled {
        background: #1a1a1ac2;
    }
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul {
    list-style: none;
}

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

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ============================================
           UTILITY CLASSES
           ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(var(--accent));
    margin-bottom: 20px;
}

.section-label::before {
    content: "";
    width: 24px;
    height: 2px;
    background: rgba(var(--accent));
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(var(--accent));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(var(--accent), 0.3);
}

.btn-primary:hover {
    background: rgba(var(--accent));
    box-shadow: 0 8px 40px rgba(var(--accent), 0.5);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--glass-bg);
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: rgba(var(--accent));
    border: 2px solid rgba(var(--accent));
}

.btn-outline:hover {
    background: rgba(var(--accent));
    color: var(--white);
    transform: translateY(-2px);
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* Glow Orb */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.5;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}
.reveal-delay-5 {
    transition-delay: 0.5s;
}
.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* ============================================
           1. NAVBAR
           ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all var(--transition-slow);
}

.navbar.scrolled {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.navbar-logo .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.navbar-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-base);
}

.navbar-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(var(--accent));
    border-radius: 2px;
    transition: width var(--transition-base);
}

.navbar-links a:hover {
    color: var(--white);
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-cta .btn-primary {
    padding: 12px 28px;
    font-size: 14px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    transition: opacity var(--transition-slow);
    padding-top: 10%;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.mobile-menu a:hover {
    color: rgba(var(--accent));
}

/* ============================================
           2. HERO SECTION
           ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:radial-gradient(ellipse 80% 50% at 15% -10%, rgba(255, 123, 0, 0.12), #000000b5), radial-gradient(ellipse 50% 40% at 95% 70%, rgba(255, 123, 0, 0.06), #230d0400);
}

/* Hero Glow Effects */
.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 123, 0, 0.15),
        transparent 70%
    );
    top: -200px;
    right: -100px;
    animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 123, 0, 0.08),
        transparent 70%
    );
    bottom: -100px;
    left: -100px;
    animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    padding-top: 100px;
    width: 100%;
}

.hero-text {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(var(--accent));
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6.5vw, 60px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 28px;
    color: var(--white);
}

.hero-title .accent {
    background: linear-gradient(135deg, rgba(var(--accent)), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 36px;
    font-size: 15.5px;
}

/* Trusted Companies */
.hero-trusted {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trusted-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 8px;
}

.hero-trusted-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-trusted-logos img {
    height: 20px;
    opacity: 0.35;
    filter: grayscale(100%) brightness(200%);
    transition: opacity var(--transition-base);
}

.hero-trusted-logos img:hover {
    opacity: 0.7;
}

/* Hero Floating Cards */
.hero-float-cards {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-float-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    min-width: 220px;
    animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card:nth-child(2) {
    animation-delay: -2s;
}
.hero-float-card:nth-child(3) {
    animation-delay: -4s;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(0.5deg);
    }
}

.float-card-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.float-card-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.float-card-value .accent {
    color: rgba(var(--accent));
}

.float-card-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-top: 12px;
    overflow: hidden;
}

.float-card-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(var(--accent)), var(--accent-light));
    border-radius: 4px;
    width: 0;
    transition: width 2s ease;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 32px;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-base);
}

.hero-dot.active {
    background: rgba(var(--accent));
    width: 48px;
}

.hero-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 14px;
}

.hero-arrow:hover {
    background: rgba(var(--accent));
    border-color: rgba(var(--accent));
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    writing-mode: vertical-lr;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 40%;
    background: rgba(var(--accent));
    animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
    0% {
        top: -40%;
    }
    100% {
        top: 110%;
    }
}

/* ============================================
           3. METRICS SECTION
           ============================================ */
.metrics {
    position: relative;
    background: var(--dark-surface);
    overflow: hidden;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.metric-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent)), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 123, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(255, 123, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    color: rgba(var(--accent));
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
           4. ABOUT SECTION
           ============================================ */
.about {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-content .about-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 38px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 28px;
}

.about-content p {
    font-size: 16.5px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(var(--accent));
    font-weight: 600;
    font-size: 15px;
    margin-top: 12px;
    transition: gap var(--transition-base);
}

.about-link:hover {
    gap: 14px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.about-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 123, 0, 0.15);
}

.about-stat-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(var(--accent)), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.about-stat-card:hover::after {
    opacity: 1;
}

.about-stat-value {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: rgba(var(--accent));
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 123, 0, 0.08),
        transparent 70%
    );
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/* ============================================
           5. SERVICES SECTION
           ============================================ */
.services {
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(var(--accent)), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 123, 0, 0.2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 123, 0, 0.05);
}

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

.service-icon {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: linear-gradient(
        135deg,
        rgba(255, 123, 0, 0.12),
        rgba(255, 123, 0, 0.04)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.service-icon img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-icon i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: rgba(var(--accent));
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(var(--accent)), var(--accent-dark));
    color: var(--white);
    transform: scale(1.02);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.service-desc {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
           6. PRODUCTS SECTION
           ============================================ */
.products {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 123, 0, 0.2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 123, 0, 0.05);
}

.product-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

.product-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-card), transparent 55%);
    pointer-events: none;
}

.product-status {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 1;
    background: rgba(255, 123, 0, 0.92);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-body {
    padding: 26px 28px 30px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-desc {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.blog-more-wrap {
    text-align: center;
    margin-top: 52px;
}

.blog-more-wrap .btn {
    min-width: 220px;
}

/* ============================================
           7. PARTNERS / LOGO TICKER
           ============================================ */
.partners {
    position: relative;
    overflow: hidden;
    padding: 0 0 80px 0;
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark-bg), transparent);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark-bg), transparent);
}

.ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    flex-shrink: 0;
}

.ticker-item img {
    height: 50px;
    opacity: 0.3;
    filter: grayscale(100%) brightness(200%);
    transition: all var(--transition-base);
}

.ticker-item:hover img {
    opacity: 0.8;
    filter: grayscale(0%) brightness(100%);
}

/* ============================================
           8. BLOG / NEWS SECTION
           ============================================ */
.blog {
    background: var(--dark-surface);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 123, 0, 0.15);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--dark-card), transparent);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(var(--accent));
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-body {
    padding: 28px;
}

.blog-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 2;
    transition: color var(--transition-base);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

.blog-card:hover .blog-title {
    color: rgba(var(--accent));
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(var(--accent));
    font-weight: 600;
    font-size: 14px;
    transition: gap var(--transition-base);
}

.blog-link:hover {
    gap: 14px;
}

/* ============================================
           9. TESTIMONIALS SECTION
           ============================================ */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials-glow {
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 123, 0, 0.06),
        transparent 70%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.testimonial-quote-icon {
    font-size: 40px;
    color: rgba(var(--accent));
    margin-bottom: 24px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 20px;
    color: var(--text-primary);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars i {
    color: rgba(var(--accent));
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--glass-border);
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Testimonial Controls */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.test-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 14px;
}

.test-arrow:hover {
    background: rgba(var(--accent));
    border-color: rgba(var(--accent));
}

.test-dots {
    display: flex;
    gap: 6px;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all var(--transition-base);
}

.test-dot.active {
    background: rgba(var(--accent));
    transform: scale(1.2);
}

/* ============================================
           10. PROJECTS SECTION
           ============================================ */
.projects {
    background: var(--dark-surface);
    position: relative;
}

.projects-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0 10%;
}

.projects-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.project-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.project-card.active {
    border-color: rgba(255, 123, 0, 0.3);
}


.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 123, 0, 0.15);
}

@media (min-width: 992px) {
    .projects-slider-wrapper {
        padding: 0 8%;
    }
    .project-card {
        flex: 0 0 85%;
        width: 85%;
    }
}

@media (min-width: 1200px) {
    .projects-slider-wrapper {
        padding: 0 8%;
    }
    .project-card {
        flex: 0 0 80%;
        width: 80%;
    }
}

.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 123, 0, 0.9);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-body {
    padding: 28px;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.project-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-pill {
    background: rgba(255, 123, 0, 0.08);
    color: rgba(var(--accent));
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 123, 0, 0.15);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(var(--accent));
    font-weight: 600;
    font-size: 14px;
    transition: gap var(--transition-base);
}

.project-link:hover {
    gap: 14px;
}

.projects-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.proj-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 14px;
}

.proj-arrow:hover {
    background: rgba(var(--accent));
    border-color: rgba(var(--accent));
}

/* ============================================
           11. CONTACT SECTION
           ============================================ */
.contact {
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-top:30px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: rgba(255, 123, 0, 0.2);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255, 123, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--accent));
    font-size: 18px;
    flex-shrink: 0;
}

.contact-card-text h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-card-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
    transition: all var(--transition-base);
}

.contact-socials a:hover {
    background: rgba(var(--accent));
    border-color: rgba(var(--accent));
    color: var(--white);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    backdrop-filter: blur(20px);
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--white);
    font-size: 15px;
    transition: all var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(var(--accent));
    box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-wrapper .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 16px;
}

/* ============================================
           11. FOOTER
           ============================================ */
.footer {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand .navbar-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-brand .contact-socials a {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}


.footer-col a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    margin-right: 20px;
    margin-bottom: 14px;
    display:inline-block;
}

.footer-col a:hover {
    color: rgba(var(--accent));
    padding-left: 4px;
}

/* Newsletter */
.footer-newsletter {
    margin-top: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-full);
    padding: 12px 20px;
    color: var(--white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    border-color: rgba(var(--accent));
}

.newsletter-form button {
    background: rgba(var(--accent));
    color: var(--white);
    border-radius: var(--radius-full);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition-base);
}

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

/* ============================================
           RESPONSIVE DESIGN
           ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-float-cards {
        display: none;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

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

    .blog-grid .blog-card:last-child {
        display: none;
    }

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

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

    .scroll-indicator {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .navbar-links,
    .navbar-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(36px, 8vw, 52px);
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trusted {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-slider-controls {
        bottom: 24px;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .metric-card {
        padding: 28px 20px;
    }

    .metric-value {
        font-size: 36px;
    }

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

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

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

    .blog-grid .blog-card:last-child {
        display: block;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-text {
        font-size: 17px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .projects-slider-wrapper {
        padding: 0;
    }
    .project-card {
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container,
    .container-wide {
        padding: 0 16px;
    }

    .navbar-inner {
        padding: 0 16px;
    }

    .hero-content {
        padding: 0 16px;
        padding-top: 100px;
    }

    .metric-card {
        padding: 24px 16px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .projects-slider-wrapper {
        padding: 0;
    }
    .project-card {
        flex: 0 0 100%;
        width: 100%;
    }
}

/* Ultra-wide */
@media (min-width: 1600px) {
    .hero-title {
        font-size: 60px;
    }

    .section-title {
        font-size: 40px;
    }
}

/* ============================================
           CUSTOM SCROLLBAR
           ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
           SELECTION
           ============================================ */
::selection {
    background: rgba(255, 123, 0, 0.3);
    color: var(--white);
}

/* ============================================
           CUSTOM SCROLLBAR
           ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
           SCROLL TO TOP
           ============================================ */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(var(--accent));
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 32px rgba(255, 123, 0, 0.35);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
        opacity var(--transition-base),
        visibility var(--transition-base),
        transform var(--transition-base),
        background var(--transition-base),
        box-shadow var(--transition-base);
}

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

.scroll-top:hover {
    background: var(--accent-light);
    box-shadow: 0 12px 40px rgba(255, 123, 0, 0.45);
}

.scroll-top.visible:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 22px;
        right: 18px;
        width: 46px;
        height: 46px;
        font-size: 16px;
    }
}

/* /////MODAL */

.ss-contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    padding: 30px;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.ss-contact-modal.is-open {
    display: flex;
}
.ss-contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.ss-contact-modal__dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    width: min(92vw, 1400px);
    /* max-height: calc(100vh - 60px);
    max-height: calc(100dvh - 60px); */
    margin: auto;
    background: var(--glass-bg-dark);
    border-radius: 28px;
    /* overflow-y: auto; */
    /* overflow-x: hidden; */
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.18);
    padding: 40px;
}
.ss-contact-modal__close {
    position: absolute;
    top: 15px;
    right: 45px;
    border: none;
    background: transparent;
    font-size: 28px;
    color:var(--text-secondary);
    cursor: pointer;
}
.ss-contact-modal .contact-pg {
    padding: 40px 32px;
}
.ss-contact-modal .contact-pg .sec-head h2 {
    margin-bottom: 24px;
}

.ss-contact-modal .form-group textarea {
    min-height: 180px;
    resize: vertical;
}
.ss-contact-modal .butn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .ss-contact-modal {
        align-items: flex-start;
        padding: 16px;
    }

    .ss-contact-modal__dialog {
        width: 100%;
        border-radius: 20px;
        padding: 28px 18px;
    }

    .ss-contact-modal__close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 22px;
        z-index: 3;
    }

    .ss-contact-modal .contact-grid {
        gap: 28px;
         margin-top:0px;
    }

    .ss-contact-modal .contact-form-wrapper {
        padding: 28px 18px;
    }
}

@media (max-width: 480px) {
    .ss-contact-modal {
        padding: 10px;
    }

    .ss-contact-modal__dialog {
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
        border-radius: 16px;
        padding: 24px 14px;
    }

    .ss-contact-modal .captcha-row {
        flex-wrap: wrap;
    }

    .ss-contact-modal #cf_captcha {
        flex-basis: 100%;
    }
}

.mission-vision-grid .value-card {
    text-align: left;
}
.mission-vision-grid .value-card-icon {
    margin: 0;
    width: 36px;
    height: 36px;
    font-size: 16px;
    flex-shrink: 0;
}
.mission-vision-grid .value-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
