/* ========================================
   STYLE.CSS - ONE FILE FOR ALL DEVICES
   Desktop, Tablet, and Mobile in ONE file
   ALL ZOOM LEVELS FIXED
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --primary: #60A5FA;
    --primary-dark: #3B82F6;
    --primary-light: #93C5FD;
    --primary-bg: #DBEAFE;
    --white: #FFFFFF;
    --bg-start: #FFFFFF;
    --bg-mid: #F0F7FF;
    --bg-light-blue: #E0F2FE;
    --bg-blue: #BFDBFE;
    --glass: rgba(255, 255, 255, 0.25);
    --glass-blue: rgba(96, 165, 250, 0.15);
    --glow: rgba(96, 165, 250, 0.35);
    --text-dark: #0F172A;
    --text-light: #475569;
    --border-radius: 24px;
    --border-radius-pill: 999px;
    --shadow-glass: 0 8px 32px rgba(96, 165, 250, 0.15);
    --shadow-glass-lg: 0 20px 60px rgba(96, 165, 250, 0.2);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', 'Playfair Display', Georgia, serif;
    --max-width: 1200px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-start);
    line-height: 1.7;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 0;
}

main, .main-content {
    flex: 1;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
}

.section-badge {
    display: inline-block;
    background: var(--glass-blue);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: var(--border-radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(96, 165, 250, 0.1);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   GLASSMORPHISM
   ======================================== */
.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glass);
}

.glass-dark {
    background: var(--glass-blue);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glass);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    border: none;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 20px var(--glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--glow);
}

.btn-secondary {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--glow);
}

.btn-lg {
    padding: 16px 44px;
    font-size: 1.125rem;
}

/* ========================================
   CARDS
   ======================================== */
.card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-glass);
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-glass-lg);
    border-color: rgba(96, 165, 250, 0.3);
}

/* ========================================
   GRID SYSTEM
   ======================================== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   UTILITY
   ======================================== */
.text-center {
    text-align: center;
}

.bg-light {
    background: #F0F7FF;
}

.bg-white {
    background: var(--bg-start);
}

.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

/* ========================================
   SELECTION & SCROLLBAR
   ======================================== */
::selection {
    background: var(--primary);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-mid);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========================================
   SOCIAL SIDEBAR
   ======================================== */
.social-sidebar {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1000;
}

.social-sidebar a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #1E3A6F;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.08);
    text-decoration: none;
}

.social-sidebar a:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.35);
    border-color: var(--primary);
    color: var(--primary);
}

/* ========================================
   HEADER STRIP
   ======================================== */
#header-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: linear-gradient(135deg, #0F172A 0%, #1E3A6F 50%, #1E40AF 100%);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */
#main-nav {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-pill);
    padding: 6px 20px;
    transition: all 0.3s ease;
}

#main-nav .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
}

/* Navigation Menu - Desktop */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    padding: 0 10px;
    margin: 0;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
}

.nav-menu a.active {
    background: rgba(255, 255, 255, 0.2);
}

.nav-cta .btn-nav {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--border-radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.35);
}

.nav-cta .btn-nav:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(96, 165, 250, 0.5);
}

/* Hamburger - Hidden by default */
.hamburger {
    display: none !important;
}

.menu-overlay {
    display: none !important;
}

.nav-menu-mobile {
    display: none !important;
}

#nav-menu-mobile {
    display: none !important;
}

.nav-cta-mobile {
    display: none !important;
}

/* ========================================
   HERO SECTION
   ======================================== */
#hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0 40px;
    background: transparent;
    z-index: 1;
    margin-top: 20px;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 55%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 18px;
    border-radius: var(--border-radius-pill);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.05;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Right */
.hero-right {
    flex: 1;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

.hero-image-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-glass-lg);
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.floating-shapes {
    display: none;
}

/* ========================================
   SERVICES
   ======================================== */
#services {
    padding: 100px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glass);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glass-lg);
    border-color: rgba(96, 165, 250, 0.3);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--glass-blue);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.35);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-card .btn-read {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.service-card .btn-read:hover {
    color: var(--primary-dark);
    gap: 14px;
}

/* ========================================
   ABOUT
   ======================================== */
#about {
    padding: 100px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glass);
    padding: 12px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ========================================
   INDUSTRIES
   ======================================== */
#industries {
    padding: 100px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.industry-tag {
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glass);
}

.industry-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.35);
}

/* ========================================
   PREMIUM CARDS
   ======================================== */
#premium-cards {
    padding: 100px 0;
    background: transparent;
}

.premium-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.premium-card {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8fbff 30%,
        #f0f7ff 60%,
        #e8f4ff 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 218, 240, 0.4);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.premium-card {
    animation: premiumGentleFloat 5s ease-in-out infinite;
}

.premium-card:nth-child(2) { animation-delay: 0.5s; }
.premium-card:nth-child(3) { animation-delay: 1s; }
.premium-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes premiumGentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.premium-card:hover {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.08);
    border-color: rgba(147, 197, 253, 0.5);
}

.premium-card-inner {
    padding: 30px 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.premium-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9),
        rgba(219, 234, 254, 0.5)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: #3B82F6;
    border: 1px solid rgba(191, 219, 254, 0.4);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.06);
}

.premium-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0F172A;
}

.premium-card p {
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */
#cta {
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #0F172A 0%, #1E40AF 100%);
}

#cta h2 {
    color: #FFFFFF;
}

#cta .glass {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
}

#cta p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 30px;
}

#cta .btn {
    background: #FBBF24;
    color: #0F172A;
}

#cta .btn:hover {
    background: #FFFFFF;
    color: #0F172A;
    transform: translateY(-3px);
}

