/* ===================================
   SLN SOFTWARES - WEBSITE CLONE CSS
   Complete Frontend Copy
   =================================== */

/* === GOOGLE FONTS IMPORT === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* === CSS RESET & ROOT VARIABLES === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1A6ABE;
    --primary-light: #4A90E2;
    --primary-dark: #0D4A85;
    --accent: #1A6ABE;
    --accent2: #145899;
    --white: #ffffff;
    --light-bg: #f4f7ff;
    --dark-bg: #0a1628;
    --text-dark: #1a2340;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --gradient: linear-gradient(135deg, #1A6ABE 0%, #4A90E2 100%);
    --gradient-blue: linear-gradient(135deg, #1A6ABE 0%, #4A90E2 100%);
    --shadow: 0 4px 20px rgba(26, 106, 190, 0.12);
    --shadow-lg: 0 10px 40px rgba(10, 36, 119, 0.2);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img { max-width: 100%; height: auto; display: block; }

.container-fluid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
        color: #ff5600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   HEADER TOP BAR
   ========================================== */
.header-top-bar {
    background: var(--gradient);
    color: var(--white);
    font-size: 13px;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
}

.htb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}

.htb-links, .htb-social {
    display: flex;
    align-items: center;
    gap: 0;
}

.htb-links li a,
.htb-social li a {
    color: rgba(255,255,255,0.9);
    padding: 0 12px;
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 40px;
    transition: var(--transition);
}

.htb-links li a:hover,
.htb-social li a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.sep {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    padding: 0 5px;
}

.htb-links li a strong { font-weight: 600; }

