/**
 * FIXED & ENHANCED Homepage Styles
 * Portfolio Website by Amr Farag
 * 
 * FIXES APPLIED:
 * ✅ Working carousel animations for Partners & Testimonials
 * ✅ Brighter, more engaging backgrounds
 * ✅ Improved visual depth and modern aesthetics
 * ✅ Better gradient overlays and lighting effects
 */

/* ==================== GLOBAL SECTION IMPROVEMENTS ==================== */

section {
    position: relative;
    transition: background 0.6s ease;
}

/* Enhanced connecting gradient between sections */
section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(20, 25, 35, 0.4));
    pointer-events: none;
    z-index: 2;
}

/* ==================== HERO SECTION - ENHANCED BACKGROUND ==================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* NEW: Brighter, more dynamic gradient */
    background: linear-gradient(135deg, 
        #0F1624 0%, 
        #1a2332 25%,
        #0d1520 50%,
        #1f2937 75%,
        #0F1624 100%
    );
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Clean single glow effect */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 149, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
}

/* Brighter grid overlay */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 149, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 149, 0, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
    opacity: 0.6;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

/* Animated Background Shapes */
.shape {
    position: absolute;
    opacity: 0.03;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.shape-circle {
    border-radius: 50%;
    background: linear-gradient(135deg, #FF9500, #FFB340);
}

.shape-square {
    background: linear-gradient(135deg, #FF9500, #FFB340);
    transform: rotate(45deg);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent #FF9500 transparent;
}

/* Shape 1 - Large circle top right */
.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float-1 20s infinite;
}

/* Shape 2 - Medium circle bottom left */
.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation: float-2 15s infinite;
}

/* Shape 3 - Small square top left */
.shape-3 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: -60px;
    animation: float-3 18s infinite;
}

/* Shape 4 - Medium square bottom right */
.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 5%;
    animation: float-4 22s infinite;
}

/* Shape 5 - Triangle middle right */
.shape-5 {
    border-width: 0 100px 173px 100px;
    top: 40%;
    right: -80px;
    animation: float-5 25s infinite;
}

/* Floating animations */
@keyframes float-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-30px, 30px) rotate(120deg);
    }
    66% {
        transform: translate(30px, -30px) rotate(240deg);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, -50px);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(45deg);
    }
    50% {
        transform: translate(40px, 40px) rotate(225deg);
    }
}

@keyframes float-4 {
    0%, 100% {
        transform: translate(0, 0) rotate(45deg);
    }
    50% {
        transform: translate(-40px, -40px) rotate(135deg);
    }
}

@keyframes float-5 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-50px, 50px) rotate(180deg);
    }
}

/* Particles */
.particles-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FF9500;
    border-radius: 50%;
    opacity: 0.4;
    animation: particle-rise 30s linear infinite;
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.5);
}

@keyframes particle-rise {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(var(--particle-drift, 0));
        opacity: 0;
    }
}

/* Glow layers for depth */
.glow-layer {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: glow-pulse 8s ease-in-out infinite;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: #FF9500;
    top: -200px;
    right: -200px;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: #FFB340;
    bottom: -150px;
    left: -150px;
    animation-delay: 4s;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

.hero-left {
    position: relative;
}

/* Hero Badge - Enhanced */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 149, 0, 0.06);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 149, 0, 0.4);
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 
        0 0 25px rgba(255, 149, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #FF9500;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 12px rgba(255, 149, 0, 0.9);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.badge-text {
    color: #FF9500;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
    color: #FFFFFF;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    color: #FF9500;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
    color: #FFFFFF;
}

.animated-word {
    display: inline-block;
    color: #FF9500;
    transition: all 0.5s ease;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: #E5E5E5;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1s forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: #FF9500;
    color: #000000;
    box-shadow: 
        0 8px 20px rgba(255, 149, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    opacity: 0.6;
}

.hero-btn-primary:hover {
    background: #FFB340;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(255, 149, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    animation: fadeIn 0.8s ease-out 1.2s forwards;
    opacity: 0;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(255, 149, 0, 0.5) 15%,
        transparent 30%,
        rgba(255, 149, 0, 0.4) 45%,
        transparent 60%,
        rgba(255, 149, 0, 0.5) 75%,
        transparent 90%
    );
    border-radius: 30% 70% 70% 30% / 60% 40% 60% 40%;
    filter: blur(15px);
    animation: rotate-border 10s linear infinite;
    z-index: -1;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(
        circle,
        transparent 40%,
        rgba(255, 149, 0, 0.2) 60%,
        rgba(255, 149, 0, 0.15) 80%,
        transparent 100%
    );
    border-radius: 30% 70% 70% 30% / 60% 40% 60% 40%;
    animation: pulse-ring 4s ease-in-out infinite;
    z-index: -2;
}