/* ========================================
   CONTACT
   ======================================== */
#contact {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-glass);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.875rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.contact-info {
    padding: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-info-item i {
    width: 44px;
    height: 44px;
    background: var(--glass-blue);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8fbff 30%,
        #f0f7ff 60%,
        #e8f4ff 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 218, 240, 0.4);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.04);
    transition: all 0.4s ease;
}

.portfolio-card {
    animation: portfolioGentleFloat 5s ease-in-out infinite;
}

@keyframes portfolioGentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.portfolio-card:hover {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.08);
    border-color: rgba(147, 197, 253, 0.5);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-image:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    color: #fff;
}

.portfolio-overlay h4 {
    color: #fff;
    margin-bottom: 4px;
}

.portfolio-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

.portfolio-category {
    display: inline-block;
    background: #FBBF24;
    color: #0F172A;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
}

.portfolio-image:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item {
    display: block;
    transition: opacity 0.4s ease;
}

.portfolio-item.hidden {
    display: none;
}

/* ========================================
   CLIENTS
   ======================================== */
.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.client-card {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8fbff 30%,
        #f0f7ff 60%,
        #e8f4ff 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 218, 240, 0.4);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.client-card {
    animation: clientGentleFloat 5s ease-in-out infinite;
}

.client-card:nth-child(2) { animation-delay: 0.3s; }
.client-card:nth-child(3) { animation-delay: 0.6s; }
.client-card:nth-child(4) { animation-delay: 0.9s; }
.client-card:nth-child(5) { animation-delay: 1.2s; }
.client-card:nth-child(6) { animation-delay: 1.5s; }
.client-card:nth-child(7) { animation-delay: 1.8s; }
.client-card:nth-child(8) { animation-delay: 2.1s; }

@keyframes clientGentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.client-card:hover {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.08);
    border-color: rgba(147, 197, 253, 0.5);
}

.client-card-inner {
    padding: 30px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

.client-logo-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(200, 218, 240, 0.3);
    transition: all 0.3s ease;
}

.client-card:hover .client-logo-wrapper {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(147, 197, 253, 0.5);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.04);
}

.client-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.client-location {
    font-size: 0.8rem;
    color: #3B82F6;
    font-weight: 600;
    margin-bottom: 4px;
}

.client-type {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 12px;
}

.client-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.client-service-tag {
    background: rgba(59, 130, 246, 0.06);
    color: #3B82F6;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.06);
    transition: all 0.3s ease;
}

.client-card:hover .client-service-tag {
    background: rgba(59, 130, 246, 0.1);
}

/* ========================================
   FOOTER - DARK (Desktop)
   ======================================== */
#footer-desktop {
    background: #0F172A;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 20px;
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: 100%;
}

#footer-desktop .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

#footer-desktop .footer-logo .logo-text {
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
}

#footer-desktop .footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.5);
}

#footer-desktop .footer-description {
    margin: 16px 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

#footer-desktop .footer-social {
    display: flex;
    gap: 12px;
}

#footer-desktop .footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

#footer-desktop .footer-social a:hover {
    background: #3B82F6;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
}

#footer-desktop .footer-column h4 {
    color: #FFFFFF;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

#footer-desktop .footer-column ul {
    list-style: none;
    padding: 0;
}

#footer-desktop .footer-column ul li {
    margin-bottom: 10px;
}

#footer-desktop .footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

#footer-desktop .footer-column ul li a:hover {
    color: #60A5FA;
    padding-left: 6px;
}

#footer-desktop .footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

#footer-desktop .footer-contact li i {
    width: 20px;
    color: #60A5FA;
}

#footer-desktop .footer-contact li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

#footer-desktop .footer-contact li a:hover {
    color: #60A5FA;
}

#footer-desktop .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

#footer-desktop .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

#footer-desktop .footer-bottom-links {
    display: flex;
    gap: 20px;
}

#footer-desktop .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

#footer-desktop .footer-bottom-links a:hover {
    color: #60A5FA;
}

/* ========================================
   HIDE ELEMENTS
   ======================================== */
#back-to-top {
    display: none !important;
}

#whatsapp-float {
    display: none !important;
}

#top-social-bar {
    display: none !important;
}

/* ========================================
   MOBILE FOOTER - Hidden by default
   ======================================== */
#footer-mobile {
    display: none !important;
}

.mobile-footer {
    display: none !important;
}

/* ========================================
   ========================================
   DESKTOP STYLES (1025px and above)
   ========================================
   ======================================== */
@media (min-width: 1025px) {
    /* Everything above is already desktop */
    /* No changes needed - desktop is default */
}

/* ========================================
   ========================================
   TABLET STYLES (769px - 1024px)
   ========================================
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Header */
    #header-strip {
        padding: 10px 0 !important;
    }
    
    #main-nav {
        min-width: 85%;
        padding: 8px 18px;
    }
    
    #main-nav .nav-menu {
        gap: 4px;
        padding: 0 10px;
    }
    
    #main-nav .nav-menu a {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .nav-cta .btn-nav {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .logo img {
        height: 32px !important;
    }
    
    /* Social Sidebar - Hide on Tablet */
    .social-sidebar {
        display: none !important;
    }
    
    /* Hero */
    #hero {
        padding: 80px 0 50px;
        min-height: auto;
        margin-top: 0 !important;
    }
    
    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-right {
        max-width: 100%;
        min-height: auto;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .hero-image-container {
        max-width: 400px;
    }
    
    .hero-image {
        max-height: 320px;
    }
    
    /* Grids */
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 24px;
    }
    
    .premium-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .premium-card {
        min-height: auto !important;
        animation: none !important;
    }
    
    .premium-card:hover {
        animation: none !important;
        transform: none !important;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-height: 400px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .industry-tag {
        padding: 14px 18px;
        font-size: 0.9375rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-info {
        padding: 0;
    }
    
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .client-card {
        animation: none !important;
    }
    
    .client-card:hover {
        animation: none !important;
        transform: none !important;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .portfolio-card {
        animation: none !important;
    }
    
    .portfolio-card:hover {
        animation: none !important;
        transform: none !important;
    }
    
    /* CTA */
    #cta {
        padding: 60px 0;
    }
    
    #cta h2 {
        font-size: 2.2rem;
    }
    
    #cta .glass {
        padding: 40px 30px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    #footer-desktop .footer-column:last-child {
        grid-column: span 2;
    }
    
    .page-header {
        margin-top: 0 !important;
        padding: 80px 0 40px !important;
    }
}

