/*
Theme Name: Iktarainfotech
Theme URI: https://iktarainfotech.com
Author: Mehedi H Sajal
Description: Custom developer theme for Iktara Infotech
Version: 1.0.0
Text Domain: iktara-developer-theme
*/

/* ===== WP Admin Bar Fix ===== */
body.admin-bar .main-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .main-header { top: 46px; } }

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

:root {
    --primary: #1E3A5F;
    --primary-light: #4A6FA5;
    --primary-dark: #0F172A;
    --primary-mid: #152742;
    --primary-mid2: #1A3050;
    --accent: #BF1A2E;
    --accent-warm: #BF1A2E;
    --dark: #0F172A;
    --navy: #0F172A;
    --purple-deep: #0F172A;
    --mid: #7B93B3;
    --light: #B0C4DE;
    --dark-rgb: 15, 23, 42;
    --primary-rgb: 30, 58, 95;
    --primary-light-rgb: 74, 111, 165;
    --gradient-1: linear-gradient(135deg, var(--dark) 0%, var(--primary-mid) 40%, var(--primary) 70%, var(--dark) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(var(--dark-rgb),0.90) 0%, rgba(var(--primary-rgb),0.72) 45%, rgba(191,26,46,0.15) 100%);
    --font: 'Ubuntu', sans-serif;
    --transition: cubic-bezier(0.77, 0, 0.175, 1);
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: var(--font);
    color: #fff;
    background: var(--dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--primary-mid);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(var(--primary-rgb),0.25);
    position: relative;
    z-index: 1001;
}

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

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

.top-bar-left a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
    white-space: nowrap;
}

.top-bar-left a:hover {
    color: var(--accent);
}

.top-bar-left i {
    margin-right: 5px;
    color: var(--primary);
}

.top-bar-left .separator {
    color: rgba(255,255,255,0.3);
    margin: 0 4px;
}

.top-phone {
    margin-left: 10px;
    padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.search-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 4px;
}

.search-btn:hover {
    color: var(--accent);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    font-size: 13px;
    transition: color 0.3s;
}

.language-selector:hover {
    color: var(--accent);
}

.language-selector i {
    font-size: 10px;
}

/* ========================================
   SEARCH OVERLAY
   ======================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--dark-rgb),0.96);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 100%;
    max-width: 700px;
    padding: 20px;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-form {
    display: flex;
    border-bottom: 2px solid var(--primary);
}

.search-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 24px;
    font-family: var(--font);
    padding: 15px 0;
}

.search-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.search-form button {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 22px;
    cursor: pointer;
    padding: 0 10px;
}

/* ========================================
   MAIN HEADER
   ======================================== */
.main-header {
    position: absolute;
    top: 37px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.main-header.scrolled {
    position: fixed;
    top: 0;
    background: var(--primary-mid2);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

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

.logo img {
    height: 55px;
    transition: height 0.3s;
}

.main-header.scrolled .logo img {
    height: 45px;
}

.main-nav ul {
    display: flex;
    gap: 5px;
}

.main-nav a {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    border: none;
    border-radius: 0;
    background: transparent;
    position: relative;
    transition: color 0.3s;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s var(--transition);
    border-radius: 2px;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background: transparent;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.main-nav a.active {
    color: #fff;
    font-weight: 500;
}

.main-nav a.active::after {
    background: var(--accent);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary-mid) 35%, var(--primary-mid2) 60%, var(--dark) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-row {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 40px;
}

/* --- Animated Grid Background --- */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(191,26,46,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(191,26,46,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* --- Scanning Line --- */
.hero-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    animation: scanLine 6s ease-in-out infinite;
}

@keyframes scanLine {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% { top: 100%; opacity: 0; }
}

/* --- Floating Tech Icons --- */
.hero-float-icons {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-float-icons i {
    position: absolute;
    left: var(--fx);
    top: var(--fy);
    font-size: var(--fs);
    color: rgba(191,26,46,0.12);
    animation: techIconFloat 7s ease-in-out infinite;
    animation-delay: var(--fd);
}

@keyframes techIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-15px) rotate(5deg); opacity: 0.2; }
    50% { transform: translateY(-8px) rotate(-3deg); opacity: 0.15; }
    75% { transform: translateY(-20px) rotate(8deg); opacity: 0.25; }
}

/* --- Orbiting Rings (behind hero image) --- */
.hero-orbits {
    position: absolute;
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    z-index: 1;
    pointer-events: none;
}

.hero-orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(191,26,46,0.08);
    border-radius: 50%;
}

.ring-1 {
    animation: orbitSpin1 25s linear infinite;
}

.ring-2 {
    inset: 30px;
    border-style: dotted;
    border-color: rgba(var(--primary-rgb),0.1);
    animation: orbitSpin1 18s linear infinite reverse;
}

.hero-orbit-ring::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    box-shadow: 0 0 12px rgba(191,26,46,0.4);
}