@keyframes pulse-ring {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.7;
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30% 70% 70% 30% / 60% 40% 60% 40%;
    border: 3px solid rgba(255, 149, 0, 0.7);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 149, 0, 0.3),
        inset 0 0 60px rgba(255, 149, 0, 0.08);
    transition: all 0.3s ease;
    animation: subtle-morph 20s ease-in-out infinite;
}

@keyframes subtle-morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 60% 40% 60% 40%;
    }
    25% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }
    50% {
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
    }
    75% {
        border-radius: 35% 65% 65% 35% / 65% 35% 65% 35%;
    }
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.03) rotate(2deg);
    border-color: #FF9500;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 70px rgba(255, 149, 0, 0.5),
        inset 0 0 80px rgba(255, 149, 0, 0.12);
}

/* ==================== ABOUT SECTION - ENHANCED BACKGROUND ==================== */

.about-section {
    /* NEW: Brighter, more vibrant background */
    background: 
        linear-gradient(180deg, 
            rgba(15, 22, 36, 0.95) 0%, 
            rgba(25, 32, 48, 0.98) 50%,
            rgba(15, 22, 36, 0.95) 100%
        );
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Clean single glow effect */
.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 149, 0, 0.06) 0%, transparent 70%);
    z-index: 1;
}

.bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* About Section - Floating Stats Icons */
.about-section .bg-animation::before {
    content: '📊';
    position: absolute;
    font-size: 100px;
    opacity: 0.02;
    top: 20%;
    right: 10%;
    animation: float-icon 20s ease-in-out infinite;
}

.about-section .bg-animation::after {
    content: '📈';
    position: absolute;
    font-size: 80px;
    opacity: 0.02;
    bottom: 20%;
    left: 10%;
    animation: float-icon 25s ease-in-out infinite reverse;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.section-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 149, 0, 0.07);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 149, 0, 0.4);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #FF9500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 
        0 0 25px rgba(255, 149, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.section-title {
    font-size: 60px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.section-subtitle {
    font-size: 18px;
    color: #94A3B8;
    font-weight: 400;
    margin-top: 10px;
}

.content-area {
    max-width: 1000px;
    margin: 0 auto 100px;
    position: relative;
}

.about-text {
    font-size: 20px;
    line-height: 1.9;
    color: #E2E8F0;
    margin-bottom: 30px;
    text-align: center;
}

/* ==================== STAT CARDS - ENHANCED ==================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
}

.stat-card {
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    height: 200px;
}

.stat-card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 25px;
    
    /* Enhanced visibility */
    background: linear-gradient(
        135deg,
        rgba(255, 149, 0, 0.05) 0%,
        rgba(30, 38, 55, 0.85) 50%,
        rgba(255, 149, 0, 0.05) 100%
    );
    
    border: 2px solid rgba(255, 149, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
    
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 149, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 149, 0, 0.05) 50%);
    opacity: 1;
}

.stat-card-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(-45deg, transparent 50%, rgba(255, 149, 0, 0.05) 50%);
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px) rotateX(8deg);
}