/* ========================================
   ========================================
   MOBILE STYLES (768px and below)
   ========================================
   ======================================== */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    .container {
        padding: 0 14px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    h3 {
        font-size: 1rem;
    }
    p {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    .section-header {
        margin-bottom: 18px;
    }
    
    /* Desktop Elements - Hide */
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    
    /* ===== HERO FIX - ONLY THIS CHANGED ===== */
    /* Fix hero text hidden behind header on mobile */
    #hero {
        padding-top: 80px !important;
        padding-bottom: 30px !important;
        min-height: auto !important;
        margin-top: 0 !important;
    }
    
    .page-header {
        padding-top: 80px !important;
        padding-bottom: 20px !important;
        margin-top: 0 !important;
    }
    
    .hero-wrapper {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .hero-badge {
        font-size: 0.45rem;
        padding: 3px 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }
    
    .hero-buttons .btn {
        width: auto !important;
        max-width: 160px !important;
        padding: 6px 12px !important;
        font-size: 0.6rem !important;
        min-height: 32px !important;
    }
    
    .hero-right {
        max-width: 100%;
        min-height: auto;
        display: flex;
        justify-content: center;
        margin-top: 16px;
    }
    
    .hero-image-container {
        max-width: 320px;
        padding: 6px;
    }
    
    .hero-image {
        max-height: 220px;
    }
    
    .floating-shapes {
        display: none !important;
    }
    /* ===== END HERO FIX ===== */
    
    /* Social Sidebar - Mobile */
    .social-sidebar {
        display: flex;
        position: fixed;
        left: 6px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 6px;
        z-index: 1000;
    }
    
    .social-sidebar a {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    /* Header Strip - Mobile */
    #header-strip {
        padding: 6px 0;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    /* Navigation - Mobile */
    #main-nav {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 92%;
        max-width: 92%;
        margin: 0 auto;
        padding: 4px 10px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }
    
    .logo img {
        height: 24px;
        width: auto;
        display: block;
    }
    
    .nav-menu {
        display: none !important;
    }
    .nav-cta .btn-nav {
        display: none !important;
    }
    
    /* Hamburger - Show on Mobile */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 3px;
        cursor: pointer;
        padding: 3px;
        z-index: 1002;
        margin-left: auto;
    }
    
    .hamburger span {
        width: 18px;
        height: 2px;
        background: #FFFFFF;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(3px, -3px);
    }
    
    /* Mobile Menu - Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        display: none;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Mobile Menu - Slide in */
    .nav-menu-mobile {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 75% !important;
        max-width: 300px !important;
        height: 100vh !important;
        background: #0F172A !important;
        padding: 80px 24px 30px !important;
        z-index: 10000 !important;
        transition: right 0.3s ease !important;
        overflow-y: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3) !important;
        border-left: 2px solid rgba(255, 255, 255, 0.05) !important;
    }
    
    .nav-menu-mobile.active {
        right: 0 !important;
    }
    
    .nav-menu-mobile a {
        color: #FFFFFF !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        width: 100% !important;
        text-decoration: none !important;
        display: block !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-menu-mobile a:hover,
    .nav-menu-mobile a.active {
        color: #FBBF24 !important;
        padding-left: 12px !important;
        background: rgba(251, 191, 36, 0.08) !important;
        border-radius: 8px !important;
    }
    
    .nav-menu-mobile .nav-cta-mobile {
        margin-top: 16px !important;
    }
    
    .nav-menu-mobile .nav-cta-mobile .btn-nav {
        display: block !important;
        padding: 12px 28px !important;
        background: #FBBF24 !important;
        color: #0F172A !important;
        border-radius: 50px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        text-align: center !important;
        text-decoration: none !important;
        box-shadow: 0 4px 20px rgba(251, 191, 36, 0.25) !important;
    }
    
    /* Page Header - Mobile */
    .page-header h1 {
        font-size: 1.3rem !important;
        color: #FFFFFF !important;
    }
    
    .page-header p {
        font-size: 0.7rem !important;
    }
    
    /* ===== ABOUT PAGE BUTTONS - SIDE BY SIDE (MOBILE ONLY) ===== */
    .about-page-buttons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
    }
    
    .about-page-buttons .btn {
        padding: 8px 18px !important;
        font-size: 0.75rem !important;
        min-width: auto !important;
        max-width: 160px !important;
    }
    
    /* ===== ABOUT STATS ===== */
    .about-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        margin-top: 12px !important;
        width: 100% !important;
    }
    
    .stat-item {
        padding: 10px 6px !important;
        text-align: center !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8fbff 30%, #f0f7ff 60%, #e8f4ff 100%) !important;
        backdrop-filter: blur(12px) !important;
        border: 1px solid rgba(200, 218, 240, 0.4) !important;
        border-radius: 10px !important;
        width: 100% !important;
    }
    
    .stat-number {
        font-size: 1.4rem !important;
    }
    .stat-label {
        font-size: 0.6rem !important;
    }
    
    /* ===== ABOUT PAGE CARDS - 1 PER ROW (MOBILE ONLY) ===== */
    /* Mission & Vision cards - 1 per row */
    .about-grid .card,
    .about-page .card,
    #about .card,
    .grid-2 .card {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 12px !important;
        grid-column: span 1 !important;
    }
    
    /* Why Choose Us - 1 per row */
    .about-why-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* Our Process - 1 per row */
    .process-grid,
    .process .grid-2,
    .about-page .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* ===== SERVICES - Mobile (unchanged - 3 columns) ===== */
    #services {
        padding: 20px 0;
        background: transparent;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .service-card {
        padding: 12px 6px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fbff 30%, #f0f7ff 60%, #e8f4ff 100%);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(200, 218, 240, 0.4);
        border-radius: 12px;
        text-align: center;
        width: 100%;
    }
    
    .service-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
        margin: 0 auto 5px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(219, 234, 254, 0.5));
        color: #3B82F6;
    }
    
    .service-card h3 {
        font-size: 0.6rem;
        color: #0F172A;
        margin-bottom: 1px;
        line-height: 1.2;
    }
    
    .service-card p {
        display: none;
    }
    
    .service-card .btn-read {
        display: none;
    }
    
    .services-grid .service-card:last-child:nth-child(3n+1) {
        grid-column: 2;
    }
    
    /* ===== SERVICES PAGE - DETAILED SERVICES 1 PER ROW (MOBILE ONLY) ===== */
    .detailed-services-grid,
    .services-detailed .grid-2,
    .services-page .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* ===== INDUSTRIES - Mobile (unchanged - 3 columns) ===== */
    #industries {
        padding: 20px 0;
        background: transparent;
    }
    
    .industries-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .industry-tag {
        padding: 6px 3px;
        font-size: 0.55rem;
        background: linear-gradient(135deg, #ffffff 0%, #f8fbff 30%, #f0f7ff 60%, #e8f4ff 100%);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(200, 218, 240, 0.4);
        border-radius: 8px;
        text-align: center;
        color: #0F172A;
    }
    
    .industries-grid .industry-tag:last-child:nth-child(3n+1) {
        grid-column: 2;
    }
    
    /* ===== INDUSTRIES PAGE - Why Choose Us 1 PER ROW (MOBILE ONLY) ===== */
    .industries-why-grid,
    .industries .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* ===== ABOUT - Mobile (image and text) ===== */
    #about {
        padding: 20px 0;
    }
    
    .about-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
    }
    
    .about-image {
        width: 100% !important;
        padding: 4px !important;
        order: 2 !important;
    }
    
    .about-image img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
    }
    
    .about-content {
        padding: 0 !important;
        text-align: center !important;
        order: 1 !important;
        width: 100% !important;
    }
    
    .about-content .section-badge {
        font-size: 0.5rem !important;
        padding: 3px 12px !important;
        display: inline-block !important;
        margin: 0 auto 6px !important;
    }
    
    .about-content h2 {
        font-size: 1.2rem !important;
        text-align: center !important;
        color: #0F172A !important;
        margin-bottom: 6px !important;
    }
    
    .about-content p {
        text-align: center !important;
        font-size: 0.75rem !important;
        color: #475569 !important;
        margin-bottom: 4px !important;
    }
    
    /* ===== PORTFOLIO - 1 per row with VISIBLE image (MOBILE ONLY) ===== */
    .portfolio-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .portfolio-card {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }
    
    .portfolio-image {
        width: 100% !important;
        height: 280px !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .portfolio-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    .portfolio-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(15, 23, 42, 0.7) !important;
        backdrop-filter: blur(4px) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 20px !important;
        opacity: 1 !important;
        text-align: center !important;
        color: #fff !important;
        pointer-events: none !important;
    }
    
    .portfolio-overlay h4 {
        color: #fff !important;
        font-size: 1.2rem !important;
        margin-bottom: 4px !important;
        font-weight: 700 !important;
    }
    
    .portfolio-overlay p {
        color: rgba(255,255,255,0.85) !important;
        font-size: 0.9rem !important;
        margin-bottom: 6px !important;
    }
    
    .portfolio-category {
        display: inline-block !important;
        background: #FBBF24 !important;
        color: #0F172A !important;
        padding: 4px 14px !important;
        border-radius: 50px !important;
        font-size: 0.7rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
    }
    /* ========================================
   PREMIUM CARDS - Continued
   ======================================== */