.badge-hot {
    background: var(--white);
    color: var(--accent);
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.htb-social li a { padding: 0 10px; font-size: 13px; }
.social-fb:hover { color: #1877f2 !important; }
.social-tw:hover { color: #000 !important; }
.social-li:hover { color: #0a66c2 !important; }
.social-ig:hover { color: #e1306c !important; }

.emp-login-btn {
    background: rgba(255,255,255,0.2) !important;
    font-weight: 500 !important;
}

.emp-login-btn:hover {
    background: rgba(255,255,255,0.35) !important;
}

/* ==========================================
   MAIN HEADER / NAVBAR
   ========================================== */
.main-header {
    position: fixed;
    top: 40px;
    left: 0; right: 0;
    z-index: 999;
    background: rgba(10, 36, 119, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(10, 36, 119, 0.3);
}

.main-header.scrolled {
    background: rgba(10, 36, 119, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.logo-wrap a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 44px;
    width: auto;
}

.logo-text-fallback {
    display: none;
    align-items: center;
    gap: 2px;
}

.logo-sln {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

.logo-soft {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
}

/* Desktop Nav */
.desktop-nav { display: flex; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
    padding: 0 16px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px 2px 0 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .arrow,
.has-megamenu:hover .arrow {
    transform: rotate(180deg);
}

.nav-cta {
    background: var(--gradient) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 6px !important;
    height: auto !important;
    font-weight: 600 !important;
    margin-left: 8px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5) !important;
}

/* Dropdown Menu */
.has-dropdown, .has-megamenu {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    overflow: hidden;
}

.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.dropdown-menu-custom li:last-child a { border-bottom: none; }

.dropdown-menu-custom li a:hover {
    background: var(--light-bg);
    color: var(--primary);
    padding-left: 26px;
}

/* Mega Menu */
.megamenu {
    position: absolute;
    top: 100%;
    left: -150px;
    width: 800px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    z-index: 200;
}

.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.mega-col {
    padding: 16px 20px;
    border-right: 1px solid var(--border);
}

.mega-col:last-child { border-right: none; }

.mega-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--accent);
}

.mega-col ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    padding: 3px 0;
    font-weight: 500;
    transition: var(--transition);
}

.mega-col ul li a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.mega-col ul li a i { color: var(--accent); font-size: 11px; }

.mega-cta { background: var(--light-bg); }

.mega-cta-box {
    text-align: center;
    padding: 10px 0;
}

.mega-cta-box i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.mega-cta-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.mega-cta-box p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.btn-call, .btn-quote {
    display: block;
    text-align: center;
    padding: 9px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.btn-call {
    background: var(--primary);
    color: var(--white);
}

.btn-quote {
    background: var(--gradient);
    color: var(--white);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    background: var(--primary-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-nav.open {
    max-height: 600px;
    overflow-y: auto;
}

.mobile-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu li a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.mob-arrow { font-size: 12px; }

.mob-submenu {
    background: rgba(0,0,0,0.3);
    display: none;
}

.mob-submenu.open { display: block; }

.mob-submenu li a {
    padding-left: 40px !important;
    font-size: 13px !important;
    color: rgba(255,255,255,0.65) !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 640px;
    max-height: 900px;
    overflow: hidden;
    margin-top: 86px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 50, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 30, 99, 0.9);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.text-gradient {
    background: linear-gradient(90deg, #60a5fa, #93c5fd, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    transition: var(--transition);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.55);
    color: var(--white);
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-outline-hero:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
}

.trust-item .fa-star { color: #fbbf24; font-size: 12px; }

.trust-sep { color: rgba(255,255,255,0.4); }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 380px;
}

.hero-circle-anim {
    position: relative;
    width: 220px;
    height: 220px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    animation: spin 8s linear infinite;
}

.c1 { width: 100%; height: 100%; top: 0; left: 0; animation-duration: 10s; }
.c2 { width: 75%; height: 75%; top: 12.5%; left: 12.5%; border-color: rgba(233,30,99,0.4); animation-duration: 7s; animation-direction: reverse; }
.c3 { width: 50%; height: 50%; top: 25%; left: 25%; border-color: rgba(255,255,255,0.4); animation-duration: 5s; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-icon-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
}

.hero-card-float {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: floatCard 3s ease-in-out infinite;
}

.hero-card-float i { font-size: 20px; color: #60a5fa; }

.card1 { top: 20px; right: 40px; animation-delay: 0s; }
.card2 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 0.5s; }
.card3 { bottom: 30px; right: 20px; animation-delay: 1s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.card2 { animation-name: floatCard2; }

@keyframes floatCard2 {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(calc(-50% - 8px)) translateX(0); }
}

/* Slider Controls */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-prev:hover, .slider-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--light-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-blue);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover { color: var(--accent); gap: 10px; }

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
    background: linear-gradient(135deg, #0a2477, #1565C0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-img-wrap.img-fallback::before {
    content: '\f0c0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 100px;
    color: rgba(255,255,255,0.3);
}

.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
    border: 4px solid var(--white);
}

.about-exp-badge .years {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.about-exp-badge .label {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
}

.about-img-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(20px);
}

.about-text { padding-right: 20px; }

.about-text h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 16px;
    margin-top: 12px;
}

.about-lead {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}

.ab-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
}

.ab-feat i { color: #10b981; font-size: 15px; flex-shrink: 0; }

.about-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-blue);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(10, 36, 119, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 36, 119, 0.4);
    color: var(--white);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 11px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-blue);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    filter: blur(60px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-icon {
    font-size: 32px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.stat-number {
    display: inline;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-plus {
    display: inline;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    font-weight: 500;
}

/* ==========================================
   WHY SECTION
   ========================================== */
.why-section {
    padding: 100px 0;
    background: var(--primary-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-6px);
}

.why-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.35);
    transition: var(--transition);
}

.why-card:hover .why-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* ==========================================
   SERVICES DETAILED (TABS)
   ========================================== */
.services-detailed {
    padding: 100px 0;
    background: var(--white);
}

.services-tabs { margin-top: 40px; }

.tab-btns {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 40px;
    max-width: 100%; flex-wrap: wrap;
}

.tab-btn {
    flex: 1;
    padding: 14px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    font-family: var(--font-main);
    border-right: 1px solid var(--border);
}

.tab-btn:last-child { border-right: none; }

.tab-btn:hover { background: var(--light-bg); color: var(--primary); }

.tab-btn.active {
    background: var(--gradient-blue);
    color: var(--white);
}

.tab-content { display: none; animation: fadeIn 0.3s ease; }
.tab-content.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-text h3 {
    font-size: 23px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.tab-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.tab-list {
    margin-bottom: 32px;
}

.tab-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

.tab-list li:last-child { border-bottom: none; }

.tab-list li i { color: #10b981; font-size: 13px; }

.tab-img-placeholder {
    height: 350px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 72px;
    color: rgba(255,255,255,0.8);
    font-weight: 700;
}

.tab-img-placeholder span {
    font-size: 18px;
    letter-spacing: 1px;
}

.software-bg { background: url("images/software_bg.jpg") center/cover; }
.web-bg { background: url("images/web_bg.jpg") center/cover; }
.mobile-bg { background: url("images/mobile_bg.jpg") center/cover; }
.hardware-bg { background: url("images/hardware_bg.jpg") center/cover; }

/* ==========================================
   PORTFOLIO SECTION
   ========================================== */
.portfolio-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.portfolio-filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 9px 22px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    font-family: var(--font-main);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gradient-blue);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(10, 36, 119, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: 260px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    transition: transform 0.4s ease;
}

.web-proj { background: url("images/port_web.jpg") center/cover; }
.ecomm-proj { background: url("images/port_ecomm.jpg") center/cover; }
.soft-proj { background: url("images/port_soft.jpg") center/cover; }
.mob-proj { background: url("images/port_mobile.jpg") center/cover; }
.web-proj2 { background: url("images/port_gym.jpg") center/cover; }
.soft-proj2 { background: url("images/port_school.jpg") center/cover; }

.portfolio-img i { display: none; }

.portfolio-item:hover .portfolio-img {
    transform: scale(1.06);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 119, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    text-align: center;
    padding: 24px;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.portfolio-overlay span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.port-link {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.port-link:hover { transform: scale(1.15); }

.portfolio-cta {
    text-align: center;
    margin-top: 48px;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-section {
    padding: 100px 0;
    background: var(--primary);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.step-num {
    font-size: 48px;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    margin-bottom: -10px;
    font-family: 'Outfit', sans-serif;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    margin: 0 auto 16px;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--gradient);
    border-color: transparent;
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 60px;
    color: rgba(255,255,255,0.3);
    font-size: 20px;
    flex-shrink: 0;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 28px;
    transition: transform 0.4s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 19px);
    background: var(--light-bg);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    background: var(--white);
}

.test-stars { margin-bottom: 16px; }
.test-stars i { color: #fbbf24; font-size: 14px; }

.testimonial-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.test-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.test-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.test-author span {
    font-size: 12px;
    color: var(--text-muted);
}

.test-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.test-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.test-nav button:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==========================================
   TECH SECTION
   ========================================== */
.tech-section {
    padding: 80px 0;
    background: var(--light-bg);
    overflow: hidden;
}

.tech-section .section-header { margin-bottom: 40px; }

.tech-marquee {
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.tech-track {
    display: flex;
    gap: 0;
    animation: marquee 25s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    border-right: 1px solid var(--border);
    min-width: 100px;
}

.tech-item i {
    font-size: 32px;
    color: var(--primary);
}

.tech-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233,30,99,0.15), transparent);
    border-radius: 50%;
    filter: blur(80px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.pricing-card.popular {
    background: var(--gradient-blue);
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(10, 36, 119, 0.5);
}

.pricing-card.popular:hover { transform: scale(1.05) translateY(-8px); }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.price {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.price .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    vertical-align: top;
    line-height: 1.5;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
}

.price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    margin-bottom: 30px;
    line-height: 1;
}

.price .currency { font-size: 24px; font-weight: 800; color: var(--white); line-height: 1.4; }
.price > span:nth-child(2) { font-size: 48px; font-weight: 800; color: var(--white); }
.price .period { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i { font-size: 13px; }
.pricing-features li .fa-check { color: #10b981; }
.pricing-features li .fa-times { color: rgba(255,255,255,0.3); }
.pricing-features li.disabled { opacity: 0.4; }

.btn-pricing {
    display: block;
    padding: 13px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    transition: var(--transition);
}

.btn-pricing:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.popular-btn {
    background: var(--gradient);
    border-color: transparent;
}

.popular-btn:hover {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-of-type { border-bottom: none; }

.ci-icon {
    width: 44px;
    height: 44px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.ci-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.ci-text p, .ci-text a {
    font-size: 13.5px;
    color: var(--text-muted);
}

.ci-text a:hover { color: var(--primary); }

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 15px;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--gradient-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-wrap {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full { grid-column: span 2; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 36, 119, 0.1);
}

.btn-submit {
    background: var(--gradient);
    color: var(--white);
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.45);
}

/* ==========================================
   MAP SECTION
   ========================================== */
.map-section {
    height: 350px;
    overflow: hidden;
}

.map-placeholder { height: 100%; }
.map-placeholder iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================
   FLOATING WHATSAPP
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    animation: whatsappPulse 2s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
    color: var(--white);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 44px;
    height: 44px;
    background: var(--gradient-blue);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: #070f20;
}

.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
}

.footer-about .footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo .logo-sln { color: var(--white); }
.footer-logo .logo-soft { color: rgba(255,255,255,0.5); font-size: 20px; font-weight: 400; }

.footer-about p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-rating .stars i { color: #fbbf24; font-size: 12px; }

.footer-rating span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.footer-col h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-links li a i {
    font-size: 11px;
    color: var(--accent);
}

.footer-links li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.5);
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255,255,255,0.5);
}

.footer-contact li a:hover { color: var(--white); }

.footer-newsletter {
    margin-top: 24px;
}

.footer-newsletter h6 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    color: var(--white);
    font-size: 13px;
    outline: none;
    font-family: var(--font-main);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-form button {
    padding: 10px 16px;
    background: var(--gradient);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.newsletter-form button:hover { opacity: 0.85; }

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal li a {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    transition: var(--transition);
}

.footer-legal li a:hover { color: var(--white); }

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .megamenu { width: 680px; left: 0; }
    .megamenu-inner { grid-template-columns: repeat(3, 1fr); }
    .mega-cta { display: none; }
}

@media (max-width: 991px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-nav { display: block; }
    .header-top-bar { display: none; }
    .main-header { top: 0; }
    .hero-section { margin-top: 70px; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-text { padding-right: 0; }
    .tab-grid { grid-template-columns: 1fr; }
    .tab-img { margin-top: 30px; display: block; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { flex-wrap: wrap; gap: 30px; }
    .process-arrow { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-8px); }
    .testimonial-card { min-width: calc(50% - 14px); }
}

@media (max-width: 767px) {
    .about-features { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .testimonial-card { min-width: 100%; }
    .hero-slide { align-items: flex-end; padding-bottom: 60px; }
    .tab-btns { flex-wrap: wrap; border-radius: 10px; }
    .tab-btn { flex: none; width: 50%; }
}

@media (max-width: 480px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 28px; }
    .hero-btns { flex-direction: column; }
    .btn-primary-hero, .btn-outline-hero { text-align: center; justify-content: center; }
    .contact-form-wrap { padding: 24px 20px; }
}

/* ==========================================
   NEW CUSTOM SECTIONS (From Image)
   ========================================== */

/* Typography & Titles */
.section-tag-new {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #0dcaf0;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title-new {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #1a2340;
    line-height: 1.3;
    margin-bottom: 40px;
}

/* 1. OUR SOLUTIONS SECTION */
.solutions-section {
    padding: 80px 0;
    background-color: #f4f7ff;
}
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.solution-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.solution-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.sol-icon-main {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.solution-card:nth-child(2) .sol-icon-main {
    background: #ecfdf5;
    color: #10b981;
}
.sol-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}
.sol-desc {
    font-size: 14px;
    color: #6b7280;
}
.sol-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}
.sol-feat-item {
    text-align: center;
}
.sol-feat-item i {
    font-size: 24px;
    color: #3b82f6;
    margin-bottom: 10px;
    display: block;
}
.sol-feat-item span {
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    line-height: 1.3;
    display: block;
}
.sol-footer {
    text-align: center;
}
.sol-link {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}
.sol-link:hover {
    gap: 10px;
}

/* 2. FEATURED PRODUCTS SECTION */
.featured-products {
    padding: 80px 0;
    background-color: #061550;
}
.products-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0px;
}
.products-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: hidden;
    flex: 1;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.product-card img {
    width: 100%; 
    height: 180px; 
    object-fit: fill;
    background-color: #f1f5f9;
    padding: 0px;
    border-bottom: 4px solid var(--accent);
}
.prod-info {
    padding: 20px;
}
.prod-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2340;
    margin-bottom: 8px;
}
.prod-info p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.5;
}
.prod-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}
.prod-link:hover {
    color: var(--primary);
}
.prod-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}
.prod-nav:hover {
    background: #fff;
    color: #061550;
}

/* 3. INDUSTRIES WE SERVE SECTION */
.industries-section {
    padding: 80px 0;
    background: #fff;
}
.industries-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.industry-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}
.ind-icon {
    width: 70px;
    height: 70px;
    background: #f4f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #3b82f6;
    margin: 0 auto 15px;
    transition: 0.3s;
}
.industry-item:hover .ind-icon {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-5px);
}
.industry-item span {
    font-size: 13px;
    font-weight: 600;
    color: #1a2340;
    display: block;
}