.stat-card:hover .stat-card-inner {
    border-color: #FF9500;
    background: linear-gradient(
        135deg,
        rgba(255, 149, 0, 0.04) 0%,
        rgba(30, 38, 55, 0.95) 50%,
        rgba(255, 149, 0, 0.04) 100%
    );
    box-shadow: 
        0 20px 55px rgba(0, 0, 0, 0.5),
        0 0 45px rgba(255, 149, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    color: #FF9500;
    display: block;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: -2px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 25px rgba(255, 149, 0, 0.4);
}

.stat-card:hover .stat-number {
    transform: scale(1.15);
    text-shadow: 0 0 35px rgba(255, 149, 0, 0.6);
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: #E2E8F0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* ==================== GLOBAL SECTION - ENHANCED BACKGROUND ==================== */

.global-section {
    background: 
        linear-gradient(180deg, 
            rgba(18, 24, 38, 0.95) 0%, 
            rgba(22, 28, 42, 0.98) 50%,
            rgba(18, 24, 38, 0.95) 100%
        );
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.global-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 149, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

/* Global Section - Subtle dotted world map pattern */
.global-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 149, 0, 0.02) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: dots-shift 40s linear infinite;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes dots-shift {
    0% {
        background-position: 0 0, 25px 25px;
    }
    100% {
        background-position: 50px 50px, 75px 75px;
    }
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 40px;
    background: rgba(30, 38, 55, 0.7);
    border: 2px solid rgba(255, 149, 0, 0.4);
    border-radius: 50px;
    color: #E2E8F0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tab-btn:hover {
    border-color: #FF9500;
    transform: translateY(-2px);
    background: rgba(255, 149, 0, 0.15);
    box-shadow: 
        0 8px 25px rgba(255, 149, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.tab-btn.active {
    background: linear-gradient(135deg, #FF9500, #FFB340);
    border-color: #FF9500;
    color: #0A0E1A;
    box-shadow: 
        0 10px 35px rgba(255, 149, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.map-container {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

.world-map {
    font-size: 200px;
    line-height: 1;
    filter: drop-shadow(0 0 35px rgba(255, 149, 0, 0.4));
    animation: pulse-map 3s ease-in-out infinite;
}

@keyframes pulse-map {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.map-subtitle {
    margin-top: 20px;
    font-size: 16px;
    color: #94A3B8;
    font-weight: 600;
}

.pills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.pill-item {
    padding: 12px 24px;
    background: rgba(30, 38, 55, 0.7);
    border: 2px solid rgba(255, 149, 0, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pill-item:hover {
    border-color: #FF9500;
    background: rgba(255, 149, 0, 0.2);
    transform: translateY(-3px);
    color: #FF9500;
    box-shadow: 
        0 8px 25px rgba(255, 149, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pill-emoji {
    margin-right: 6px;
    font-size: 1.1em;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.icon-item {
    aspect-ratio: 1;
    background: rgba(30, 38, 55, 0.7);
    border: 2px solid rgba(255, 149, 0, 0.4);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 15px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.icon-item:hover {
    border-color: #FF9500;
    background: rgba(255, 149, 0, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(255, 149, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.icon-symbol {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 149, 0, 0.5));
}

.icon-label {
    font-size: 11px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.2;
}

/* ==================== SERVICES SECTION - ENHANCED BACKGROUND ==================== */

.services-section {
    background: 
        linear-gradient(180deg, 
            rgba(15, 22, 36, 0.95) 0%, 
            rgba(20, 28, 42, 0.98) 50%,
            rgba(15, 22, 36, 0.95) 100%
        );
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 149, 0, 0.06) 0%, transparent 70%);
    z-index: 1;
}

/* Services Section - Floating service icon shapes */
.services-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 149, 0, 0.015) 50px, transparent 50px),
        radial-gradient(circle at 80% 70%, rgba(255, 149, 0, 0.015) 60px, transparent 60px),
        radial-gradient(circle at 50% 50%, rgba(255, 149, 0, 0.01) 40px, transparent 40px);
    background-size: 200% 200%;
    animation: service-float 25s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes service-float {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 70% 30%;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(255, 149, 0, 0.05) 0%,
        rgba(30, 38, 55, 0.7) 50%,
        rgba(255, 149, 0, 0.05) 100%
    );
    border: 2px solid rgba(255, 149, 0, 0.4);
    border-radius: 25px;
    padding: 40px 35px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
    cursor: pointer;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 149, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-top: 3px solid #FF9500;
    border-left: 3px solid #FF9500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid #FF9500;
    border-right: 3px solid #FF9500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #FF9500;
    background: linear-gradient(
        135deg,
        rgba(255, 149, 0, 0.06) 0%,
        rgba(30, 38, 55, 0.85) 50%,
        rgba(255, 149, 0, 0.06) 100%
    );
    transform: translateY(-8px);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.5),
        0 0 45px rgba(255, 149, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(255, 149, 0, 0.4));
}

.service-title {
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    font-size: 14px;
    line-height: 1.7;
    color: #D0D0D0;
    flex: 1;
    margin-bottom: 20px;
}

.service-link {
    color: #FF9500;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link .arrow {
    transition: transform 0.3s ease;
}

.service-link:hover .arrow {
    transform: translateX(5px);
}

/* ==================== EXPERTISE SECTION - ENHANCED BACKGROUND ==================== */

.expertise-section {
    background: 
        linear-gradient(180deg, 
            rgba(18, 24, 38, 0.95) 0%, 
            rgba(22, 28, 42, 0.98) 50%,
            rgba(18, 24, 38, 0.95) 100%
        );
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.expertise-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 149, 0, 0.06) 0%, transparent 70%);
    z-index: 1;
}

/* Expertise Section - Subtle animated grid */
.expertise-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 149, 0, 0.015) 1px, transparent 1px),
        linear-gradient(rgba(255, 149, 0, 0.015) 1px, transparent 1px);
    background-size: 120px 120px;
    animation: grid-slide 30s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes grid-slide {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 120px 120px;
    }
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.expertise-card {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(255, 149, 0, 0.05) 0%,
        rgba(30, 38, 55, 0.7) 50%,
        rgba(255, 149, 0, 0.05) 100%
    );
    border: 2px solid rgba(255, 149, 0, 0.45);
    border-radius: 25px;
    padding: 35px 30px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 149, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    border-top: 2px solid rgba(255, 149, 0, 0.5);
    border-right: 2px solid rgba(255, 149, 0, 0.5);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-color: #FF9500;
    background: linear-gradient(
        135deg,
        rgba(255, 149, 0, 0.06) 0%,
        rgba(30, 38, 55, 0.85) 50%,
        rgba(255, 149, 0, 0.06) 100%
    );
    transform: translateY(-8px);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.5),
        0 0 45px rgba(255, 149, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.expertise-card:hover::before {
    border-color: #FF9500;
}

.expertise-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.expertise-number {
    font-size: 56px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #FF9500;
    line-height: 1;
}

.expertise-icon {
    font-size: 48px;
    filter: drop-shadow(0 4px 10px rgba(255, 149, 0, 0.4));
}

.expertise-title {
    font-size: 24px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #D0D0D0;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding-left: 0;
}

.expertise-list li:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #FF9500;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.6);
    transition: all 0.3s ease;
}

.expertise-list li:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}

.expertise-list li:hover:before {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 149, 0, 0.8);
}

/* ==================== PARTNERS SECTION - FIXED CAROUSEL ==================== */

.partners-section {
    background: 
        linear-gradient(180deg, 
            rgba(15, 22, 36, 0.95) 0%, 
            rgba(20, 28, 42, 0.98) 50%,
            rgba(15, 22, 36, 0.95) 100%
        );
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 149, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.partners-wrapper {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.partners-wrapper::before,
.partners-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.partners-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(20, 28, 42, 0.98), transparent);
}

.partners-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(20, 28, 42, 0.98), transparent);
}

/* FIXED: Working carousel animation */
.partners-grid {
    display: inline-flex;
    gap: 35px;
    /* CRITICAL: This is what makes it scroll */
    animation: scroll-partners 40s linear infinite;
    will-change: transform;
}

/* Pause on hover */
.partners-grid:hover {
    animation-play-state: paused;
}

/* FIXED: Proper keyframe animation */
@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Scroll exactly half the width since content is duplicated */
        transform: translateX(-50%);
    }
}