/* This section is already included in PART 1, but here's the continuation */

/* ========================================
   INDUSTRIES PAGE - DETAILED SECTIONS (Mobile fixes applied below)
   ======================================== */

/* ========================================
   PORTFOLIO PAGE - Mobile fixes applied below
   ======================================== */

/* ========================================
   CLIENTS - PERFECT - DO NOT TOUCH (Desktop & Mobile unchanged)
   ======================================== */

/* ========================================
   CONTACT - PERFECT - DO NOT TOUCH
   ======================================== */

/* ========================================
   HOME - PERFECT - DO NOT TOUCH
   ======================================== */

/* ========================================
   INDUSTRIES - Why Choose Us (Mobile fix in media query below)
   ======================================== */

/* ========================================
   MOBILE STYLES (768px and below) - CONTINUED
   ======================================== */
@media (max-width: 768px) {
    /* ===== INDUSTRIES PAGE - Why Choose Us 1 PER ROW (MOBILE ONLY) ===== */
    .industries-why-grid,
    .industries .grid-3,
    .industries-page .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* ===== PORTFOLIO - 1 per row with VISIBLE image (MOBILE ONLY) ===== */
    .portfolio-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
}

.portfolio-card {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
}

.portfolio-image {
    width: 100% !important;
    height: 280px !important;
    position: relative !important;
    overflow: hidden !important;
}

