/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --sky-aqua: #19C9F5;
    --platinum: #E7E8ED;
    --shadow-grey: #1A1920;
    --persian-blue: #2029BD;
    --white: #FFFFFF;
    
    /* Semantic Colors */
    --primary: #19C9F5;
    --primary-hover: #0bb8e3;
    --secondary: #2029BD;
    --secondary-hover: #1a22a0;
    --dark: #1A1920;
    --light: #E7E8ED;
    
    /* Legacy mappings for compatibility */
    --dark-green: #1A1920;
    --medium-green: #2029BD;
    --light-green: #19C9F5;
    --accent-green: #19C9F5;
    --accent-blue: #2029BD;
    --gold: #19C9F5;
    
    /* Neutrals */
    --off-white: #F5F6F8;
    --light-gray: #E7E8ED;
    --text-light: #F5F6F8;
    --text-dark: #1A1920;
    --text-secondary: #6B6C70;
    
    /* Shadows */
    --shadow-sm: rgba(26, 25, 32, 0.04);
    --shadow-md: rgba(26, 25, 32, 0.08);
    --shadow-lg: rgba(26, 25, 32, 0.12);
    --shadow: rgba(26, 25, 32, 0.15);
    --border-color: rgba(26, 25, 32, 0.08);
    
    /* Sizing */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.47059;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.022em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 max(20px, env(safe-area-inset-right));
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.1;
}

h1 { font-size: 56px; }
h2 { font-size: 48px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }

@media (max-width: 768px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
}