.partner-card {
    flex: 0 0 280px;
    width: 280px;
    height: 160px;
    background: #FFFFFF;
    border-radius: 25px;
    padding: 45px 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 149, 0, 0.08);
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 45px rgba(255, 149, 0, 0.1);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.partner-logo {
    max-width: 180px;
    width: 100%;
    height: 70px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.4);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* ==================== TESTIMONIALS - AUTO SLIDER ==================== */

.testimonials-section {
    background: 
        linear-gradient(180deg, 
            rgba(18, 24, 38, 0.95) 0%, 
            rgba(22, 28, 42, 0.98) 50%,
            rgba(18, 24, 38, 0.95) 100%
        );
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 149, 0, 0.06) 0%, transparent 70%);
    z-index: 1;
}

/* Testimonials Section - Floating quote marks */
.testimonials-section::after {
    content: '"';
    position: absolute;
    font-size: 300px;
    font-weight: 900;
    color: rgba(255, 149, 0, 0.015);
    top: 10%;
    right: 10%;
    line-height: 1;
    animation: quote-float 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes quote-float {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50px) rotate(5deg);
        opacity: 1;
    }
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    /* FIXED: Exact width for 3 cards only */
    max-width: 1260px; /* (400px * 3) + (30px * 2 gaps) */
    width: 100%;
    margin: 0 auto;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    /* Keep left alignment for carousel */
    justify-content: flex-start;
}