.portfolio-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.portfolio-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(4px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    opacity: 1 !important;
    text-align: center !important;
    color: #fff !important;
    pointer-events: none !important;
}

.portfolio-overlay h4 {
    color: #fff !important;
    font-size: 1.2rem !important;
    margin-bottom: 4px !important;
    font-weight: 700 !important;
}

.portfolio-overlay p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.9rem !important;
    margin-bottom: 6px !important;
}

.portfolio-category {
    display: inline-block !important;
    background: #FBBF24 !important;
    color: #0F172A !important;
    padding: 4px 14px !important;
    border-radius: 50px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}
    
    /* ===== CLIENTS - 1 per row (MOBILE ONLY) ===== */
    .client-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .client-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        animation: none !important;
    }
    
    .client-card:hover {
        animation: none !important;
        transform: none !important;
    }
    
    .client-logo-wrapper {
        width: 80px !important;
        height: 80px !important;
        padding: 10px !important;
    }
    
    .client-name {
        font-size: 0.95rem !important;
    }
    
    .client-location {
        font-size: 0.75rem !important;
    }
    
    .client-type {
        font-size: 0.8rem !important;
    }
    
    /* ===== CONTACT - Remove Get In Touch on Mobile (unchanged) ===== */
    #contact .contact-info {
        display: none !important;
    }
    
    #contact .contact-form {
        width: 100%;
        padding: 14px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fbff 30%, #f0f7ff 60%, #e8f4ff 100%);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(200, 218, 240, 0.4);
        border-radius: 14px;
    }
    
    #contact .contact-form .form-group {
        margin-bottom: 8px;
    }
    
    #contact .contact-form input,
    #contact .contact-form select,
    #contact .contact-form textarea {
        padding: 6px 8px;
        font-size: 0.75rem;
        width: 100%;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 8px;
        border: 1px solid rgba(203, 213, 225, 0.6);
    }
    
    /* ===== CTA - Mobile (unchanged) ===== */
    #cta {
        padding: 20px 0;
    }
    
    #cta .glass {
        padding: 16px 12px;
        max-width: 100%;
        text-align: center;
    }
    
    #cta h2 {
        font-size: 1.2rem;
    }
    
    #cta p {
        font-size: 0.75rem;
    }
    
    #cta .btn {
        width: auto;
        max-width: 180px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* ===== PREMIUM CARDS - Mobile - 2 Columns (unchanged) ===== */
    #premium-cards {
        padding: 15px 0 !important;
    }
    
    .premium-cards-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .premium-card {
        padding: 10px 6px !important;
        border-radius: 10px !important;
        min-height: auto !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8fbff 30%, #f0f7ff 60%, #e8f4ff 100%) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(200, 218, 240, 0.4) !important;
        animation: none !important;
    }
    
    .premium-card:hover {
        animation: none !important;
        transform: none !important;
    }
    
    .premium-card-inner {
        padding: 0 !important;
    }
    
    .premium-card-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.7rem !important;
        margin-bottom: 4px !important;
    }
    
    .premium-card h3 {
        font-size: 0.6rem !important;
        margin-bottom: 0 !important;
        line-height: 1.2 !important;
    }
    
    .premium-card p {
        display: none !important;
    }
    
    /* ===== SECTION SPACING - Mobile ===== */
    .section-padding {
        padding: 20px 0;
    }
    .section-padding-sm {
        padding: 12px 0;
    }
    
    .bg-light {
        background: transparent !important;
    }
    
    section {
        clear: both;
        position: relative;
        z-index: 1;
    }
    
    #hero + #services {
        padding-top: 16px;
    }
    #services + #about {
        padding-top: 16px;
    }
    #about + #industries {
        padding-top: 16px;
    }
    #industries + #premium-cards {
        padding-top: 16px;
    }
    #premium-cards + #cta {
        padding-top: 16px;
    }
    #cta + #contact {
        padding-top: 16px;
    }
    #contact + #footer {
        margin-top: 0;
    }
}

/* ========================================
   MOBILE SCREEN SIZE VARIANTS
   ======================================== */

/* 431px to 768px - 3 Columns for services/industries (unchanged) */
@media (min-width: 431px) and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }
    .client-grid {
        grid-template-columns: 1fr !important;
    }
    .premium-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .hero-buttons .btn {
        max-width: 150px !important;
        font-size: 0.6rem !important;
        padding: 6px 12px !important;
    }
}

/* 430px and below - 2 Columns for some (unchanged) */
@media (max-width: 430px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }
    .client-grid {
        grid-template-columns: 1fr !important;
    }
    .premium-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .services-grid .service-card:last-child:nth-child(3n+1) {
        grid-column: 2;
    }
    .industries-grid .industry-tag:last-child:nth-child(3n+1) {
        grid-column: 2;
    }
    
    .service-card {
        padding: 8px 4px;
    }
    .service-card h3 {
        font-size: 0.5rem;
    }
    .service-icon {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
    }
    .industry-tag {
        font-size: 0.45rem;
        padding: 4px 2px;
    }
    .premium-card {
        padding: 8px 4px !important;
    }
    .premium-card h3 {
        font-size: 0.55rem !important;
    }
    .premium-card-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.6rem !important;
    }
    .hero-buttons .btn {
        max-width: 130px !important;
        font-size: 0.55rem !important;
        padding: 5px 8px !important;
        min-height: 28px !important;
    }
    .stat-item {
        padding: 8px 4px !important;
    }
    .stat-number {
        font-size: 1.2rem !important;
    }
    .stat-label {
        font-size: 0.5rem !important;
    }
}

