/* Main CSS file for the project */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
            color: #202020;
            scroll-behavior: smooth;
        }
.gradient-bg {
            background: linear-gradient(135deg, #2a4365 0%, #0b80a5 100%);
        }
.hero-gradient {
            background: linear-gradient(135deg, rgba(11, 128, 165, 0.9) 0%, rgba(32, 32, 32, 0.85) 100%);
        }
        
        .card-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .btn-primary {
            background-color: #0b80a5;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            background-color: #096685;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(11, 128, 165, 0.4);
        }
        
        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }
        
        .btn-primary:hover::after {
            left: 100%;
        }
        
        .btn-secondary {
            border: 2px solid #f0f0f0;
            color: #f0f0f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-secondary:hover {
            background-color: #f0f0f0;
            color: #202020;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(240, 240, 240, 0.3);
        }
        
        .section-padding {
            padding: 5rem 0;
        }
        
        .hero-image {
            border-radius: 12px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            animation: float 6s ease-in-out infinite;
        }
        
        .timeline-dot {
            width: 50px;
            height: 50px;
            background-color: #0b80a5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f0f0f0;
            font-weight: bold;
            font-size: 1.25rem;
            z-index: 10;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 0;
            }
        }
        
        /* Enhanced Service card styles */
        .service-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-left: 4px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #0b80a5, #202020);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-left: 4px solid #0b80a5;
            box-shadow: 0 15px 30px rgba(11, 128, 165, 0.2);
        }
        
        .service-icon-bg {
            background-color: rgba(11, 128, 165, 0.1);
            transition: all 0.4s ease;
        }
        
        .service-card:hover .service-icon-bg {
            transform: scale(1.1);
            background-color: rgba(11, 128, 165, 0.2);
        }
        
        /* Top bar styles */
        .top-bar {
            background-color: #202020;
            color: #f0f0f0;
            padding: 8px 0;
            font-size: 0.875rem;
        }
        
        .contact-btn {
            background-color: #0b80a5;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .contact-btn:hover {
            background-color: #096685;
            transform: translateY(-2px);
        }
        
        /* Enhanced scroll animations */
        .slide-element {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .slide-element.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-in {
            opacity: 0;
            transition: opacity 1s ease-out;
        }
        
        .fade-in.visible {
            opacity: 1;
        }
        
        /* Staggered animation delays */
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }
        .stagger-6 { transition-delay: 0.6s; }
        
        /* Enhanced hero section */
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        /* Enhanced cybersecurity section */
        .cyber-card {
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .cyber-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0b80a5, #202020);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .cyber-card:hover::after {
            transform: scaleX(1);
        }
        
        .cyber-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(11, 128, 165, 0.15);
        }
        
        /* Enhanced industries section */
        .industry-card {
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(11, 128, 165, 0.1) 0%, rgba(32, 32, 32, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .industry-card:hover::before {
            opacity: 1;
        }
        
        .industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        /* Enhanced difference section */
        .difference-card {
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .difference-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        /* Enhanced CTA section */
        .cta-pulse {
            animation: pulse-slow 4s infinite;
        }
        
        /* Enhanced footer */
        .footer-link {
            position: relative;
            transition: color 0.3s ease;
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #0b80a5;
            transition: width 0.3s ease;
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
        
        /* Logo Slider Styles */
        .logo-slider-container {
            overflow: hidden;
            position: relative;
            padding: 40px 0;
            background-color: #f8f9fa;
        }
        
        .logo-slider {
            display: flex;
            width: calc(200px * 12); /* Double the logos for seamless looping */
            animation: slide 30s linear infinite;
        }
        
        .logo-slider:hover {
            animation-play-state: paused;
        }
        
        .logo-item {
            width: 200px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 20px;
            transition: transform 0.3s ease;
        }
        
        .logo-item:hover {
            transform: scale(1.1);
        }
        
        .logo-img {
            max-width: 160px;
            max-height: 80px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .logo-item:hover .logo-img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 6)); /* Move by the width of 6 logos */
            }
        }
        
        /* Testimonials Section Styles */
        .testimonials-section {
            background-color: #f8f9fa;
            position: relative;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .testimonial-card::before {
            content: "“";
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 5rem;
            color: rgba(11, 128, 165, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-text {
            position: relative;
            z-index: 1;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #0b80a5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            margin-right: 1rem;
        }
        
        .testimonial-info h4 {
            font-weight: 700;
            color: #202020;
            margin-bottom: 0.25rem;
        }
        
        .testimonial-info p {
            color: #0b80a5;
            font-size: 0.9rem;
        }
        
        /* Star Rating Styles */
        .star-rating {
            color: #fbbf24;
            margin-bottom: 1rem;
        }
        
        /* Respect user reduced-motion preferences */
        @media (prefers-reduced-motion: reduce) {
            .slide-element,
            .slide-in-left,
            .slide-in-right,
            .fade-in,
            .card-hover,
            .service-card,
            .cyber-card,
            .industry-card,
            .difference-card,
            .btn-primary,
            .btn-secondary,
            .service-icon-bg,
            .logo-slider {
                transition: none !important;
                animation: none !important;
                transform: none !important;
            }
        }

        /* Slow down hero fade-in animations */
        .slide-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-down.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-down-slow {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.slide-down-slow.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Also add these missing keyframe animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-slow {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 128, 165, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(11, 128, 165, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(11, 128, 165, 0);
    }
}

/* Add bounce animation for scroll arrow */
@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 2s infinite;
}
@media (prefers-reduced-motion: reduce) {
  .animate-bounce, .slide-element, .slide-in-left, .slide-in-right, .fade-in { 
    animation: none !important; transition: none !important;
  }
}

/* Hero Section Animations */
@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-scale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-in-right {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fade-in-scale {
  animation: fade-in-scale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-pop-in {
  animation: pop-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-slide-in-right {
  animation: slide-in-right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Enhanced hover effects for hero section */
.hero-card-hover {
  transition: all 0.3s ease;
}

.hero-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Button hover enhancements */
.btn-scale:hover {
  transform: scale(1.05);
}

/* Group hover utilities */
.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

/* Ensure reduced motion preferences are respected for new animations */
@media (prefers-reduced-motion: reduce) {
  .animate-fade-in-up,
  .animate-fade-in-scale,
  .animate-pop-in,
  .animate-slide-in-right,
  .hero-card-hover,
  .btn-scale {
    animation: none !important;
    transition: none !important;
  }
  
  .opacity-0 {
    opacity: 1 !important;
  }
  
  .transform {
    transform: none !important;
  }
}

/* Enhanced card styles for all card elements */
.card-hover, .cyber-card, .industry-card, .difference-card, .service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Apply staggered animation delays to all card types */
.cyber-card.stagger-1, .industry-card.stagger-1, .difference-card.stagger-1,
.cyber-card.stagger-2, .industry-card.stagger-2, .difference-card.stagger-2,
.cyber-card.stagger-3, .industry-card.stagger-3, .difference-card.stagger-3,
.cyber-card.stagger-4, .industry-card.stagger-4, .difference-card.stagger-4,
.cyber-card.stagger-5, .industry-card.stagger-5, .difference-card.stagger-5,
.cyber-card.stagger-6, .industry-card.stagger-6, .difference-card.stagger-6 {
    transition-delay: inherit;
}

/* Enhanced hero card styling */
.hero-card-hover {
    transition: all 0.3s ease;
}

.hero-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Apply service-card styling to form elements */
.service-card {
    border-left: 4px solid transparent;
}

.service-card:hover {
    border-left: 4px solid #0b80a5;
}

/* Ensure all card types have the slide-element animation */
.cyber-card, .industry-card, .difference-card, .service-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cyber-card.visible, .industry-card.visible, .difference-card.visible, .service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced form styling within cards */
.service-card input, .service-card textarea {
    transition: all 0.3s ease;
}

.service-card input:focus, .service-card textarea:focus {
    border-color: #0b80a5;
    box-shadow: 0 0 0 3px rgba(11, 128, 165, 0.2);
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    background: linear-gradient(135deg, #2a4365 0%, #0b80a5 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #0b80a5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 128, 165, 0.2);
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    gap: 15px;
}

.submit-btn {
    background: linear-gradient(to right, #0b80a5, #07729c);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.close-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
}

.close-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Success Message */
.success-message {
    display: none;
    background-color: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(40px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .submit-btn, .close-btn {
        width: 100%;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
    }
}

/* Ensure modal works with existing animations */
@media (prefers-reduced-motion: reduce) {
    .modal,
    .modal-content,
    .success-message {
        animation: none !important;
    }
    
    .submit-btn:hover,
    .close-btn:hover {
        transform: none !important;
    }
}
/* Ensure text in cyber cards is dark */
.cyber-card,
.cyber-card h3,
.cyber-card p {
    color: #202020 !important;
}

/* If you want more specific control */
.cyber-card h3 {
    color: #1a202c !important; /* Dark gray for headings */
}

.cyber-card p {
    color: #4a5568 !important; /* Medium gray for paragraphs */
}

/* Text color utilities */
.text-dark { color: #202020 !important; }
.text-gray-800 { color: #1a202c !important; }
.text-gray-700 { color: #2d3748 !important; }
.text-gray-600 { color: #4a5568 !important; }

/* Fix for industry card links */
.industry-card a {
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.industry-card a.text-secondary:hover {
    text-decoration: underline !important;
}

/* Ensure links are not being overridden by other styles */
.industry-card .text-secondary {
    text-decoration: none;
}

.industry-card .text-secondary:hover {
    text-decoration: underline;
}

.accent-text {
    color: #838383; /* or whatever your 'accent' grey is */
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background-color: #000; /* looks tidy while loading */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}