.testimonial-card {
    background: linear-gradient(
        135deg,
        rgba(255, 149, 0, 0.05) 0%,
        rgba(30, 38, 55, 0.7) 50%,
        rgba(255, 149, 0, 0.05) 100%
    );
    border: 2px solid rgba(255, 149, 0, 0.4);
    border-radius: 25px;
    padding: 40px 35px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    cursor: pointer;
    
    /* Exact size */
    width: 400px;
    min-width: 400px;
    max-width: 400px;
    flex: 0 0 400px;
    min-height: 450px;
    
    display: flex;
    flex-direction: column;
    
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 149, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.testimonial-card:hover {
    border-color: #FF9500;
    background: linear-gradient(
        135deg,
        rgba(255, 149, 0, 0.06) 0%,
        rgba(30, 38, 55, 0.85) 50%,
        rgba(255, 149, 0, 0.06) 100%
    );
    transform: translateY(-8px);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.5),
        0 0 45px rgba(255, 149, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 110px;
    color: rgba(255, 149, 0, 0.15);
    line-height: 1;
    z-index: 0;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.star {
    font-size: 18px;
}

.star.filled {
    color: #FF9500;
    filter: drop-shadow(0 0 6px rgba(255, 149, 0, 0.6));
}

.star.empty {
    color: rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #D0D0D0;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    flex-grow: 1;
    overflow: hidden;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 149, 0, 0.25);
    margin-top: auto;
} /* ✅ FIXED: Added missing closing brace */

.author-avatar,
.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    flex-shrink: 0;
    border: 3px solid rgba(255, 149, 0, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 149, 0, 0.3);
    color: #FFFFFF;
    object-fit: cover;
}

.avatar {
    background: linear-gradient(135deg, #FF9500, #FFB340);
}

.avatar-initial {
    font-size: 28px;
    font-weight: 800;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.author-position {
    font-size: 14px;
    color: #FF9500;
    font-weight: 600;
    line-height: 1.4;
}

.author-company {
    color: #94A3B8;
}


/* ==================== CONTACT SECTION - ENHANCED ==================== */

.contact-section {
    background: 
        linear-gradient(180deg, 
            rgba(15, 22, 36, 0.95) 0%, 
            rgba(18, 25, 38, 0.98) 50%,
            rgba(15, 22, 36, 0.95) 100%
        );
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 149, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
}

/* Contact Section - Subtle envelope shape */
.contact-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 140px;
    top: 15%;
    right: 10%;
    border: 2px solid rgba(255, 149, 0, 0.02);
    border-radius: 10px;
    animation: envelope-float 15s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.contact-section::after::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 70px 100px 0 100px;
    border-color: rgba(255, 149, 0, 0.02) transparent transparent transparent;
    top: 0;
    left: 0;
}

@keyframes envelope-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
        opacity: 0.6;
    }
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: #94A3B8;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    background: linear-gradient(
        135deg,
        rgba(255, 149, 0, 0.05) 0%,
        rgba(30, 38, 55, 0.7) 50%,
        rgba(255, 149, 0, 0.05) 100%
    );
    border: 2px solid rgba(255, 149, 0, 0.35);
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.4),
        0 0 35px rgba(255, 149, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #FF9500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(18, 25, 38, 0.7);
    border: 2px solid rgba(255, 149, 0, 0.3);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.3),
        0 0 0 0 rgba(255, 149, 0, 0);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #64748B;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FF9500;
    background: rgba(255, 149, 0, 0.12);
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(255, 149, 0, 0.2),
        0 0 25px rgba(255, 149, 0, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: #FF9500;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 10px 35px rgba(255, 149, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    opacity: 0.7;
}

.submit-btn:hover {
    background: #FFB340;
    transform: translateY(-3px);
    box-shadow: 
        0 15px 45px rgba(255, 149, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
        height: 400px;
    }
    
    .hero-image-wrapper {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .stat-number {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .stat-card-inner {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 42px;
    }
}

/* ==================== ACCESSIBILITY ==================== */

@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .title-line,
    .hero-subtitle,
    .hero-cta-group,
    .hero-image-wrapper,
    .hero-image,
    .badge-pulse {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Carousels still work, just slower */
    .partners-grid,
    .testimonials-grid {
        animation-duration: 80s !important;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .global-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .expertise-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
}


/* ==================== END OF FILE ==================== */