.ring-2::after {
    background: var(--mid);
    top: auto;
    bottom: -4px;
    box-shadow: 0 0 10px rgba(146,155,160,0.3);
}

@keyframes orbitSpin1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Animated Background Shapes --- */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -10%;
    right: -5%;
    animation: shapeFloat1 12s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    bottom: -5%;
    left: -5%;
    animation: shapeFloat2 10s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-warm);
    top: 40%;
    left: 30%;
    animation: shapeFloat3 14s ease-in-out infinite;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    bottom: 10%;
    right: 25%;
    animation: shapeFloat1 16s ease-in-out infinite reverse;
}

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

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 40px) scale(1.1); }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: rgba(var(--primary-light-rgb),0.5);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 12px rgba(var(--primary-rgb),0.4);
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-25px) scale(1.3); opacity: 1; }
}

/* --- Hero Content (Left) --- */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: left;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--accent-warm);
    margin-bottom: 18px;
    text-transform: uppercase;
    animation: heroFadeRight 0.8s var(--transition) 0.2s both;
}

.hero-title {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #fff;
    animation: heroFadeRight 0.8s var(--transition) 0.4s both;
}

.hero-title-accent {
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 480px;
    animation: heroFadeRight 0.8s var(--transition) 0.6s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 45px;
    animation: heroFadeRight 0.8s var(--transition) 0.8s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--dark);
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    transition: all 0.4s;
    box-shadow: 0 6px 25px rgba(var(--primary-rgb),0.35);
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}

.btn-hero:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(var(--primary-rgb),0.5);
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero i {
    transition: transform 0.3s;
}

.btn-hero:hover i {
    transform: translateX(4px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: all 0.4s;
    cursor: pointer;
}

.btn-hero-outline:hover {
    color: #fff;
    border-color: var(--primary-light);
    background: rgba(var(--primary-rgb),0.1);
    transform: translateY(-3px);
}

.btn-hero-outline i {
    font-size: 12px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    align-items: center;
    animation: heroFadeRight 0.8s var(--transition) 1s both;
}

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

.hero-stat-num {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: inline;
}

.hero-stat-plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* --- Hero Image Area (Right) --- */
.hero-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    animation: heroFadeLeft 1s var(--transition) 0.5s both;
}

