:root {
    --primary-color: #0c1631;
    /* Deep Navy */
    --primary-light: #162650;
    --accent-color: #d4af37;
    /* Elegant Gold */
    --accent-hover: #b5952f;
    --text-main: #333333;
    --text-light: #555555;
    --text-muted: #888888;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #070d1e;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(12, 22, 49, 0.1);
}

/* ================= Reset & Base ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

/* ================= Typography & Utilities ================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-family: var(--font-body);
    font-weight: 600;
}

h4 {
    font-family: var(--font-body);
    font-weight: 600;
}

.highlight {
    color: var(--accent-color);
    font-style: italic;
}

.highlight-text {
    color: var(--accent-color);
}

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

.text-white {
    color: #ffffff !important;
}

.text-gold {
    color: var(--accent-color) !important;
}

.text-light {
    color: #e2e8f0 !important;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-primary {
    background-color: var(--primary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.max-w-700 {
    max-width: 700px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-4 {
    margin-top: 1.5rem;
}

.w-100 {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

/* ================= Navigation ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--primary-color);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
}

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

.nav-links a:not(.btn) {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 5px;
}

.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--primary-color);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--primary-color);
}

/* ================= Advanced Hero Section ================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(22, 38, 80, 0.4) 0%, rgba(7, 13, 30, 1) 60%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: #ffffff;
    max-width: 650px;
}

.glow-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.hero-title {
    font-size: 4.8rem;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight-wrapper {
    position: relative;
    display: inline-block;
}

.highlight-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 15px;
    z-index: -1;
    overflow: visible;
}

.highlight-underline path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawUnderline 1.5s ease forwards 0.5s;
}

@keyframes drawUnderline {
    to {
        stroke-dashoffset: 0;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    align-items: center;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.play-btn {
    border-color: rgba(255, 255, 255, 0.2) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.play-icon {
    width: 36px;
    height: 36px;
    background: #ffffff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    padding-left: 3px;
    transition: var(--transition);
}

.play-btn:hover .play-icon {
    background: var(--accent-color);
    color: #ffffff;
}

.hero-stats-mini {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-mini {
    display: flex;
    flex-direction: column;
}

.stat-mini strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #ffffff;
    line-height: 1;
}

.stat-mini span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

/* Hero Right Visuals */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual-bg-blur {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.visual-bg-blur.dark-navy {
    background: rgba(43, 82, 190, 0.2);
    top: 10%;
    right: 10%;
}

.visual-bg-blur.gold-glow {
    background: rgba(212, 175, 55, 0.15);
    bottom: 0;
    left: 10%;
}

.visual-img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    z-index: 2;
}

.main-img {
    width: 75%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-img {
    width: 45%;
    height: 50%;
    bottom: 0;
    left: -5%;
    border-radius: 12px;
    border: 4px solid var(--bg-dark);
    z-index: 3;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem;
    color: #ffffff;
    z-index: 4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    color: #ffffff;
    z-index: 4;
}

.stats-card {
    top: 10%;
    right: -5%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.float-anim {
    animation: floating 4s ease-in-out infinite;
}

.pulse-anim {
    animation: floating 5s ease-in-out infinite reverse;
}

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

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

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

.stats-card .card-icon {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.stats-card .card-data h4 {
    display: inline-block;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #ffffff;
}

.stats-card .card-data p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.rating-card {
    bottom: 20%;
    right: -10%;
}

.card-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.card-avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    margin-left: -10px;
}

.card-avatars img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: -10px;
    border: 2px solid var(--primary-light);
    z-index: 10;
}

.rating-stars {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.rating-card p {
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

.decorative-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(212, 175, 55, 0.3) 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 0;
    top: -5%;
    left: 5%;
}

/* ================= About Section ================= */
.about-image-wrapper {
    position: relative;
}

.image-stack {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.img-main {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.experience-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--accent-color);
    max-width: 250px;
}

.experience-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.experience-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.experience-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.mvv-tabs {
    margin-top: 2rem;
}

.tab-headers {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.values-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.values-list i {
    color: var(--accent-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= Services Section ================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    color: var(--bg-white);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
    color: var(--accent-color);
}

/* ================= Why Us Section ================= */
.features-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--primary-light);
    color: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-text h4 {
    margin-bottom: 0.3rem;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.glass-banner {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.glass-banner strong {
    display: block;
    color: var(--primary-color);
}

.glass-banner span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ================= Process ================= */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 2rem;
    height: 1px;
    background: dashed 1px rgba(255, 255, 255, 0.2);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 1rem;
    line-height: 1;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ================= Contact Section ================= */
.contact-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    gap: 0;
}

.contact-info {
    padding: 4rem 3rem;
}

.contact-info h2 {
    color: #ffffff;
    font-size: 2.2rem;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.contact-item h5 {
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-form-container {
    padding: 4rem 3rem;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-main);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-status {
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
}

.form-status.success {
    color: #10b981;
}

.form-status.error {
    color: #ef4444;
}

/* ================= Footer ================= */
.footer {
    background: #040813;
    color: #ffffff;
    padding-top: 5rem;
}

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

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* ================= Industries Section ================= */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry-card {
    background: var(--bg-white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--primary-color);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.industry-card h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
    transition: var(--transition);
}

.industry-card:hover h4 {
    color: #ffffff;
}

/* ================= Global Footprint ================= */
.footprint {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.footprint-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footprint-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.footprint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 13, 30, 0.95) 0%, rgba(12, 22, 49, 0.8) 100%);
    z-index: 2;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.reach-list {
    margin-top: 2rem;
}

.reach-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.reach-list li i {
    font-size: 1.2rem;
}

.footprint-stats {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}


/* ================= Testimonials Section ================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-author h4 {
    margin-bottom: 0.1rem;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ================= Animations ================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* ================= Media Queries ================= */
@media (max-width: 991px) {

    .grid-2,
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .hero-visual {
        height: 450px;
        order: 2;
    }

    .hero-content {
        order: 1;
        margin-top: 2rem;
    }

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

    .process-step::after {
        display: none;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .experience-card,
    .glass-banner {
        position: relative;
        bottom: 0;
        right: 0;
        left: 0;
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        padding: 2rem;
    }

    .nav-links.active {
        left: 0;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-stats-mini {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .stat-mini strong {
        font-size: 1.5rem;
    }

    .hero-visual {
        height: 350px;
        margin-top: 2rem;
    }

    .main-img {
        width: 85%;
    }

    .sub-img {
        width: 55%;
        left: 0;
    }

    .stats-card {
        right: 0;
        transform: scale(0.85);
        transform-origin: right center;
    }

    .rating-card {
        right: 0;
        bottom: 10%;
        transform: scale(0.85);
        transform-origin: right bottom;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .footprint-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 1.5rem;
        gap: 1rem !important;
    }

    .stat-box {
        padding: 1rem;
    }

    .stat-box h3 {
        font-size: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info,
    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

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

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