/* 360px and below - Extra Small (unchanged) */
@media (max-width: 360px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .premium-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .hero-title {
        font-size: 1.2rem;
    }
    .service-card h3 {
        font-size: 0.45rem;
    }
    .service-icon {
        width: 22px;
        height: 22px;
        font-size: 0.55rem;
    }
    .industry-tag {
        font-size: 0.4rem;
        padding: 3px 2px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }
    .client-grid {
        grid-template-columns: 1fr !important;
    }
    .hero-buttons .btn {
        max-width: 110px !important;
        font-size: 0.5rem !important;
        padding: 4px 6px !important;
        min-height: 24px !important;
    }
    .stat-item {
        padding: 6px 3px !important;
    }
    .stat-number {
        font-size: 1rem !important;
    }
    .stat-label {
        font-size: 0.45rem !important;
    }
}

/* ========================================
   MOBILE FOOTER - (unchanged)
   ======================================== */

@media (max-width: 768px) {
    .desktop-footer {
        display: none !important;
    }
    #footer-desktop {
        display: none !important;
    }
    
    .mobile-footer {
        display: block !important;
    }
    #footer-mobile {
        display: block !important;
        background: #0F172A !important;
        padding: 16px 0 10px !important;
        width: 100% !important;
        margin-top: auto !important;
    }
    
    #footer-mobile .container {
        padding: 0 12px !important;
        max-width: 100% !important;
    }
    
    .mobile-footer-row:first-child {
        display: block !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }
    
    .mobile-footer-row:first-child .mobile-footer-col {
        width: 100% !important;
        text-align: center !important;
    }
    
    .mobile-footer-logo .logo-text {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        color: #FFFFFF !important;
        font-family: 'Playfair Display', Georgia, serif !important;
        display: block !important;
    }
    
    .mobile-footer-logo .logo-sub {
        font-size: 0.4rem !important;
        color: rgba(255,255,255,0.5) !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        display: block !important;
    }
    
    .mobile-footer-desc {
        font-size: 0.55rem !important;
        color: rgba(255,255,255,0.6) !important;
        line-height: 1.4 !important;
        margin: 4px 0 8px !important;
    }
    
    .mobile-footer-social {
        display: flex !important;
        gap: 6px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .mobile-footer-social a {
        width: 28px !important;
        height: 28px !important;
        background: rgba(255,255,255,0.05) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: rgba(255,255,255,0.7) !important;
        font-size: 0.7rem !important;
        text-decoration: none !important;
    }
    
    .mobile-footer-social a:hover {
        background: #3B82F6 !important;
        color: #FFFFFF !important;
    }
    
    .mobile-footer-row:last-child {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        margin-bottom: 0 !important;
    }
    
    .mobile-footer-row:last-child .mobile-footer-col {
        width: 100% !important;
        text-align: center !important;
    }
    
    #footer-mobile h4 {
        font-size: 0.7rem !important;
        font-weight: 600 !important;
        color: #FFFFFF !important;
        margin-bottom: 4px !important;
        text-align: center !important;
    }
    
    #footer-mobile .mobile-footer-col ul {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 4px 8px !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    #footer-mobile .mobile-footer-col ul li {
        display: inline-block !important;
        margin-bottom: 0 !important;
    }
    
    #footer-mobile .mobile-footer-col ul li a {
        font-size: 0.55rem !important;
        color: rgba(255,255,255,0.6) !important;
        text-decoration: none !important;
        white-space: nowrap !important;
    }
    
    .mobile-footer-contact {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 4px 10px !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    .mobile-footer-contact li {
        font-size: 0.55rem !important;
        color: rgba(255,255,255,0.6) !important;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        margin-bottom: 0 !important;
    }
    
    .mobile-footer-contact li i {
        width: 12px !important;
        color: #60A5FA !important;
        font-size: 0.55rem !important;
    }
    
    .mobile-footer-contact li a {
        color: rgba(255,255,255,0.6) !important;
        text-decoration: none !important;
    }
    
    .mobile-footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.05) !important;
        padding-top: 8px !important;
        margin-top: 10px !important;
        text-align: center !important;
    }
    
    .mobile-footer-bottom p {
        font-size: 0.5rem !important;
        color: rgba(255,255,255,0.4) !important;
        margin-bottom: 2px !important;
    }
    
    .mobile-footer-bottom-links {
        display: flex !important;
        gap: 4px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .mobile-footer-bottom-links a {
        font-size: 0.5rem !important;
        color: rgba(255,255,255,0.4) !important;
        text-decoration: none !important;
    }
    
    @media (max-width: 400px) {
        .mobile-footer-row:last-child {
            grid-template-columns: 1fr !important;
            gap: 8px !important;
        }
        #footer-mobile {
            padding: 12px 0 8px !important;
        }
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-down {
    animation: fadeDown 0.8s ease forwards;
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
.fade-left {
    animation: fadeLeft 0.8s ease forwards;
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
.fade-right {
    animation: fadeRight 0.8s ease forwards;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
.zoom-in {
    animation: zoomIn 0.8s ease forwards;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
.float {
    animation: float 4s ease-in-out infinite;
}

.float-delay-1 { animation-delay: 0.5s; }
.float-delay-2 { animation-delay: 1s; }
.float-delay-3 { animation-delay: 1.5s; }

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--primary-color);
    margin-left: 4px;
    animation: blink 0.8s step-end infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.gradient-animate {
    background: linear-gradient(-45deg, #1E40AF, #2563EB, #FBBF24, #EF4444);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
}

.card-hover-lift {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card-hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}

.image-hover-zoom {
    overflow: hidden;
}
.image-hover-zoom img {
    transition: transform 0.6s ease;
}
.image-hover-zoom:hover img {
    transform: scale(1.08);
}

.hover-glow {
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.hover-glow:hover {
    box-shadow: 0 0 30px rgba(30, 64, 175, 0.2);
    transform: translateY(-4px);
}

.page-transition {
    animation: fadeIn 0.6s ease forwards;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }
.stagger-9 { transition-delay: 0.9s; }

/* ========================================
   FOOTER FIX - Attach to Bottom
   ======================================== */
#footer {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    padding-bottom: 20px !important;
    width: 100%;
}

body > *:last-child {
    margin-bottom: 0 !important;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* ========================================
   NAVIGATION FIXES
   ======================================== */
.nav-menu {
    list-style: none !important;
}
.nav-menu li {
    list-style: none !important;
}
.nav-menu li::marker {
    display: none !important;
}
/* ========================================
   CLIENT LOGOS - MARQUEE SECTION (FINAL FIX)
   ======================================== */

#client-logos {
    padding: 60px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.client-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.client-marquee-wrapper::before,
.client-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.client-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF, transparent);
}

.client-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #FFFFFF, transparent);
}

.client-marquee-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    width: max-content !important;
    animation: marqueeScroll 20s linear infinite !important;
    -webkit-animation: marqueeScroll 20s linear infinite !important;
}

.client-marquee-slide {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-shrink: 0 !important;
}

.client-logo-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 30%, #f0f7ff 60%, #e8f4ff 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 218, 240, 0.4);
    border-radius: 14px;
    padding: 12px 20px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.04);
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 120px;
    min-height: 64px;
    transition: all 0.3s ease;
    flex-shrink: 0 !important;
}