/* Hero image - blends into dark bg */
.hero-png {
    width: 100%;
    max-width: 520px;
    height: auto;
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, #000 40%, transparent 72%);
    mask-image: radial-gradient(ellipse 70% 70% at center, #000 40%, transparent 72%);
    will-change: transform;
    animation: heroPngFloat 5s ease-in-out infinite;
}

.hero-png:hover {
    transform: scale(1.03);
}

@keyframes heroPngFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Glow behind image */
.hero-img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(var(--primary-rgb),0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(var(--dark-rgb), 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(var(--primary-rgb),0.2);
    border-radius: 14px;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    will-change: transform;
}

.hero-float-card strong {
    display: block;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

.hero-float-card span {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.float-card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 10px;
    color: #fff;
    font-size: 17px;
}

.float-card-icon.fc-cyan {
    background: #BF1A2E;
}

.float-card-icon.fc-green {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.hero-float-1 {
    top: 15%;
    right: -10px;
    animation: floatCard1 5s ease-in-out infinite;
}

.hero-float-2 {
    bottom: 12%;
    left: -20px;
    animation: floatCard2 6s ease-in-out infinite;
}

.hero-float-3 {
    bottom: 40%;
    right: -30px;
    animation: floatCard3 7s ease-in-out infinite;
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(-1.5deg); }
}

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

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

/* (Orbit ring removed - using clean PNG layout) */

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeUp 1s var(--transition) 1.2s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* Hero Animations */
@keyframes heroFadeRight {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes heroFadeLeft {
    0% { opacity: 0; transform: translateX(60px) scale(0.95); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .top-bar-left .separator,
    .top-bar-left a:nth-child(2) {
        display: none;
    }

}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-header {
        top: 0;
        padding: 12px 0;
        background: rgba(var(--dark-rgb), 0.95);
        backdrop-filter: blur(10px);
    }

    .logo img {
        height: 40px;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(var(--dark-rgb), 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 30px 30px;
        transition: right 0.4s var(--transition);
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
        z-index: 1001;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 5px;
    }

    .main-nav a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 6px;
    }

    .hero-row {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-area {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-float-1 {
        right: -5px;
        top: 10%;
    }

    .hero-float-2 {
        left: -5px;
    }

    .hero-png {
        max-width: 350px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-orbits {
        display: none;
    }

    .hero-float-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-stats {
        gap: 18px;
    }

    .hero-stat-num {
        font-size: 24px;
    }

    .hero-float-card {
        padding: 10px 14px;
    }

    .hero-float-card strong {
        font-size: 12px;
    }

    .float-card-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }

    .hero-png {
        max-width: 280px;
    }
}

/* ========================================
   ABOUT / OUR BUSINESS SECTION
   ======================================== */
.about-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-rgb),0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- Image Wrapper --- */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-main {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.about-image-accent {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.15;
}

.about-image-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 3;
    border: 5px solid #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: 40px;
    left: -15px;
    background: var(--dark);
    color: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    z-index: 4;
    text-align: center;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb),0.35);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.9;
    margin-top: 4px;
    display: block;
}

.about-dots {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(var(--primary-rgb),0.25) 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 1;
}

/* --- Content --- */
.about-content {
    padding-left: 20px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-divider {
    display: flex;
    gap: 6px;
    margin-bottom: 25px;
}

.section-divider span:nth-child(1) {
    width: 40px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-divider span:nth-child(2) {
    width: 20px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-divider span:nth-child(3) {
    width: 10px;
    height: 4px;
    background: var(--accent-warm);
    border-radius: 2px;
}

.about-lead {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-lead strong {
    color: var(--primary);
}

.about-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 10px;
}

/* Highlight Items */
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 10px;
    background: #f4f5f6;
    border: 1px solid rgba(var(--primary-rgb),0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.highlight-item:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb),0.1);
    border-color: rgba(var(--primary-rgb),0.15);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
}

.highlight-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.highlight-item p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

/* About CTA Button */
.btn-about {
    display: inline-flex;
    align-items: center;
    padding: 13px 32px;
    background: var(--dark);
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb),0.3);
}

.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb),0.4);
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.btn-about i {
    transition: transform 0.3s;
}

.btn-about:hover i {
    transform: translateX(4px);
}

/* --- Scroll Animations (GPU) --- */
[data-scroll] {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-scroll="fade-right"] {
    transform: translate3d(-30px, 0, 0);
}

[data-scroll="fade-left"] {
    transform: translate3d(30px, 0, 0);
}

[data-scroll="fade-up"] {
    transform: translate3d(0, 25px, 0);
}

[data-scroll].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* --- About Responsive --- */
@media (max-width: 991px) {
    .about-section {
        padding: 70px 0;
    }

    .about-image-float {
        width: 160px;
        height: 130px;
        right: -10px;
        bottom: -10px;
    }

    .about-experience-badge {
        left: 0;
        bottom: 20px;
        padding: 15px 18px;
    }

    .badge-number {
        font-size: 28px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

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

@media (max-width: 575px) {
    .about-image-main img {
        height: 280px;
    }

    .about-image-float {
        width: 130px;
        height: 100px;
    }

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

/* ========================================
   VISION / MISSION / VALUES SECTION
   ======================================== */
.vmv-section {
    background: linear-gradient(170deg, var(--dark) 0%, var(--primary-mid) 40%, var(--primary-mid2) 100%);
    position: relative;
    overflow: hidden;
}

.vmv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(var(--primary-rgb),0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(191,26,46,0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* --- CTA Strip --- */
.vmv-cta-strip {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.vmv-cta-text {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin: 0;
}

.btn-consultation {
    display: inline-block;
    padding: 14px 34px;
    background: transparent;
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--primary);
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.4s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--dark);
    transition: width 0.4s var(--transition);
    z-index: -1;
}

.btn-consultation:hover {
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb),0.35);
    transform: translateY(-2px);
}

.btn-consultation:hover::before {
    width: 100%;
}

/* --- Divider --- */
.vmv-divider-line {
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary), transparent);
    border-radius: 2px;
    opacity: 0.4;
}

/* --- VMV Content Area --- */
.vmv-content {
    padding: 0 0 80px;
    position: relative;
    z-index: 1;
}

/* --- Vision/Mission Cards --- */
.vmv-card {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(var(--primary-rgb),0.12);
    border-radius: 14px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.vmv-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(var(--primary-rgb),0.25);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.vmv-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb),0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.vmv-card:hover .vmv-card-glow {
    opacity: 1;
}

.vmv-card-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 12px;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb),0.25);
}

