/*
Theme Name: Eden Infosol
Theme URI: http://localhost/
Author: Abhishek Sheth
Description: Custom WordPress theme for Eden Infosol.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: eden-infosol
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --navy: #122c55;
    --navy-mid: #173663;
    --navy-light: #1c4176;
    --accent: #d39a06;
    --accent-light: #e0ad2c;
    --accent-glow: rgba(211, 154, 6, 0.28);
    --white: #ffffff;
    --gray-50: #f4f4f4;
    --gray-100: #efeeeb;
    --gray-200: #ddd9d3;
    --gray-300: #cfc8be;
    --gray-400: #9aa3b2;
    --gray-600: #6f7c8f;
    --gray-800: #22314b;
    --text: #1e2f4d;
    --text-muted: #7d889c;
    --card-bg: #e9e6e1;
    --input-bg: #ffffff;
    --input-border: #cfd5df;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
    list-style: none;
}

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

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION UTILITIES ===== */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--gray-50);
}

.section-white {
    background: var(--white);
}

.section-label {
    font-size: 1.0rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 60px;
}

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--navy);
    border-color: var(--accent);
    border-radius: 10px;
}

.btn-primary:hover {
    background: #b98405;
    border-color: #b98405;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

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

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

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: var(--navy);
}

.navbar.scrolled {
    background: rgba(18, 44, 85, 0.97);
    padding: 12px 0;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--white);
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform var(--transition);
}

.nav-cta .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
}

/* Dropdown */
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover a i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    min-width: 420px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 100;
}

.dropdown-menu a {
    color: var(--text) !important;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-menu a i {
    color: var(--accent);
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--gray-50) !important;
    color: var(--accent) !important;
}

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

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

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

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

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.06) 0%, transparent 50%), radial-gradient(circle at 60% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

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

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

/* Hero Video */
.hero-video-section {
    position: relative;
    overflow: hidden;
    background: none;
}

.hero-video-section::before,
.hero-video-section::after {
    display: none;
}

.hero-video-section .hero-content {
    z-index: 2;
    position: relative;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 22, 40, 0.72), rgba(10, 22, 40, 0.48)), linear-gradient(to top, rgba(10, 22, 40, 0.32), rgba(10, 22, 40, 0.22));
}

/* ===== ABOUT GRID (Homepage) ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    text-align: justify;
}

.about-text .section-label {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-subtitle {
    text-align: justify;
    max-width: 100%;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    min-height: unset;
    object-fit: contain;
    border-radius: 20px;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius);
    background: var(--gray-50);
    border-top: 3px solid var(--accent);
    transition: all var(--transition);
}

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

.stat-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 80px 0;
    background: var(--gray-50);
    overflow: hidden;
}

.trust-track-wrapper {
    overflow: visible;
    margin-top: 40px;
    padding: 16px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trust-track {
    display: flex;
    gap: 28px;
    animation: scroll 35s linear infinite;
    width: max-content;
    padding: 8px 0;
}

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

.trust-item {
    flex-shrink: 0;
    white-space: nowrap;
}

.trust-item-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    min-width: 200px;
    height: 86px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
    white-space: nowrap;
}

.trust-item-logo img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: all 0.3s ease;
    pointer-events: none;
}

.trust-item-logo:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(211, 154, 6, 0.25);
    background: var(--white);
}

.trust-item-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Logo Size Overrides */
.trust-item-logo img[alt="Kaspersky"] {
    height: 50px;
    max-width: 180px;
}

.trust-item-logo img[alt="Bitdefender"] {
    height: 70px;
    max-width: 180px;
}

.trust-item-logo img[alt="SonicWall"] {
    height: 70px;
    max-width: 180px;
}

.trust-item-logo img[alt="Fortinet"] {
    height: 70px;
    max-width: 180px;
}

.trust-item-logo img[alt="Check Point"] {
    height: 75px;
    max-width: 180px;
}

.trust-item-logo img[alt="Microsoft"] {
    height: 50px;
    max-width: 180px;
}

.trust-item-logo img[alt="Cisco"] {
    height: 75px;
    max-width: 170px;
}

.trust-item-logo img[alt="Dell"] {
    height: 54px;
    max-width: 160px;
}

.trust-item-logo img[alt="AWS"] {
    height: 54px;
    max-width: 160px;
}

/* ===== PILLARS ===== */
.pillars {
    padding: 100px 0;
    background: var(--white);
}

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

.pillar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pillar-icon i {
    font-size: 1.3rem;
    color: var(--accent-light);
}