.client-logo-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.08);
    border-color: rgba(147, 197, 253, 0.5);
    transform: scale(1.06);
}

.client-logo-card img {
    height: 36px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
    filter: none !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.client-logo-card:hover img {
    filter: none !important;
    opacity: 1 !important;
    transform: scale(1.05);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-marquee-wrapper:hover .client-marquee-track {
    animation-play-state: paused !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .client-logo-card { min-width: 100px; min-height: 54px; padding: 10px 16px; }
    .client-logo-card img { height: 30px; max-width: 90px; }
    .client-marquee-slide { gap: 16px; }
    .client-marquee-track { gap: 16px; }
}

@media (max-width: 768px) {
    .client-marquee-wrapper::before,
    .client-marquee-wrapper::after { width: 50px; }
    .client-logo-card { min-width: 80px; min-height: 44px; padding: 8px 12px; border-radius: 12px; }
    .client-logo-card img { height: 24px; max-width: 70px; }
    .client-marquee-slide { gap: 12px; }
    .client-marquee-track { gap: 12px; animation-duration: 16s; }
    #client-logos { padding: 40px 0; }
}

@media (max-width: 480px) {
    .client-marquee-wrapper::before,
    .client-marquee-wrapper::after { width: 30px; }
    .client-logo-card { min-width: 65px; min-height: 36px; padding: 6px 10px; border-radius: 10px; }
    .client-logo-card img { height: 18px; max-width: 55px; }
    .client-marquee-slide { gap: 8px; }
    .client-marquee-track { gap: 8px; animation-duration: 12s; }
    #client-logos { padding: 30px 0; }
}
/* ========================================
   FINAL FORCE - OVERRIDE EVERYTHING
   ======================================== */

.client-marquee-track {
    animation: marqueeScroll 20s linear infinite !important;
    -webkit-animation: marqueeScroll 20s linear infinite !important;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* ========================================
   PORTFOLIO IMAGE FIX - NO CROPPING
   ======================================== */

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f8faff;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;  /* Changed from cover to contain */
    transition: transform 0.6s ease;
    background: #f8faff;
    padding: 10px;
}

/* For desktop hover zoom - keep but don't crop */
.portfolio-image:hover img {
    transform: scale(1.05);
}

/* Overlay stays the same */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    color: #fff;
    pointer-events: none;
}

.portfolio-image:hover .portfolio-overlay {
    opacity: 1;
}
/* ========================================
   PHOTOGRAPHY - FULL SCREEN POPUP
   ======================================== */

/* Photography Grid */
.photography-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.photography-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #f8faff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photography-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

.photography-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photography-item:hover img {
    transform: scale(1.05);
}

/* ===== POPUP OVERLAY ===== */
.photo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.photo-popup.active {
    display: flex;
}

.photo-popup img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.photo-popup .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: none;
    border: none;
    z-index: 10000;
}

.photo-popup .close-btn:hover {
    transform: rotate(90deg);
}

.photo-popup .photo-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    text-align: center;
    background: rgba(0,0,0,0.5);
    padding: 8px 24px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .photography-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .photography-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .photo-popup {
        padding: 20px;
    }
    .photo-popup img {
        max-width: 95%;
        max-height: 85%;
    }
    .photo-popup .close-btn {
        top: 10px;
        right: 16px;
        font-size: 2rem;
    }
    .photo-popup .photo-caption {
        font-size: 0.8rem;
        padding: 6px 16px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .photography-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}
/* ========================================
   HOME CONTACT SECTION - FORCE FIX
   ======================================== */

.home-contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    align-items: stretch !important;
}

.home-contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 30%, #f0f7ff 60%, #e8f4ff 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(200, 218, 240, 0.4) !important;
    border-radius: 24px !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.04) !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 540px !important;
    transition: all 0.4s ease !important;
}

.home-contact-card:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.08) !important;
    border-color: rgba(147, 197, 253, 0.5) !important;
    transform: translateY(-4px) !important;
}