.vmv-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.vmv-card-body p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin: 0;
}

/* --- Values Title --- */
.vmv-values-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    padding-left: 15px;
    border-left: 3px solid var(--primary);
}

/* --- Value Cards (2x2 Grid) --- */
.value-card {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(var(--primary-rgb),0.1);
    border-radius: 14px;
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s var(--transition);
    transform-origin: left;
}

.value-card:hover {
    background: rgba(var(--primary-rgb),0.08);
    border-color: rgba(var(--primary-rgb),0.2);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

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

.value-icon-wrap {
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: rgba(var(--primary-rgb),0.1);
    border: 1px solid rgba(var(--primary-rgb),0.2);
    border-radius: 16px;
    font-size: 26px;
    color: var(--primary-light);
    transition: all 0.4s;
}

.value-card:hover .value-icon {
    background: var(--accent);
    color: #fff;
    border-color: transparent;
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb),0.35);
}

.value-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.value-card > p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin: 0;
}

/* --- VMV Responsive --- */
@media (max-width: 991px) {
    .vmv-cta-strip {
        padding: 40px 0;
    }

    .vmv-content {
        padding-bottom: 60px;
    }

    .vmv-card {
        padding: 22px;
    }

    .vmv-card-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .vmv-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
    }

    .vmv-cta-text {
        font-size: 15px;
    }

    .value-card {
        padding: 22px 15px;
    }

    .value-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .value-card h5 {
        font-size: 14px;
    }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f4f5f6 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* Large watermark text */
.wc-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(120px, 15vw, 220px);
    font-weight: 900;
    color: rgba(var(--primary-rgb),0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 20px;
    font-family: var(--font);
}

/* --- Left Visual Block --- */
.wc-visual {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.wc-visual-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.wc-visual-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.wc-visual-accent {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 30px;
    bottom: 30px;
    border: 3px solid var(--primary);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.15;
}

.wc-visual-overlay {
    position: absolute;
    bottom: -30px;
    right: -20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wc-overlay-stat {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    padding: 16px 24px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb),0.35);
    backdrop-filter: blur(10px);
}

.wc-stat-num {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.wc-stat-label {
    font-size: 12px;
    opacity: 0.85;
    line-height: 1.3;
}

/* --- Timeline Reasons --- */
.wc-content {
    padding-left: 10px;
}

.wc-timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 30px;
}

/* Vertical line */
.wc-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--primary), transparent);
    border-radius: 2px;
}

.wc-timeline-item {
    position: relative;
    padding: 0 0 32px 20px;
    transition: all 0.3s;
}

.wc-timeline-item:last-child {
    padding-bottom: 0;
}

/* Icon marker on the line */
.wc-tl-marker {
    position: absolute;
    left: -50px;
    top: 2px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(var(--primary-rgb),0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--primary);
    z-index: 2;
    transition: all 0.4s;
}

.wc-timeline-item:hover .wc-tl-marker {
    background: var(--accent);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(var(--primary-rgb),0.35);
    transform: scale(1.15);
}

.wc-tl-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    transition: color 0.3s;
}

.wc-timeline-item:hover .wc-tl-content h4 {
    color: var(--primary);
}

.wc-tl-content p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.btn-outline-accent {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s;
    white-space: nowrap;
}

.btn-outline-accent:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb),0.3);
    transform: translateY(-2px);
}

/* --- Why Choose Responsive --- */
@media (max-width: 991px) {
    .why-choose-section {
        padding: 70px 0;
    }

    .wc-visual-img img {
        height: 350px;
    }

    .wc-visual-overlay {
        position: relative;
        bottom: auto;
        right: auto;
        flex-direction: row;
        margin-top: 15px;
    }

    .wc-visual-accent {
        display: none;
    }

    .wc-content {
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .wc-visual-img img {
        height: 260px;
    }

    .wc-overlay-stat {
        padding: 12px 16px;
    }

    .wc-stat-num {
        font-size: 22px;
    }

    .wc-timeline {
        padding-left: 40px;
    }

    .wc-tl-marker {
        left: -40px;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .wc-timeline::before {
        left: 16px;
    }
}

/* ========================================
   SERVICES & SOLUTIONS SECTION
   ======================================== */
.services-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: #fff;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/services-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

/* Services description */
.svc-desc {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 550px;
}

.btn-outline-light {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s;
    white-space: nowrap;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
    box-shadow: 0 8px 25px rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Service items - 2-column list layout */
.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.svc-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}

.svc-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
}

.svc-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: transform 0.3s;
}

.svc-item:hover .svc-icon {
    transform: scale(1.1);
}