.pillar-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.pillar-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.pillar-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.pillar-link:hover {
    gap: 10px;
    color: #1d4ed8;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 24px;
}

.testimonial-card-inner {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card-inner::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 36px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text);
    font-size: 1rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

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

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 32px;
}

.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 50px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-item i {
    font-size: 1.2rem;
    color: var(--accent-light);
}

.footer-contact-item span {
    font-size: 0.9rem;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== PAGE HEADER ===== */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 140px 24px 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(96, 165, 250, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

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

.page-header .section-label {
    color: var(--accent-light);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== PRODUCTS PAGE ===== */
.service-category {
    padding: 80px 0;
    border-bottom: 1px solid var(--gray-200);
}

.service-category:nth-child(even) {
    background: var(--gray-50);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.category-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 1.2rem;
    color: var(--accent-light);
}

.category-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
}

.category-tagline {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-left: 72px;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 28px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.service-name-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-name-text i {
    color: var(--accent);
    font-size: 0.75rem;
}

.service-toggle-icon {
    font-size: 0.85rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.service-card.expanded .service-toggle-icon {
    transform: rotate(90deg);
}

.service-card.expanded {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    padding-top: 0;
}

.service-card.expanded .service-details {
    max-height: 350px;
    opacity: 1;
    padding-top: 16px;
}

.service-details p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--gray-200);
    padding-top: 16px;
    margin: 0;
}

/* ===== ABOUT PAGE - STORY SECTION ===== */
.story-section {
    padding: 100px 0;
}

.story-section .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center !important;
}

.story-section .about-text {
    text-align: justify;
}

.story-section .about-text .section-label {
    text-align: left;
}

.story-section .about-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.story-section .about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-section .about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    height: auto;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.story-section .about-image img {
    width: 100%;
    height: auto;
    min-height: unset;
    object-fit: contain;
    border-radius: 20px;
    display: block;
}

.story-section .about-image:hover img {
    transform: scale(1.03);
    transition: transform 0.5s ease;
}

/* ===== FOUNDERS - BLUR REVEAL CARDS ===== */
.founders-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.founders-reveal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 50px;
}

.founder-reveal-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 560px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.founder-reveal-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: filter 0.5s ease, transform 0.5s ease;
}

.founder-reveal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.3) 40%, transparent 70%);
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.founder-reveal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.founder-reveal-info h3 {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.founder-reveal-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
}

.founder-reveal-details {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
    opacity: 0;
    background: rgba(10, 22, 40, 0.88);
    transition: opacity 0.5s ease;
    z-index: 3;
}

.founder-reveal-details-inner {
    text-align: center;
    max-width: 100%;
}

