/* ========================================
   VISAPAYEE LIMITED - STYLESHEET
   ======================================== */

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #0ea5e9;
    --dark: #0f172a;
    --dark-secondary: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 72px;
    padding: 8px 0;
}

.logo img {
    height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    display: block;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    padding-top: 72px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    max-width: 1200px;
    width: 100%;
    padding: 0 48px;
    margin: 0 auto;
    color: var(--white);
    z-index: 2;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.slide-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 span {
    color: var(--accent);
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.slide-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.slide-buttons .btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot.active,
.dot:hover {
    background: var(--white);
    border-color: var(--white);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-prev {
    left: 24px;
}

.slider-next {
    right: 24px;
}

.hero-stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 32px 0;
}

.hero-stats-bar .hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.hero-stats-bar .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stats-bar .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stats-bar .stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
    background: var(--gray-50);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.product-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius);
    margin: 0 auto 20px;
}

.product-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.product-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.product-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.product-link:hover i {
    transform: translateX(4px);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0ea5e9 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

.service-content {
    padding: 28px 24px;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.service-features i {
    color: var(--success);
    font-size: 0.8rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.about-content p {
    font-size: 1.05rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-values {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.value {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value i {
    color: var(--accent);
    font-size: 1.1rem;
}

.value span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-300);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 48px 36px;
    text-align: center;
    max-width: 360px;
    backdrop-filter: blur(10px);
}

.about-card i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-details h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--primary);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-bottom p {
    margin-bottom: 4px;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .container,
    .nav-container {
        padding: 0 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-20px);
        opacity: 0;
        display: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container {
        padding: 0 16px;
    }
    
    .logo img {
        height: 56px;
        max-width: 200px;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .about-content h2 {
        font-size: 1.9rem;
    }
    
    .cybersecurity-content h2 {
        font-size: 1.9rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card {
        padding: 24px 20px;
    }
    
    .service-content {
        padding: 24px 20px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .hero-stats-bar {
        padding: 24px 0;
    }
    
    .cybersecurity-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .cybersecurity-image img {
        height: 360px;
    }
    
    .cybersecurity-stats {
        justify-content: center;
    }
    
    .about-img-wrap img {
        height: 320px;
    }
    
    .contact-map img {
        height: 240px;
    }
    
    .contact-map-overlay {
        padding: 0 24px;
    }
    
    .map-pin {
        padding: 12px 16px;
    }
    
    .map-pin span {
        font-size: 0.85rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-container {
        height: 480px;
    }
    
    .slide-content {
        padding: 0 80px;
        text-align: center;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
        max-width: 100%;
    }
    
    .slide-content p {
        max-width: 100%;
    }
    
    .slide-buttons {
        justify-content: center;
    }
    
    .hero-stats-bar .hero-stats {
        gap: 40px;
    }
    
    .hero-stats-bar .stat-number {
        font-size: 1.8rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-values {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 12px;
    }
    
    section {
        padding: 48px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .logo img {
        height: 48px;
        max-width: 140px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slide-content {
        padding: 0 16px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .slider-dots {
        bottom: 16px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 20px 16px;
    }
    
    .service-content {
        padding: 20px 16px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .testimonial-author {
        padding-top: 16px;
        gap: 10px;
    }
    
    .testimonial-author img {
        width: 40px;
        height: 40px;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .footer-grid {
        gap: 32px;
        margin-bottom: 40px;
    }
    
    .about-card {
        padding: 32px 24px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .cybersecurity-item {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .cybersecurity-icon {
        width: 40px;
        height: 40px;
    }
    
    .cybersecurity-icon i {
        font-size: 1.1rem;
    }
    
    .c-stat {
        padding: 16px 12px;
    }
    
    .c-number {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .about-values {
        gap: 12px;
    }
    
    .value {
        padding: 10px 16px;
        gap: 8px;
    }
    
    .value i {
        font-size: 1rem;
    }
    
    .value span {
        font-size: 0.85rem;
    }
    
    .hero-stats-bar {
        padding: 20px 0;
    }
    
    .hero-stats-bar .stat-number {
        font-size: 1.6rem;
    }
    
    .hero-stats-bar .stat-label {
        font-size: 0.85rem;
    }
    
    .cybersecurity-content h2 {
        font-size: 2rem;
    }
    
    .cybersecurity-image img {
        height: 280px;
    }
    
    .cybersecurity-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .product-image-wrap {
        height: 160px;
    }
    
    .about-img-badge {
        padding: 12px 16px;
        bottom: 16px;
        left: 16px;
        right: 16px;
    }
    
    .about-img-badge span {
        font-size: 0.85rem;
    }
    
    .contact-map img {
        height: 200px;
    }
    
    .contact-map-overlay {
        justify-content: center;
        padding: 0 16px;
    }
    
    .map-pin {
        width: 100%;
        justify-content: center;
    }
    
    .slider-container {
        height: 420px;
    }
    
    .slide-content {
        padding: 0 60px;
    }
    
    .slide-content h1 {
        font-size: 1.7rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .slider-prev {
        left: 12px;
    }
    
    .slider-next {
        right: 12px;
    }
    
    .hero-stats-bar .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}


/* ========================================
   CYBER SECURITY SECTION
   ======================================== */
.cybersecurity {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.cybersecurity::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cybersecurity::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cybersecurity-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.cybersecurity-content .section-tag {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.cybersecurity-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cybersecurity-content > p {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.7;
}

.cybersecurity-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0 32px;
}

.cybersecurity-item {
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.cybersecurity-item:hover {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.cybersecurity-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.cybersecurity-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.cybersecurity-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.cybersecurity-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.cybersecurity-image {
    position: relative;
}

.cybersecurity-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
    box-shadow: var(--shadow-xl);
}

.cybersecurity-stats {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.c-stat {
    flex: 1;
    background: var(--dark);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.c-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.c-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 6px;
}


/* ========================================
   PRODUCT IMAGES
   ======================================== */
.product-image-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.08);
}

.product-image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    pointer-events: none;
}

/* ========================================
   ABOUT IMAGE
   ======================================== */
.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.about-img-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.about-img-badge span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

/* ========================================
   CONTACT MAP
   ======================================== */
.contact-map {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: var(--shadow);
}

.contact-map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.contact-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.2) 100%);
    display: flex;
    align-items: center;
    padding: 0 48px;
}

.map-pin {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.map-pin i {
    font-size: 1.5rem;
    color: var(--primary);
}

.map-pin span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    background: var(--gray-50);
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--warning);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}