.home-contact-card-inner {
    padding: 32px 28px !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.home-contact-card-header {
    text-align: center !important;
    margin-bottom: 18px !important;
}

.home-contact-card-icon {
    width: 52px !important;
    height: 52px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(219, 234, 254, 0.5)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 10px !important;
    font-size: 1.5rem !important;
    color: #3B82F6 !important;
    border: 1px solid rgba(191, 219, 254, 0.4) !important;
}

.home-contact-card-header h3 {
    font-size: 1.3rem !important;
    color: #0F172A !important;
    margin-bottom: 0 !important;
}

.home-form-card .form-group {
    margin-bottom: 12px !important;
}

.home-form-card input,
.home-form-card select,
.home-form-card textarea {
    width: 100% !important;
    padding: 11px 16px !important;
    border: 1px solid rgba(203, 213, 225, 0.6) !important;
    border-radius: 12px !important;
    font-family: var(--font-primary) !important;
    font-size: 0.92rem !important;
    transition: all 0.3s ease !important;
    background: rgba(255, 255, 255, 0.7) !important;
    color: #0F172A !important;
}

.home-form-card input:focus,
.home-form-card select:focus,
.home-form-card textarea:focus {
    outline: none !important;
    border-color: #93C5FD !important;
    box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.2) !important;
    background: rgba(255, 255, 255, 0.9) !important;
}

.home-form-card textarea {
    resize: vertical !important;
    min-height: 90px !important;
}

.home-submit-btn,
.home-view-btn {
    width: 100% !important;
    padding: 13px 24px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    text-align: center !important;
    justify-content: center !important;
    display: inline-flex !important;
    align-items: center !important;
}

.home-contact-info-items {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.home-contact-info-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 8px 14px !important;
    background: rgba(255, 255, 255, 0.4) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(203, 213, 225, 0.3) !important;
    transition: all 0.3s ease !important;
}

.home-contact-info-item:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(147, 197, 253, 0.4) !important;
}

.home-contact-info-icon {
    width: 36px !important;
    height: 36px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(219, 234, 254, 0.5)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #3B82F6 !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(191, 219, 254, 0.3) !important;
}

.home-contact-info-label {
    font-size: 0.6rem !important;
    font-weight: 600 !important;
    color: #94A3B8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.home-contact-info-text a,
.home-contact-info-text span {
    font-size: 0.9rem !important;
    color: #0F172A !important;
    text-decoration: none !important;
}

.home-contact-info-text a:hover {
    color: #3B82F6 !important;
}

.home-location-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 30%, #f0f7ff 60%, #e8f4ff 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(200, 218, 240, 0.4) !important;
    border-radius: 24px !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.04) !important;
    margin-top: 30px !important;
    transition: all 0.4s ease !important;
}

.home-location-card:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.08) !important;
    border-color: rgba(147, 197, 253, 0.5) !important;
    transform: translateY(-4px) !important;
}

.home-location-card-inner {
    padding: 20px 28px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.home-location-card-icon {
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(219, 234, 254, 0.5)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.4rem !important;
    color: #3B82F6 !important;
    border: 1px solid rgba(191, 219, 254, 0.4) !important;
    flex-shrink: 0 !important;
}

.home-location-card-content {
    flex: 1 !important;
}

.home-location-card-content h4 {
    font-size: 1.1rem !important;
    margin-bottom: 2px !important;
    color: #0F172A !important;
}

.home-location-card-content p {
    font-size: 0.85rem !important;
    color: #64748B !important;
    margin: 0 !important;
}

.home-location-card-inner .btn {
    flex-shrink: 0 !important;
    padding: 11px 28px !important;
    font-size: 0.9rem !important;
}

/* ========================================
   HOME CONTACT - MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .home-contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .home-contact-card {
        min-height: auto !important;
    }
    .home-contact-card-inner {
        padding: 24px 18px !important;
    }
    .home-location-card-inner {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px 16px !important;
        gap: 12px !important;
    }
    .home-location-card-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    .home-location-card-content h4 {
        font-size: 1rem !important;
    }
    .home-location-card-content p {
        font-size: 0.8rem !important;
    }
    .home-location-card-inner .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}
/* ========================================
   DISABLE ANIMATIONS ONLY - KEEP EVERYTHING ELSE
   ======================================== */

/* --- KEEP MARQUEE RUNNING --- */
.client-marquee-track {
    animation: marqueeScroll 20s linear infinite !important;
}
.client-marquee-wrapper:hover .client-marquee-track {
    animation-play-state: paused !important;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- DISABLE CARD FLOATING --- */
.premium-card,
.client-card,
.portfolio-card,
.service-card {
    animation: none !important;
    transform: none !important;
}
.premium-card:hover,
.client-card:hover,
.portfolio-card:hover,
.service-card:hover {
    animation: none !important;
    transform: none !important;
}

/* --- DISABLE REVEAL ANIMATIONS --- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* --- DISABLE HOVER EFFECTS --- */
.premium-card:hover .premium-card-icon,
.client-card:hover .client-logo-wrapper,
.service-card:hover .service-icon {
    transform: none !important;
    transition: none !important;
}

/* --- DISABLE ALL OTHER ANIMATIONS --- */
.fade-up,
.fade-in,
.fade-left,
.fade-right,
.zoom-in,
.float,
.float-delay-1,
.float-delay-2,
.float-delay-3,
.counter,
.gradient-animate,
.typing-cursor {
    animation: none !important;
}

#page-loader {
    display: none !important;
}

.btn-ripple {
    overflow: visible !important;
}
.btn-ripple::before,
.btn-ripple::after {
    display: none !important;
}

.image-hover-zoom:hover img {
    transform: none !important;
}

html {
    scroll-behavior: auto !important;
}