.founder-reveal-details h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.founder-reveal-title {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.founder-reveal-details p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.founder-reveal-email {
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.founder-reveal-email:hover {
    color: var(--accent-light);
}

.founder-reveal-card:hover .founder-reveal-photo {
    filter: blur(8px) brightness(0.4);
    transform: scale(1.05);
}

.founder-reveal-card:hover .founder-reveal-overlay {
    opacity: 0;
}

.founder-reveal-card:hover .founder-reveal-info {
    opacity: 0;
}

.founder-reveal-card:hover .founder-reveal-details {
    opacity: 1;
}

/* ===== VISION & MISSION ===== */
.vm-section {
    padding: 100px 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.vm-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 40px 36px;
    border-left: 4px solid var(--accent);
}

.vm-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.vm-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    font-style: italic;
}

.vm-card p:last-child {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== WHY CLIENTS TRUST US ===== */
.trust-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.trust-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.trust-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.trust-card-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.trust-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 140px 0 90px;
    background: var(--gray-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 48px;
    align-items: start;
}

.contact-left h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.1;
}

.contact-left .intro {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 620px;
}

.contact-info-list {
    display: grid;
    gap: 24px;
    margin-bottom: 36px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-info-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.4rem;
}

.contact-info-card small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.82rem;
    color: var(--gray-600);
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-card p {
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.5;
}

.emergency-box {
    margin-top: 24px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.emergency-box h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.emergency-box p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.emergency-box .hotline {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
}

.contact-form-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 38px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-form-card .form-copy {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-group.full {
    grid-column: 1 / -1;
}

.contact-form-group label {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    border: 2px solid var(--input-border);
    background: var(--input-bg);
    color: var(--navy);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: var(--font);
    transition: all var(--transition);
    outline: none;
}

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

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(211, 154, 6, 0.12);
}

.contact-submit {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.contact-submit button {
    width: 100%;
    justify-content: center;
    font-size: 1.15rem;
    padding: 18px 24px;
    font-weight: 800;
    border-radius: 10px;
}

.contact-form-notice {
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 14px 16px;
    font-weight: 600;
    line-height: 1.6;
}

.contact-form-notice.success {
    background: #e8f7eb;
    color: #1f6d2d;
    border: 1px solid #b7e2bf;
}

.contact-form-notice.error {
    background: #fdecec;
    color: #a12d2d;
    border: 1px solid #efc0c0;
}

/* ===== SCROLL ANIMATIONS ===== */
.anim {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim.visible {
    opacity: 1;
    transform: none !important;
}

.anim-up {
    transform: translateY(40px);
}

.anim-left {
    transform: translateX(-50px);
}

.anim-right {
    transform: translateX(50px);
}

.anim-scale {
    transform: scale(0.9);
}

.stagger-children>*:nth-child(1) {
    transition-delay: 0s;
}

.stagger-children>*:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children>*:nth-child(3) {
    transition-delay: 0.2s;
}

.stagger-children>*:nth-child(4) {
    transition-delay: 0.3s;
}

.stagger-children>*:nth-child(5) {
    transition-delay: 0.4s;
}

.stagger-children>*:nth-child(6) {
    transition-delay: 0.5s;
}

.stagger-children>*:nth-child(7) {
    transition-delay: 0.6s;
}

.stagger-children>*:nth-child(8) {
    transition-delay: 0.7s;
}

.hero-anim {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes statPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.stat-card.visible .stat-number {
    animation: statPulse 0.5s ease 0.3s;
}

.pillar-card.visible:hover {
    transform: translateY(-8px) !important;
}

@media (prefers-reduced-motion: reduce) {

    .anim,
    .fade-in,
    .hero-anim {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 4px;
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

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

    .nav-links a {
        padding: 14px 16px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        grid-template-columns: 1fr;
        min-width: auto;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        display: none;
        padding: 8px;
        margin-top: 4px;
        border-radius: var(--radius-sm);
    }

    .dropdown.active .dropdown-menu {
        display: grid;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.85rem;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        color: var(--accent-light) !important;
    }

    .nav-cta {
        margin-top: 16px;
    }

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

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

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

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

    .about-image img {
        min-height: unset;
    }

    .story-section .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

    .contact-left h1 {
        font-size: 2.4rem;
    }

    .founders-reveal-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .hero {
        min-height: 90vh;
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

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

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

    .category-tagline {
        padding-left: 0;
    }

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

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

    .page-header h1 {
        font-size: 2.2rem;
    }

    .footer-contact-strip {
        flex-direction: column;
        gap: 20px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .founder-reveal-card {
        height: 480px;
    }

    .founder-reveal-details {
        padding: 24px;
    }

    .founder-reveal-details p {
        font-size: 0.88rem;
    }
}

@media (max-width: 640px) {
    .contact-page {
        padding: 120px 0 70px;
    }

    .contact-form-card {
        padding: 24px;
    }

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

    .contact-left h1 {
        font-size: 2rem;
    }

    .emergency-box .hotline {
        font-size: 1.55rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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

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

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

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

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

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

    .founder-reveal-card {
        height: 420px;
    }

    .founder-reveal-details {
        padding: 20px;
    }

    .founder-reveal-details p {
        font-size: 0.82rem;
        line-height: 1.7;
    }
}

/* Fix testimonial dots getting cut off */
.testimonials {
    padding-bottom: 120px;
}

.testimonial-slider {
    overflow: visible;
}

.testimonial-dots {
    margin-top: 40px;
    padding-bottom: 10px;
}

/* ===== NAV BRAND WITH TAGLINE ===== */
.nav-logo-wrap {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.nav-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 2px;
    text-transform: uppercase;
}

/* ===== FOOTER SOCIAL ICONS ===== */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ===== PRODUCTS - SUB-HEADER (Audits inside Cybersecurity) ===== */
.services-sub-header {
    margin-top: 50px;
    margin-bottom: 30px;
}

.sub-header-divider {
    width: 100%;
    height: 1px;
    background: var(--gray-200);
    margin-bottom: 30px;
}

.sub-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sub-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sub-header-icon i {
    color: var(--white);
    font-size: 1rem;
}

.sub-header-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.sub-header-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== EDEN BYTES - CASE STUDIES ===== */
.case-studies-section {
    padding: 80px 0;
}

.case-study-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 48px 44px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    overflow: hidden;
}

.case-study-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.case-study-number {
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 6rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.case-study-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 28px;
    line-height: 1.3;
}

.case-study-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-study-label i {
    font-size: 0.85rem;
}

.case-study-section {
    margin-bottom: 28px;
}

.case-study-section p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.case-study-results {
    margin-top: 28px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.result-stat {
    text-align: center;
    padding: 24px 16px;
    background: var(--gray-50);
    border-radius: 14px;
    border-top: 3px solid var(--accent);
}

.result-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 4px;
}

.result-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

    .case-study-card {
        padding: 28px 24px;
    }

    .case-study-number {
        font-size: 4rem;
    }

    .case-study-title {
        font-size: 1.25rem;
    }
}

/* ===== NAVBAR SPACING FIX ===== */
.nav-logo-wrap {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    flex-shrink: 0;
    max-width: 200px;
}

.nav-logo {
    font-size: 1.3rem;
    white-space: nowrap;
}

.nav-tagline {
    font-size: 0.8rem;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
    font-weight: 400;
    margin-top: 8px;
    text-transform: uppercase;
    line-height: 1.3;
    white-space: nowrap;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.nav-links a {
    font-size: 0.82rem;
    padding: 8px 12px;
    white-space: nowrap;
}

.nav-cta .btn {
    padding: 10px 18px;
    font-size: 0.82rem;
    white-space: nowrap;
}

/* ===== SINGLE COLUMN DROPDOWN ===== */
.dropdown-menu {
    grid-template-columns: 1fr !important;
    min-width: 300px !important;
}

/* ===== 5-CARD PILLARS GRID ===== */
.pillars-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.pillar-card h3 {
    font-size: 1.05rem;
}

.pillar-card p {
    font-size: 0.85rem;
}

.pillar-card {
    padding: 28px 22px;
}

.pillar-link {
    font-size: 0.82rem;
}

@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* ===== MARQUEE CENTER HIGHLIGHT ===== */
.trust-item-logo {
    transition: all 0.4s ease;
}

.trust-item-logo.center-highlight {
    border-color: var(--accent) !important;
    box-shadow: 0 4px 24px rgba(211, 154, 6, 0.3) !important;
    transform: scale(1.05);
}

.trust-item-logo.center-highlight img {
    filter: grayscale(0%) opacity(1) !important;
}



/* ===== MARQUEE CENTER HIGHLIGHT ===== */
.trust-item-logo.center-highlight {
    border-color: var(--accent) !important;
    box-shadow: 0 4px 24px rgba(211, 154, 6, 0.3) !important;
    transform: scale(1.08);
}

.trust-item-logo.center-highlight img {
    filter: grayscale(0%) opacity(1) !important;
}



/* ===== MARQUEE CENTER AUTO-HIGHLIGHT ===== */
.trust-item-logo {
    border: 2px solid var(--gray-200);
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.trust-item-logo img {
    transition: filter 0.5s ease;
}

.trust-item-logo.center-active {
    border-color: var(--accent) !important;
    box-shadow: 0 0 30px rgba(211, 154, 6, 0.35) !important;
}

.trust-item-logo.center-active img {
    filter: grayscale(0%) opacity(1) !important;
}

/* ===== EDEN BYTES - COMING SOON ===== */
.coming-soon-section {
    padding: 100px 0;
    background: var(--white);
}

.coming-soon-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--gray-50);
    border-radius: 24px;
    border: 1px solid var(--gray-200);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: rocketFloat 3s ease-in-out infinite;
}

.coming-soon-icon i {
    font-size: 2rem;
    color: var(--accent-light);
}

@keyframes rocketFloat {

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

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

.coming-soon-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.coming-soon-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.coming-soon-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cs-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.cs-feature i {
    color: var(--accent);
    font-size: 1rem;
}

.coming-soon-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

.coming-soon-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .coming-soon-card {
        padding: 40px 24px;
    }

    .coming-soon-title {
        font-size: 1.5rem;
    }

    .coming-soon-features {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
}

/* ===== NAVBAR LOGO WITH IMAGE ===== */
/* ===== LOGO EXTREME LEFT ===== */
.nav-logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    max-width: none;
    flex-direction: row;
    gap: 50px;
}

.nav-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

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

/* ===== TESTIMONIALS - ARROWS + HOVER PAUSE ===== */
.testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: visible;
}

.testimonial-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius);
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 10px;
    box-sizing: border-box;
}

.testimonial-card-inner {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card-inner:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.testimonial-card-inner::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 28px;
    font-size: 4.5rem;
    color: var(--accent);
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Navigation Buttons */
.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--navy);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: scale(1.08);
}

/* Remove old dots */
.testimonial-dots {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .testimonial-card-inner {
        padding: 28px 24px;
    }

    .testimonial-slider {
        gap: 8px;
    }
}

/* ===== NAVBAR LOGO SEPARATED ===== */
.nav-logo-img-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nav-logo-img-link .nav-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-logo-wrap {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    flex-shrink: 0;
    max-width: none;
}

.navbar .container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

/* Remove old nav-logo-row if still present */
.nav-logo-row {
    display: contents;
}

@media (max-width: 768px) {
    .nav-logo-img-link .nav-logo-img {
        height: 32px;
    }
}

/* ===== NAVBAR BRAND FIX ===== */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-brand-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand .nav-logo {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
    white-space: nowrap;
    line-height: 1.2;
}

.nav-brand .nav-logo span {
    color: var(--accent);
}

.nav-brand .nav-tagline {
    font-size: 0.60rem;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.3;
}

.nav-links {
    margin-left: auto;
}

@media (max-width: 768px) {
    .nav-brand-logo {
        height: 32px;
    }

    .nav-brand .nav-logo {
        font-size: 1.1rem;
    }

    .nav-brand .nav-tagline {
        font-size: 0.42rem;
    }
}

/* ===== PUSH LOGO TO EXTREME LEFT ===== */
.nav-brand {
    gap: 0;
}

.nav-brand-logo {
    margin-right: 24px;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

/* ===== BIGGER NAV LOGO ===== */
.nav-brand-logo {
    height: 54px;
    margin-right: 28px;
    padding-right: 28px;
}

@media (max-width: 768px) {
    .nav-brand-logo {
        height: 38px;
        margin-right: 16px;
        padding-right: 16px;
    }
}

/* ===== FOOTER BOTTOM BAR REDESIGN ===== */
.footer-contact-strip {
    display: none !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-contact {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-bottom-contact a,
.footer-bottom-contact span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-bottom-contact a:hover {
    color: var(--accent-light);
}

.footer-bottom-contact i {
    font-size: 0.78rem;
    color: var(--accent);
}

@media (max-width: 768px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-contact {
        justify-content: center;
        gap: 16px;
    }
}



/* ===== NAVBAR FULL WIDTH ===== */
.navbar .container {
    max-width: 100%;
    padding: 0 32px;
}

/* ===== BIGGER PILLAR CARDS ===== */
.pillars .container {
    max-width: 1400px;
}

.pillars-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.pillar-card {
    padding: 36px 28px;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 28px;
}

.pillar-icon i {
    font-size: 1.5rem;
}

.pillar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.pillar-tagline {
    font-size: 1rem;
    margin-bottom: 14px;
}

.pillar-card p {
    font-size: 0.92rem;
    line-height: 1.8;
}

.pillar-link {
    font-size: 0.9rem;
}

@media (max-width: 1400px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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


/* ===== NAVBAR SOCIAL ICONS ===== */
.nav-social {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
}

.nav-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-social a:hover {
    background: var(--accent);
    color: var(--navy);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .nav-social {
        flex-direction: row;
        justify-content: center;
        margin-left: 0;
        margin-top: 16px;
        gap: 10px;
    }

    .nav-social a {
        width: 36px;
        height: 36px;
    }
}

/* ===== FOOTER CONTACT DETAILS ===== */
.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    padding-left: 0;
}

.footer-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-detail-item i {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 5px;
    width: 18px;
    flex-shrink: 0;
    text-align: center;
}

.footer-detail-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-detail-link:hover {
    color: var(--accent-light);
}

.footer-detail-link:hover i {
    color: var(--accent-light);
}

/* ===== FOOTER TEXT JUSTIFY ===== */
.footer-about p {
    text-align: justify;
}


/* ===== VISION & MISSION JUSTIFY ===== */
.vm-card p:last-child {
    text-align: justify;
}

.vm-tagline {
    text-align: justify;
}

/* ===== CTA + FOOTER SEAMLESS ===== */
.cta-section {
    background: var(--navy);
    padding-bottom: 0;
    padding-top: 50px;
}

.cta-section::before {
    display: none;
}

.footer {
    padding-top: 60px;
}

/* ===== SERVICE CARD LEFT ICON — CHANGE TO DOT ===== */
.service-name-text>i.fas::before {
    content: "\f111";
    /* fa-circle instead of fa-chevron-right */
}

.service-name-text>i {
    font-size: 0.45rem;
}