.svc-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.svc-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
}

/* Right-side image */
.svc-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.svc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.svc-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(var(--dark-rgb),0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

@media (max-width: 991px) {
    .services-section { padding: 70px 0; }
    .svc-grid { grid-template-columns: 1fr; }
    .svc-image { min-height: 300px; }
}

@media (max-width: 575px) {
    .svc-item { padding: 14px; }
    .svc-image { min-height: 250px; }
}

/* ========================================
   INDUSTRIES SECTION
   ======================================== */
.industries-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
}

.industries-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 50px;
}

.btn-consultation-alt {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    transition: all 0.4s;
    white-space: nowrap;
}

.btn-consultation-alt:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb),0.35);
    transform: translateY(-2px);
}

/* Industry Cards */
.industry-card {
    background: #f4f5f6;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(var(--primary-rgb),0.06);
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb),0.1);
    border-color: rgba(var(--primary-rgb),0.15);
}

.industry-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb),0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.4s;
}

.industry-card:hover .industry-card-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

.industry-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

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

/* ========================================
   CTA STRIP (Bottom)
   ======================================== */
.cta-strip-bottom {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: #fff;
}

.cta-strip-bottom p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin: 0;
    max-width: 900px;
}

.btn-cta-outline {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s;
    white-space: nowrap;
}

.btn-cta-outline:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ========================================
   PARTNERSHIP SECTION
   ======================================== */
.partners-section {
    padding: 90px 0;
    background: #fff;
    border-top: 1px solid rgba(var(--primary-rgb),0.08);
}

.partners-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

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

.partner-logo {
    background: #f8f9fc;
    border: 1px solid rgba(var(--primary-rgb),0.06);
    border-radius: 12px;
    padding: 22px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: all 0.3s;
    position: relative;
}

.partner-logo:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: rgba(var(--primary-rgb),0.12);
}

.partner-logo img {
    max-height: 45px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: 0.85;
    transition: all 0.3s;
}

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

@media (max-width: 991px) {
    .partners-section { padding: 70px 0; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-logo { padding: 20px 14px; }
    .partner-logo img { max-height: 35px; }
}

/* ========================================
   PAGE HEADER (inner pages)
   ======================================== */
.page-header {
    background: var(--gradient-1);
    padding: 150px 0 55px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(74,111,165,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(191,26,46,0.08) 0%, transparent 50%);
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.ph-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: #fff;
}
.ph-shape-1 { width: 300px; height: 300px; top: -100px; right: -50px; }
.ph-shape-2 { width: 180px; height: 180px; bottom: -60px; left: 10%; }
.ph-shape-3 { width: 120px; height: 120px; top: 20%; left: 30%; }
.ph-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}
.ph-float-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.ph-float-icons i {
    position: absolute;
    color: rgba(255,255,255,0.07);
    animation: phFloat 6s ease-in-out infinite;
}
@keyframes phFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.ph-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}
.ph-orbit-1 { width: 350px; height: 350px; top: -120px; right: -80px; }
.ph-orbit-2 { width: 200px; height: 200px; bottom: -60px; left: -40px; }
.ph-particles span {
    position: absolute;
    width: var(--size, 4px);
    height: var(--size, 4px);
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: phParticle 4s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}
@keyframes phParticle {
    0%, 100% { opacity: 0.12; transform: translateY(0) scale(1); }
    50% { opacity: 0.3; transform: translateY(-8px) scale(1.3); }
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    position: relative;
}
.breadcrumb-nav a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.3); }
.breadcrumb-nav .current { color: rgba(255,255,255,0.6); }
.page-header h1 {
    font-family: var(--font);
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    position: relative;
}
.page-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-consult:hover {
    background: #a01525;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191,26,46,0.35);
}

@media (max-width: 991px) {
    .page-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
@media (max-width: 576px) {
    .page-header { padding: 120px 0 40px; }
    .page-header h1 { font-size: 1.9rem; }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--primary-mid2);
    padding: 70px 0 0;
    color: rgba(255,255,255,0.7);
}

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

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    text-align: justify;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    display: flex;
    gap: 10px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent);
    width: 16px;
    text-align: center;
    margin-top: 3px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    background: var(--primary-mid);
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

@media (max-width: 991px) {
    .site-footer { padding: 50px 0 0; }
}

@media (max-width: 575px) {
    .footer-about { font-size: 13px; }
    .footer-heading { margin-bottom: 16px; }
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 18px 22px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    transform: translateY(120%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-accept {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.cookie-accept:hover {
    background: #a11525;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(191,26,46,0.3);
}

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

.back-to-top:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
