/* Custom CSS for Cybrex Systems Limited - Techy Professional Design */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-color: #dc3545;
    --secondary-color: #212529;
    --accent-color: #ff6b6b;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --light-text: #ffffff;
    --muted-text: #b8b8b8;
    --border-color: #333333;
    --gradient-1: linear-gradient(135deg, #dc3545 0%, #c82333 50%, #a71e2a 100%);
    --gradient-2: linear-gradient(135deg, #212529 0%, #343a40 50%, #495057 100%);
    --gradient-tech: linear-gradient(45deg, #dc3545, #ff6b6b, #dc3545);
    /* Logo colors */
    --logo-blue: #0066cc;
    --logo-dark-blue: #003d7a;
    --logo-light-gray: #f0f0f0;
    --logo-dark-gray: #333333;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.display-2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 102, 204, 0.5);
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 600;
}

/* Navigation - Enhanced UI */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 102, 204, 0.4);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--logo-blue) !important;
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.3));
    transition: all 0.3s ease;
    object-fit: contain;
    max-width: 200px;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 102, 204, 0.5));
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px !important;
    border-radius: 25px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--logo-blue), var(--logo-dark-blue));
    transition: width 0.3s ease;
    border-radius: 1px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    opacity: 1;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--logo-blue) !important;
    transform: translateY(-2px);
    background: rgba(0, 102, 204, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--logo-blue) !important;
    background: rgba(0, 102, 204, 0.15);
}

.navbar-toggler {
    border: 2px solid rgba(0, 102, 204, 0.3) !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
    background: rgba(0, 102, 204, 0.05);
}

.navbar-toggler:hover {
    border-color: var(--logo-blue) !important;
    background: rgba(0, 102, 204, 0.1);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 102, 204, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 24px;
    height: 18px;
}

.navbar-collapse {
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .navbar-nav {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 102, 204, 0.2);
        border-radius: 15px;
        padding: 20px;
        margin-top: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
        text-align: center;
        padding: 12px 20px !important;
        border-radius: 10px;
        border: 1px solid rgba(0, 102, 204, 0.1);
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(0, 102, 204, 0.2);
        border-color: rgba(0, 102, 204, 0.3);
    }
}

/* Hero Section - Modern Redesign */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #001122 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 204, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 204, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 102, 204, 0.2) 0%, transparent 50%),
                linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-badge {
    margin-bottom: 30px;
}

.hero-badge .badge {
    background: linear-gradient(135deg, var(--logo-blue), var(--logo-dark-blue)) !important;
    color: white;
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title-section {
    margin-bottom: 40px;
    position: relative;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--logo-blue), var(--logo-light-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--logo-blue), transparent);
    margin-top: 20px;
    border-radius: 2px;
    animation: expandWidth 1s ease 0.6s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--logo-blue), var(--logo-dark-blue));
    color: white;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.hero-stats {
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

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

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--logo-blue);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-suffix {
    font-size: 1.5rem;
    margin-left: 4px;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-1, .card-2, .card-3 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: white;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.card-1:hover, .card-2:hover, .card-3:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(0, 102, 204, 0.2);
    border-color: var(--logo-blue);
}

.card-1 i, .card-2 i, .card-3 i {
    font-size: 2.5rem;
    color: var(--logo-blue);
}

.card-1 span, .card-2 span, .card-3 span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease 1.4s forwards;
}

.scroll-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: var(--logo-blue);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Tech Grid Background */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(220, 53, 69, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 53, 69, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    z-index: 0;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Section Badges */
.section-badge .badge {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    border-radius: 0;
    background: var(--gradient-1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

/* Feature Cards */
.feature-card {
    padding: 40px 30px;
    border: 1px solid rgba(220, 53, 69, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-text);
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.6);
}

.feature-line {
    height: 2px;
    background: var(--gradient-1);
    width: 50px;
    margin-top: 20px;
    transition: width 0.3s ease;
}

.feature-card:hover .feature-line {
    width: 100px;
}

/* Expertise Cards */
.expertise-card {
    background: rgba(33, 37, 41, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.expertise-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(220, 53, 69, 0.5));
}

/* Client Cards */
.client-card {
    background: rgba(33, 37, 41, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.client-logo {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(220, 53, 69, 0.5));
}

/* Approach Steps */
.step-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInTech 0.8s ease forwards;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInTech {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-number {
    background: var(--gradient-1);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(220, 53, 69, 0.6);
}

/* Commitment Card */
.commitment-card {
    background: rgba(33, 37, 41, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.commitment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.1;
    z-index: 0;
}

.commitment-item {
    padding: 10px 0;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateX(5px);
}

/* Contact Section */
.contact-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(220, 53, 69, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--light-text);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(220, 53, 69, 0.6);
}

.contact-form .form-control {
    background: rgba(33, 37, 41, 0.5);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: var(--light-text);
    border-radius: 0;
    padding: 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(33, 37, 41, 0.7);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.3);
    color: var(--light-text);
}

.contact-form .form-control::placeholder {
    color: var(--muted-text);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(220, 53, 69, 0.7);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-indicators button {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 0;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

/* Footer */
footer {
    background: var(--darker-bg) !important;
    border-top: 1px solid rgba(220, 53, 69, 0.3);
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.3));
    transition: all 0.3s ease;
    opacity: 0.8;
    object-fit: contain;
    max-width: 250px;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 102, 204, 0.5));
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .display-2 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-badge {
        margin-bottom: 20px;
    }
    
    .hero-badge .badge {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .title-line {
        margin-bottom: 5px;
    }
    
    .title-decoration {
        margin: 15px auto 0;
        width: 80px;
        height: 3px;
    }
    
    .hero-description {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        margin-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 20px;
        background: rgba(0, 102, 204, 0.1);
        border-radius: 15px;
        border: 1px solid rgba(0, 102, 204, 0.2);
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }
    
    .stat-suffix {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-visual {
        display: none;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
    
    .scroll-arrow {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 35px;
        max-width: 150px;
    }
    
    .footer-logo {
        height: 45px;
        max-width: 200px;
    }
    
    .feature-card,
    .expertise-card,
    .client-card {
        margin-bottom: 30px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 15px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: var(--gradient-1);
    color: white;
    padding: 20px;
    border-radius: 0;
    margin-top: 20px;
    display: none;
    animation: slideDown 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Button Glow Effect */
.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(220, 53, 69, 0.4);
    }
    to {
        box-shadow: 0 0 20px rgba(220, 53, 69, 0.8);
    }
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