/* 4. WHY CHOOSE US NEW */
.why-choose-new {
    padding: 80px 0;
    background: #fff;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.why-desc {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}
.why-list-check {
    margin-bottom: 30px;
}
.why-list-check li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1a2340;
}
.btn-know-more {
    background: #1e3a8a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.btn-know-more:hover {
    background: #0a2477;
    color: #fff;
    gap: 12px;
}
.why-img-col {
    position: relative;
    text-align: center;
}
.circle-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #eff6ff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.why-building-img {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 320px;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.why-features-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-feat-box {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f3f4f6;
}
.wfb-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.bg-light-green { background: #ecfdf5; }
.bg-light-blue { background: #eff6ff; }
.bg-light-orange { background: #fff7ed; }
.bg-light-purple { background: #f5f3ff; }
.why-feat-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a2340;
    margin-bottom: 5px;
}
.why-feat-box p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

/* Utilities */
.text-success { color: #10b981 !important; }
.text-info { color: #0dcaf0 !important; }
.text-warning { color: #f59e0b !important; }
.text-purple { color: #8b5cf6 !important; }
.text-primary { color: #3b82f6 !important; }

@media (max-width: 991px) {
    .solutions-grid { grid-template-columns: 1fr; }
    .products-track { grid-template-columns: repeat(2, 1fr); }
    .why-choose-grid { grid-template-columns: 1fr; text-align: center; }
    .why-list-check li { justify-content: center; }
}
@media (max-width: 767px) {
    .products-track { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}


/* Industries Slider Styles */
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ind-item { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 140px; margin: 0 15px; gap: 15px; cursor: pointer; vertical-align: top; }
.ind-item i { width: 70px; height: 70px; border-radius: 50%; background: #eef2ff; color: #4f46e5; display: flex; align-items: center; justify-content: center; font-size: 28px; transition: all 0.3s ease; }
    color: var(--primary);
}
.prod-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}
.prod-nav:hover {
    background: #fff;
    color: #061550;
}

/* 3. INDUSTRIES WE SERVE SECTION */
.industries-section {
    padding: 80px 0;
    background: #fff;
}
.industries-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.industry-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}
.ind-icon {
    width: 70px;
    height: 70px;
    background: #f4f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #3b82f6;
    margin: 0 auto 15px;
    transition: 0.3s;
}
.industry-item:hover .ind-icon {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-5px);
}
.industry-item span {
    font-size: 13px;
    font-weight: 600;
    color: #1a2340;
    display: block;
}

/* 4. WHY CHOOSE US NEW */
.why-choose-new {
    padding: 80px 0;
    background: #fff;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.why-desc {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}
.why-list-check {
    margin-bottom: 30px;
}
.why-list-check li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1a2340;
}
.btn-know-more {
    background: #1e3a8a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.btn-know-more:hover {
    background: #0a2477;
    color: #fff;
    gap: 12px;
}
.why-img-col {
    position: relative;
    text-align: center;
}
.circle-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #eff6ff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.why-building-img {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 320px;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.why-features-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-feat-box {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f3f4f6;
}
.wfb-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.bg-light-green { background: #ecfdf5; }
.bg-light-blue { background: #eff6ff; }
.bg-light-orange { background: #fff7ed; }
.bg-light-purple { background: #f5f3ff; }
.why-feat-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a2340;
    margin-bottom: 5px;
}
.why-feat-box p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

/* Utilities */
.text-success { color: #10b981 !important; }
.text-info { color: #0dcaf0 !important; }
.text-warning { color: #f59e0b !important; }
.text-purple { color: #8b5cf6 !important; }
.text-primary { color: #3b82f6 !important; }

@media (max-width: 991px) {
    .solutions-grid { grid-template-columns: 1fr; }
    .products-track { grid-template-columns: repeat(2, 1fr); }
    .why-choose-grid { grid-template-columns: 1fr; text-align: center; }
    .why-list-check li { justify-content: center; }
}
@media (max-width: 767px) {
    .products-track { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}


/* Industries Slider Styles */
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ind-item { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 140px; margin: 0 15px; gap: 15px; cursor: pointer; vertical-align: top; }
.ind-item i { width: 70px; height: 70px; border-radius: 50%; background: #eef2ff; color: #4f46e5; display: flex; align-items: center; justify-content: center; font-size: 28px; transition: all 0.3s ease; }
.ind-item:hover i { background: #4f46e5; color: #fff; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(79,70,229,0.2); }
.ind-item span { font-size: 14px; font-weight: 600; color: #1e293b; white-space: normal; text-align: center; }
.ind-track:hover { animation-play-state: paused !important; }
.area-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: #cbd5e1 !important; }

/* Mobile Premium Footer & Slider Animation Fix */
.ind-track { animation: scroll-left 30s linear infinite; }
@media (max-width: 480px) {
  .main-footer { text-align: left; padding-top: 40px; }
  .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-col:nth-child(1) { grid-column: 1 / -1; }
  .footer-col:nth-child(2) { grid-column: 1 / 2; }
  .footer-col:nth-child(3) { grid-column: 2 / 3; }
  .footer-col:nth-child(4) { grid-column: 1 / -1; margin-top: 20px; }
  .footer-col h5::after { left: 0; transform: none; }
  .footer-links li a { justify-content: flex-start; transform: none !important; font-size: 13px; }
  .footer-links li a:hover { transform: translateX(4px) !important; color: #fff; }
  .footer-contact li { justify-content: flex-start; text-align: left; flex-direction: row; align-items: flex-start; gap: 10px; }
  .footer-social { justify-content: flex-start; margin-top: 20px; }
  .footer-logo { display: flex; justify-content: flex-start; }
  .footer-bottom-inner { font-size: 13px; flex-direction: column; text-align: center; }
}

.hero-center-img { width: 100px; height: 100px; object-fit: cover; border-radius: 50%; position: relative; z-index: 10; border: 4px solid rgba(255, 255, 255, 0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }


/* New 2-Column Mobile Nav */
.mob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; }
.mob-col h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.mob-list { list-style: none; padding: 0; margin: 0; }
.mob-list li { margin-bottom: 14px; }
.mob-list li a { color: rgba(255,255,255,0.75); font-size: 14px; display: flex; align-items: center; gap: 8px; text-decoration: none; transition: all 0.3s ease; }
.mob-list li a i { color: var(--accent); font-size: 12px; }
.mob-list li a:hover { color: var(--white); transform: translateX(3px); }

/* =========================================================================
   COMPREHENSIVE RESPONSIVE CSS (ADDED FOR ALL DEVICES)
   ========================================================================= */

/* --- TABLETS & SMALL DESKTOPS (max-width: 1100px) --- */
@media (max-width: 1100px) {
    .container, .container-fluid {
        padding: 0 15px;
    }
    .premium-grid-3, .services-grid, .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .process-grid-4, .stats-grid, .products-track {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-premium {
        gap: 30px;
    }
    .inner-sec {
        padding: 60px 15px;
    }
}

/* --- TABLETS (PORTRAIT) (max-width: 991px) --- */
@media (max-width: 991px) {
    /* Header & Nav */
    .desktop-nav, .header-top-bar { display: none !important; }
    .mobile-toggle, .mobile-nav { display: block; }
    
    .hero-section {
        margin-top: 60px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        display: none;
    }
    .about-grid, .split-premium, .split-premium.reverse, .alt-row, .alt-row.reverse {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .split-image-wrap .main-placeholder, .alt-image {
        height: 300px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 30px;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- LARGE PHONES (max-width: 767px) --- */
@media (max-width: 767px) {
    .premium-grid-3, .services-grid, .why-grid, .process-grid-4, .stats-grid, .products-track {
        grid-template-columns: 1fr;
    }
  
    .timeline-wrap::after {
        left: 20px;
    }
    .timeline-step {
        width: 100%;
        padding-left: 50px;
        padding-right: 15px;
        text-align: left !important;
        left: 0 !important;
    }
    .timeline-step::after {
        left: 10px !important;
    }
    .cta-premium {
        padding: 40px 20px;
    }
    .cta-premium h2 {
        font-size: 28px;
    }
    .premium-banner {
        padding: 100px 15px 50px;
    }
    .premium-banner h1 {
        font-size: 32px;
    }
    .form-row, .footer-grid {
        grid-template-columns: 1fr;
    }
    .mob-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .review-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SMALL PHONES (max-width: 480px) --- */
@media (max-width: 480px) {
 
    .hero-text h1 {
        font-size: 28px;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary-hero, .btn-outline-hero, .btn-glow {
        text-align: center;
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }
    .impact-stats {
        grid-template-columns: 1fr;
    }
    .split-image-wrap .main-placeholder, .alt-image {
        height: 220px;
    }
    .contact-form-wrap, .login-container {
        padding: 20px 15px;
    }
    .sec-head h2 {
        font-size: 28px;
    }
    /* Fix for Login page overlapping issue */
    .login-container {
        margin-top: 100px !important;
        padding-bottom: 40px !important;
    }
    body {
        font-size: 14px; /* Slightly smaller text on mobile */
    }
}

/* Universal Fixes */
img {
    max-width: 100%;
    height: auto;
}
.float-card {
    /* Ensure floating cards on images don't overflow on small screens */
    max-width: 90%;
    bottom: -15px !important;
    left: 5% !important;
    padding: 10px 15px !important;
}
.float-card h4 {
    font-size: 16px !important;
}