/* Top Bar */
.top-bar {
    background-color: transparent;
    color: var(--sky-aqua);
    padding: 12px 0;
    font-size: 12px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.top-bar.scrolled {
    background-color: rgba(26, 25, 32, 0.95);
    color: var(--white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

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

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    cursor: pointer;
    color: var(--sky-aqua);
    transition: color 0.3s ease;
}

.top-bar.scrolled .top-bar-right {
    color: var(--white);
}

/* Header */
.header {
    background-color: transparent;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1002;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.85;
}

/* Logo swap on scroll */
.logo-dark {
    display: block;
}

.logo-light {
    display: none;
}

.header.scrolled .logo-dark {
    display: none;
}

.header.scrolled .logo-light {
    display: block;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list > li {
    position: relative;
}

.nav-list a {
    color: var(--sky-aqua);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.92;
}

.nav-list a:hover {
    color: var(--persian-blue);
    opacity: 1;
    transform: translateY(-1px);
}

/* Scrolled state - header has dark background, so links should be white */
.header.scrolled .nav-list a {
    color: var(--white);
}

.header.scrolled .nav-list a:hover {
    color: var(--persian-blue);
}


.nav-list a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(26, 25, 32, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    list-style: none;
    padding: 8px;
    margin: 12px 0 0 0;
    min-width: 200px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-item-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 16px;
    display: block;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 13px;
    border-radius: 8px;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background-color: rgba(32, 41, 189, 0.15);
    transform: translateX(4px);
    color: var(--persian-blue);
}

.mobile-menu-toggle {
    display: none;
    color: var(--sky-aqua);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header.scrolled .mobile-menu-toggle {
    color: var(--white);
}

@media (max-width: 768px) {
    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(26, 25, 32, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    
    .nav.active .nav-list {
        flex-direction: column;
        padding: 24px;
        gap: 0;
    }
    
    .nav.active .nav-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 16px 0;
    }
    
    .nav.active .nav-list li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .nav.active .nav-list a {
        color: var(--white);
        font-size: 16px;
    }
    
    .nav.active .nav-list a:hover {
        color: var(--sky-aqua);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 12px 0 0 16px;
        background-color: rgba(25, 201, 245, 0.08);
        border: none;
        box-shadow: none;
        display: none;
        border-radius: 8px;
        padding: 8px;
    }
    
    .nav.active .dropdown-menu {
        display: block;
    }
    
    .nav.active .dropdown-menu a {
        color: var(--sky-aqua);
        font-size: 14px;
    }
    
    .nav.active .dropdown-menu a:hover {
        color: var(--white);
        background-color: rgba(25, 201, 245, 0.15);
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Hero Section */
.hero {
    background-color: var(--shadow-grey);
    padding: 120px 0 80px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/datacenter.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero::before {
    display: none;
}

.server-room-effect {
    display: none; /* Using real image now */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 25, 32, 0.7) 0%, rgba(32, 41, 189, 0.5) 50%, rgba(26, 25, 32, 0.8) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.hero-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-aqua), var(--persian-blue));
    margin-bottom: 30px;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.07143;
    letter-spacing: -0.005em;
}

.hero-description {
    font-size: 21px;
    color: var(--text-light);
    opacity: 0.92;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: 0.011em;
}

.hero-cta-text {
    font-size: 18px;
    color: var(--sky-aqua);
    font-weight: 500;
    margin-top: 20px;
    font-style: italic;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    z-index: 4;
}

.hero-btn {
    padding: 14px 32px;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    border: 1.5px solid transparent;
    display: inline-block;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.hero-btn-about {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.hero-btn-about:hover {
    background: var(--white);
    color: var(--shadow-grey);
    border-color: var(--white);
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-btn-consultation {
    background: var(--sky-aqua);
    color: var(--shadow-grey);
    border: 1.5px solid var(--sky-aqua);
}

.hero-btn-consultation:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(25, 201, 245, 0.3);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }
    
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 18px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .org-level {
        flex-direction: column;
        align-items: center;
    }
    
    .org-box {
        width: 100%;
        max-width: 300px;
    }
    
    .partners-benefits {
        padding: 30px 20px;
    }
    
    .service-detail-header {
        text-align: left;
    }
    
    .service-detail-header h2 {
        font-size: 28px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .offensive-services-grid {
        grid-template-columns: 1fr;
    }
    
    .offensive-security-section {
        padding: 30px 20px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .poc-features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
}


/* Industries Showcase */
.industries-showcase {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.industry-card {
    position: relative;
    height: 400px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.industry-card:hover {
    transform: scale(1.02);
}

.industry-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-image {
    transform: scale(1.1);
}

.industry-image.education {
    background: linear-gradient(135deg, #19C9F5, #2029BD);
}

.industry-image.mining {
    background: linear-gradient(135deg, #2029BD, #1A1920);
}

.industry-image.retail {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.industry-image.manufacturing {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.industry-image.finance {
    background: linear-gradient(135deg, #19C9F5, #1A1920);
}

.industry-image.healthcare {
    background: linear-gradient(135deg, #2029BD, #19C9F5);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
    padding: 30px 20px 20px;
    color: var(--white);
}

.industry-overlay h3 {
    font-size: 24px;
    margin-bottom: 8px;
    background-color: var(--white);
    color: var(--text-dark);
    padding: 8px 15px;
    display: inline-block;
    border-radius: 4px;
    font-weight: 600;
}

.industry-overlay p {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.industry-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.industry-link:hover {
    color: var(--gold);
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 10;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mission-vision-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-top: 15px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 20px auto 60px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 44px;
    border-radius: 18px;
    box-shadow: 0 4px 16px var(--shadow-light);
    transition: all 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px var(--shadow-medium);
}

.service-icon {
    font-size: 48px;
    color: var(--sky-aqua);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card > p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sky-aqua);
    font-weight: bold;
}

/* Data Focus Section */
.data-focus-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.data-focus-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.data-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.data-service-item {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--accent-green);
}

.data-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.data-icon {
    font-size: 48px;
    color: var(--sky-aqua);
    margin-bottom: 20px;
}

.data-service-item h4 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.data-service-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 10;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-item h4 {
    font-size: 20px;
    color: var(--persian-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.value-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Consultation Form Section */
.consultation-form-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.consultation-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.consultation-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.consultation-form-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 35px;
    text-align: center;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 17px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.011em;
    margin-bottom: 8px;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.08349;
    letter-spacing: -0.003em;
}

.philosophy-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
}


.consultation-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--sky-aqua);
    box-shadow: 0 0 0 4px rgba(25, 201, 245, 0.15);
}

.btn-request {
    background: var(--sky-aqua);
    color: var(--shadow-grey);
    padding: 12px 22px;
    border: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    margin-top: 16px;
    min-width: 140px;
}

.btn-request:hover {
    background: var(--primary-hover);
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.clients-title {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--shadow-grey);
    margin-bottom: 48px;
}

.clients-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 16px 0;
}

.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.clients-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.clients-carousel {
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.clients-track.track-left {
    animation: scrollLeft 30s linear infinite;
}

.clients-track.track-right {
    animation: scrollRight 30s linear infinite;
}

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

.client-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 24px;
    padding: 24px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-title {
        margin-bottom: 32px;
    }
    
    .clients-track {
        gap: 16px;
    }
    
    .client-logo {
        width: 140px;
        height: 90px;
        padding: 16px 20px;
        border-radius: 18px;
    }
    
    .clients-carousel-wrapper::before,
    .clients-carousel-wrapper::after {
        width: 80px;
    }
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--shadow-grey);
    margin-bottom: 48px;
}

.partners-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 16px 0;
}

.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--light-gray), transparent);
}

.partners-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--light-gray), transparent);
}

.partners-carousel {
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.partners-track.track-left {
    animation: scrollLeft 30s linear infinite;
}

.partners-track.track-right {
    animation: scrollRight 30s linear infinite;
}

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

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

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

.partner-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 24px;
    padding: 24px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

.partner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--sky-aqua);
    font-size: 40px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-placeholder {
    opacity: 1;
    color: var(--persian-blue);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-title {
        margin-bottom: 32px;
    }
    
    .partners-track {
        gap: 16px;
    }
    
    .partner-logo {
        width: 140px;
        height: 90px;
        padding: 16px 20px;
        border-radius: 18px;
    }
    
    .partner-placeholder {
        font-size: 28px;
    }
    
    .partners-carousel-wrapper::before,
    .partners-carousel-wrapper::after {
        width: 80px;
    }
}

/* Footer */
.footer {
    background-color: var(--shadow-grey);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-logo-img {
    height: 48px;
    width: auto;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background-color: var(--sky-aqua);
    color: var(--shadow-grey);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--sky-aqua);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--accent-green);
    min-width: 20px;
}

.footer-links {
    list-style: none;
    margin-bottom: 30px;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background-color: var(--dark-green);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-light);
    font-size: 14px;
}

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

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.scroll-to-top {
    width: 40px;
    height: 40px;
    background-color: var(--sky-aqua);
    border: none;
    border-radius: 50%;
    color: var(--shadow-grey);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    background-color: var(--persian-blue);
    color: var(--white);
}

.consent-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--shadow-grey);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 980px;
    font-size: 14px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 10px var(--shadow);
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.consent-button:hover {
    background-color: var(--persian-blue);
}

/* Page Header */
.page-header {
    background: linear-gradient(180deg, var(--shadow-grey), var(--persian-blue));
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* About Page Section */
.about-page-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

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

/* Organization Chart Section */
.org-chart-section {
    padding: 100px 0;
    background-color: var(--white);
}

.org-chart {
    max-width: 1200px;
    margin: 50px auto 0;
}

.org-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.org-box {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--accent-green);
}

.org-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.org-box h4 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.org-ceo {
    background: linear-gradient(135deg, var(--shadow-grey), var(--persian-blue));
    color: var(--white);
    padding: 35px 40px;
    min-width: 250px;
}

.org-ceo h4 {
    color: var(--white);
    font-size: 20px;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--accent-green);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.client-icon {
    font-size: 48px;
    color: var(--sky-aqua);
    margin-bottom: 20px;
}

.client-card h4 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.client-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background-color: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.partner-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--light-green);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.partner-icon {
    font-size: 48px;
    color: var(--persian-blue);
    margin-bottom: 20px;
}

.partner-card h4 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.partner-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.partners-benefits {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    margin-top: 60px;
}

.partners-benefits h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--sky-aqua);
    font-size: 24px;
    min-width: 30px;
}

.benefit-item p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* Services Page Styles */
.services-intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.services-intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.service-detail-section {
    padding: 100px 0;
    background-color: var(--white);
}

.service-detail-section.alt-bg {
    background-color: #f8f9fa;
}

.service-detail-header {
    margin-bottom: 48px;
    max-width: 800px;
}

.service-detail-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--shadow-grey);
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.service-detail-header p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--accent-green);
}

.service-detail-section.alt-bg .feature-card {
    background: var(--white);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h4 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-card h4 i {
    color: var(--accent-green);
    font-size: 24px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.service-description-full {
    max-width: 900px;
    margin: 0 auto 50px;
}

.service-description-full p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Offensive Security Section */
.offensive-security-section {
    margin-top: 60px;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 12px;
}

.offensive-security-section h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.subsection-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.offensive-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.offensive-service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.offensive-service-card h4 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offensive-service-card h4 i {
    color: var(--accent-green);
    font-size: 28px;
}

.offensive-service-card ul {
    list-style: none;
    padding: 0;
}

.offensive-service-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.offensive-service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.approach-section {
    margin-top: 40px;
}

.approach-section h4 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.approach-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.approach-item strong {
    color: var(--accent-green);
    display: block;
    margin-bottom: 8px;
}

/* PoC Features Grid */
.poc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.poc-feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poc-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.poc-feature-item i {
    font-size: 48px;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.poc-feature-item h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.poc-feature-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Services CTA Section */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--shadow-grey), var(--persian-blue));
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--sky-aqua);
    color: var(--shadow-grey);
    text-decoration: none;
    border-radius: 980px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.28, 0.11, 0.32, 1);
}

.cta-button:hover {
    background: var(--primary-hover);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .data-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta-text {
        font-size: 15px;
    }
    
    .consultation-form-section {
        padding: 60px 0;
    }
    
    .consultation-form-card {
        padding: 30px 25px;
    }
    
    .consultation-form-title {
        font-size: 28px;
    }
    
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 18px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .data-services-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .org-level {
        flex-direction: column;
        align-items: center;
    }
    
    .org-box {
        width: 100%;
        max-width: 300px;
    }
    
    .partners-benefits {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .consultation-card {
        padding: 25px;
    }
    
    .consultation-title {
        font-size: 24px;
    }
}

