/* Base styles */
:root {
    --deep-blue: #003366;
    --bright-red: #D7263D;
    --silver-grey: #C0C0C0;
    --white: #FFFFFF;
    --dark-bg: #0a1421;
    --dark-charcoal: #111a24;
    --gradient-blue: linear-gradient(135deg, #003366 0%, #001830 100%);
}

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

body {
    background-color: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    min-height: 100vh;
    font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    background-attachment: fixed;
}

/* Page Transition Effect */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.page-transition.active {
    transform: translateY(0);
}

/* Content wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(10, 20, 33, 0.95);
    min-height: 100vh;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-animation {
    margin-bottom: 30px;
    text-align: center;
}

.logo-animation img {
    height: 150px;
    width: auto;
    margin-bottom: 10px;
    opacity: 1 !important;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--bright-red);
    transition: width 0.5s ease;
}

/* Enhanced Navigation - Bigger Logo */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    padding: 30px 60px 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(10, 20, 33, 0.95) 0%, rgba(10, 20, 33, 0) 100%);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(10, 20, 33, 0.95);
    padding: 20px 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, 
        transparent 0%, 
        var(--bright-red) 20%, 
        var(--deep-blue) 50%,
        var(--bright-red) 80%,
        transparent 100%);
    opacity: 0.7;
}

.logo {
    display: flex;
    align-items: center;
}

/* BIGGER LOGO */
.logo img {
    height: 120px; /* Increased from 70px */
    width: auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 51, 102, 0.5));
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 90px; /* Increased from 55px */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 25px;
    position: relative;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 8px 5px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    font-family: 'Rajdhani', sans-serif;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bright-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bright-red);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
    color: var(--bright-red);
}

/* Hero Section - Multiple fallback paths for hero banner */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Multiple fallback paths for the hero banner */
    background-image: 
        url('./assets/images/hero_banner.jpg'),
        url('assets/images/hero_banner.jpg'),
        url('./assets/images/hero-banner.jpg'),
        url('assets/images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background-color: var(--dark-bg);
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
    opacity: 1;
}

/* Scale video to avoid zoomed appearance */
.scaled-video {
    transform: translateX(-50%) translateY(-50%) scale(0.9) !important;
}

/* Video overlay with diagonal elements */
.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 20, 33, 0.7) 0%, rgba(10, 20, 33, 0.5) 100%),
        radial-gradient(circle at center, rgba(10, 20, 33, 0.4) 0%, rgba(10, 20, 33, 0.8) 100%);
    z-index: 2;
}

.contact-hero-content {
    text-align: center;
    padding: 0 50px;
    max-width: 900px;
    position: relative;
    z-index: 3;
}

.contact-hero-content h1 {
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.contact-hero-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    color: var(--silver-grey);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Contact Page Info Section */
.contact-page-info {
    background: var(--dark-bg);
    padding: 100px 50px;
    position: relative;
}

.contact-page-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(0, 51, 102, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(0, 51, 102, 0.4);
    border-color: rgba(215, 38, 61, 0.3);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(215, 38, 61, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--bright-red);
    transition: all 0.4s ease;
    border: 2px solid rgba(215, 38, 61, 0.2);
    position: relative;
}

.contact-card:hover .contact-card-icon {
    background: rgba(215, 38, 61, 0.2);
    transform: rotateY(180deg);
}

.contact-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    color: var(--silver-grey);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-link {
    color: var(--bright-red);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-family: 'Rajdhani', sans-serif;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bright-red);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #ff3a52;
}

.contact-link:hover::after {
    width: 100%;
}

/* Map Section */
.map-section {
    padding: 70px 50px;
    background: linear-gradient(to bottom, rgba(0, 30, 60, 0.9) 0%, var(--dark-bg) 100%);
    text-align: center;
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.map-embed {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 51, 102, 0.14);
    position: relative;
    z-index: 1;
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 100px 50px;
    background: var(--dark-bg);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: rgba(0, 51, 102, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item:hover {
    background: rgba(0, 51, 102, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(215, 38, 61, 0.2);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bright-red);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(215, 38, 61, 0.1);
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--silver-grey);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Product Showcase Section */
.product-showcase {
    padding: 120px 50px;
    background: linear-gradient(to bottom, var(--dark-bg) 0%, rgba(0, 30, 60, 0.9) 100%);
    position: relative;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.product-showcase-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.product-showcase-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--silver-grey);
}

.product-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.product-row:last-child {
    margin-bottom: 0;
}

.product-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-row:hover .product-image img {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.product-details {
    flex: 1;
    min-width: 300px;
}

.product-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--bright-red);
    transition: width 0.4s ease;
}

.product-row:hover .product-title::after {
    width: 100px;
}

.product-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--silver-grey);
    margin-bottom: 30px;
}

.product-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-icon {
    color: var(--bright-red);
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-text {
    color: var(--silver-grey);
    font-size: 1.05rem;
    line-height: 1.6;
}

.product-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.option-badge {
    background: rgba(215, 38, 61, 0.1);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(215, 38, 61, 0.3);
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.product-row:hover .option-badge {
    background: rgba(215, 38, 61, 0.3);
    transform: translateY(-3px);
}

/* Company Timeline */
.company-timeline {
    padding: 100px 50px;
    background: linear-gradient(to bottom, rgba(0, 30, 60, 0.9) 0%, var(--dark-bg) 100%);
    position: relative;
}

.company-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 40px;
    bottom: -40px;
    width: 2px;
    background: var(--bright-red);
    opacity: 0.3;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 30px;
    height: 30px;
    background: var(--bright-red);
    border-radius: 50%;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 3px solid var(--dark-bg);
}

.timeline-content {
    background: rgba(0, 51, 102, 0.2);
    padding: 25px;
    border-radius: 10px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.timeline-content:hover {
    background: rgba(0, 51, 102, 0.3);
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(215, 38, 61, 0.2);
}

.timeline-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--silver-grey);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Team Values */
.team-values {
    padding: 100px 50px;
    background: var(--dark-bg);
    position: relative;
}

.team-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-item {
    background: rgba(0, 51, 102, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

.value-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--bright-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.value-item:hover {
    transform: translateY(-15px);
    background: rgba(0, 51, 102, 0.4);
    border-color: rgba(215, 38, 61, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.value-item:hover::after {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(215, 38, 61, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--bright-red);
    transition: all 0.4s ease;
    border: 2px solid rgba(215, 38, 61, 0.2);
}

.value-item:hover .value-icon {
    background: rgba(215, 38, 61, 0.2);
    transform: rotateY(180deg);
}

.value-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: var(--silver-grey);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Enhanced Footer Styling */
.footer.enhanced {
    background: var(--dark-charcoal);
    padding: 80px 50px 30px;
    position: relative;
    color: var(--silver-grey);
}

.footer.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, transparent, var(--bright-red), transparent);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 50px;
    gap: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    margin: 0 auto 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 140px; /* Increased footer logo size too */
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 51, 102, 0.5));
}

.footer-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: var(--silver-grey);
    margin-bottom: 20px;
    text-align: center; 
}

.footer-sections {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bright-red);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--silver-grey);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bright-red);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-family: 'Rajdhani', sans-serif;
}

.footer-contact i {
    width: 25px;
    margin-right: 10px;
    color: var(--bright-red);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 51, 102, 0.3);
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-icon:hover {
    background: var(--bright-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(215, 38, 61, 0.3);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-legal {
    margin-bottom: 20px;
}

.footer-legal a {
    color: var(--silver-grey);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.footer-legal a:hover {
    color: var(--bright-red);
}

.legal-divider {
    margin: 0 10px;
}

.company-reg, .company-vat {
    margin: 0 10px;
    font-size: 0.9rem;
}

.copyright {
    font-size: 0.9rem;
    margin-top: 20px;
    font-family: 'Rajdhani', sans-serif;
}

/* Video play button (fallback for browsers that block autoplay) */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(215, 38, 61, 0.7);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(215, 38, 61, 0.5);
}

/* Enhanced Page Hero Styles with Graphics */
.enhanced-hero {
    position: relative;
    overflow: hidden;
}

.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.graphic-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.2) 0%, rgba(215, 38, 61, 0.2) 100%);
    filter: blur(10px);
    opacity: 0;
}

.enhanced-hero .element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.2) 0%, rgba(215, 38, 61, 0.2) 100%);
    animation: float 15s infinite alternate;
}

.enhanced-hero .element-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 10%;
    background: linear-gradient(45deg, rgba(215, 38, 61, 0.2) 0%, rgba(0, 51, 102, 0.2) 100%);
    animation: float 18s infinite alternate-reverse;
}

.enhanced-hero .element-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    background: radial-gradient(circle, rgba(215, 38, 61, 0.15) 0%, rgba(0, 51, 102, 0.15) 70%);
    animation: float 12s infinite alternate;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(15deg);
    }
}

/* About Page Hero */
.about-page-hero {
    height: 60vh;
    background: linear-gradient(to bottom, var(--dark-bg) 0%, rgba(0, 30, 60, 0.9) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
}

.about-page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 20, 33, 0.7) 0%, rgba(10, 20, 33, 0.5) 100%),
        radial-gradient(circle at center, rgba(10, 20, 33, 0.4) 0%, rgba(10, 20, 33, 0.8) 100%);
    z-index: 2;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .navbar {
        padding: 30px 30px;
    }
    
    .navbar.scrolled {
        padding: 20px 30px;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .tagline {
        font-size: 2rem;
    }
    
    section {
        padding: 80px 30px;
    }
    
    .services-container.four-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .tagline {
        font-size: 1.6rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .offering-item, 
    .benefit-item, 
    .process-step, 
    .client-category {
        min-width: 100%;
    }
    
    .process-connector {
        display: none;
    }
    
    .support-content {
        flex-direction: column;
        text-align: center;
    }
    
    .support-icon {
        margin: 0 auto 20px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-row {
        flex-direction: column;
    }
    
    .product-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .product-details {
        order: 2;
    }
    
    .services-container.four-columns {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 30px 20px;
    }
    
    .navbar.scrolled {
        padding: 20px 20px;
    }
    
    .logo img {
        height: 90px;
    }
    
    .navbar.scrolled .logo img {
        height: 70px;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark-charcoal);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    section {
        padding: 70px 20px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form-container {
        width: 100%;
    }
    
    .about-page-hero, .services-page-hero, .contact-page-hero {
        height: 40vh;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-sections {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .legal-divider {
        display: none;
    }
    
    .company-reg, .company-vat {
        display: block;
        margin: 10px 0;
    }
    
    .map-embed iframe {
        height: 260px;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .service-card {
        height: 400px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .about-page-hero, .services-page-hero, .contact-page-hero {
        height: 35vh;
    }
    
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content p,
    .services-hero-content p,
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .map-embed iframe {
        height: 180px;
    }
}

/* Fix persistent animations */
.persistent-animation {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.persistent-animation > * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: all 0.4s ease-in-out;
}

/* Animation effects for enhanced heroes */
.enhanced-hero .element-1,
.enhanced-hero .element-2,
.enhanced-hero .element-3 {
    opacity: 0.7;
} 

.scroll-trigger-animation {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.scroll-trigger-animation * {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Additional responsive fixes */
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem !important;
        letter-spacing: 1px !important;
        line-height: 1.2 !important;
    }
    
    .tagline {
        font-size: 1rem !important;
        letter-spacing: 1px !important;
    }
    
    .navbar {
        padding: 20px 15px;
    }
    
    .logo img {
        height: 70px;
    }
    
    .navbar.scrolled .logo img {
        height: 55px;
    }
}

/* Print styles */
@media print {
    .preloader,
    .page-transition,
    .mobile-nav-toggle,
    .whatsapp-float,
    .video-background,
    .scroll-indicator {
        display: none !important;
    }
    
    .hero-content h1,
    .tagline {
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .enhanced-hero .element-1,
    .enhanced-hero .element-2,
    .enhanced-hero .element-3 {
        animation: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .hero-content h1,
    .tagline {
        text-shadow: 2px 2px 0px #000000 !important;
        color: #ffffff !important;
    }
    
    .btn-primary {
        background: #ff0000 !important;
        border: 2px solid #ffffff !important;
    }
    
    .btn-secondary {
        border: 3px solid #ffffff !important;
        background: #000000 !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
.nav-links a:focus {
    outline: 3px solid var(--bright-red) !important;
    outline-offset: 2px !important;
}

/* Loading state styles */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--bright-red);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Error state styles */
.error {
    border: 2px solid #ff4444 !important;
    background-color: rgba(255, 68, 68, 0.1) !important;
}

.error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

/* Success state styles */
.success {
    border: 2px solid #44ff44 !important;
    background-color: rgba(68, 255, 68, 0.1) !important;
}

.success-message {
    color: #44ff44;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

/* Utility classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.no-scroll {
    overflow: hidden;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }

.z-index-1 { z-index: 1 !important; }
.z-index-2 { z-index: 2 !important; }
.z-index-3 { z-index: 3 !important; }

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

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

::-webkit-scrollbar-thumb {
    background: var(--bright-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff3a52;
}

/* Selection styles */
::selection {
    background: var(--bright-red);
    color: var(--white);
}

::-moz-selection {
    background: var(--bright-red);
    color: var(--white);
}

/* Final animation cleanup */
.hero-content h1,
.tagline {
    animation: none !important;
    transition: none !important;
}

/* Ensure hero text is always white */
.hero-content h1,
.hero-content .tagline {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
    transform: translateY(-5%);
    max-width: 90%;
}

/* HERO TEXT - CLEAN WHITE STYLING */
.hero-content h1 {
    font-family: 'Arial Black', 'Helvetica', 'Impact', 'Franklin Gothic Medium', sans-serif !important;
    font-size: 5.8rem !important;
    font-weight: 900 !important;
    margin-bottom: 30px !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    color: #ffffff !important;
    line-height: 0.95 !important;
    position: relative !important;
    padding: 0 20px !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
    font-stretch: condensed !important;
    font-style: italic !important;
    transform: skewX(-5deg) !important;
}

/* COMPLETELY REMOVE ANY PSEUDO ELEMENTS */
.hero-content h1::before,
.hero-content h1::after,
h1[data-text]::before,
h1[data-text]::after {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

/* Add a divider between title and tagline */
.hero-content::after {
    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--bright-red), transparent);
    margin: 25px auto;
    opacity: 0.7;
}

/* TAGLINE - CLEAN WHITE STYLING */
.tagline {
    font-family: 'Arial Black', 'Impact', 'Bebas Neue', 'Oswald', sans-serif !important;
    font-size: 1.8rem !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-style: italic !important;
    letter-spacing: 2px !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8) !important;
    margin-top: 15px !important;
    text-transform: uppercase !important;
    opacity: 0.9 !important;
    transform: skewX(-5deg) !important;
    display: block !important;
    visibility: visible !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    color: var(--silver-grey);
    cursor: pointer;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    font-family: 'Rajdhani', sans-serif;
}

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

/* Section Common Styles */
section {
    padding: 100px 50px;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    font-size: 3.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--bright-red);
}

/* Enhanced Core Offerings Section */
.core-offerings {
    padding: 120px 50px;
    position: relative;
    background: linear-gradient(to bottom, var(--dark-bg) 0%, rgba(0, 30, 60, 0.9) 100%);
    overflow: hidden;
}

.core-offerings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.3;
    z-index: 0;
}

.offerings-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.offering-item {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: rgba(0, 51, 102, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.offering-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--bright-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.offering-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 51, 102, 0.3) 0%, 
        rgba(215, 38, 61, 0.1) 50%, 
        rgba(0, 51, 102, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.offering-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(215, 38, 61, 0.3);
}

.offering-item:hover::before {
    transform: scaleX(1);
}

.offering-item:hover::after {
    opacity: 1;
}

.offering-icon {
    font-size: 3.5rem;
    color: var(--bright-red);
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.offering-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(215, 38, 61, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.offering-item:hover .offering-icon {
    transform: rotateY(180deg);
    color: var(--bright-red);
}

.offering-item:hover .offering-icon::after {
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(215, 38, 61, 0.2);
}

.offering-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.offering-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--bright-red);
    transition: width 0.4s ease;
}

.offering-item:hover h3::after {
    width: 60px;
}

.offering-text {
    color: var(--silver-grey);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.offering-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.type {
    background: rgba(215, 38, 61, 0.1);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(215, 38, 61, 0.3);
    transition: all 0.3s ease;
}

.offering-item:hover .type {
    background: rgba(215, 38, 61, 0.3);
    transform: translateY(-3px);
}

/* ==== SERVICES SECTION BASE ==== */
.services {
    background: linear-gradient(to bottom, rgba(0, 30, 60, 0.9) 0%, var(--dark-bg) 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    color: var(--silver-grey);
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* ==== GRID ==== */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    perspective: 1200px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-container.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

/* Enhanced service cards with modern styling */
.service-card {
    position: relative;
    height: 450px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    will-change: transform;
    cursor: pointer;
}

/* The flipping element */
.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(.4,2,.6,1);
    transform-style: preserve-3d;
}

/* Card flips on hover (desktop) or .flipped (mobile/JS) */
.service-card:hover .card-inner,
.service-card.flipped .card-inner {
    transform: rotateY(180deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0; 
    top: 0;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 51, 102, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    text-align: center;
}

/* Front card styling */
.card-front::before,
.card-front::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--bright-red);
    opacity: 0.5;
}

.card-front::before {
    top: 20px;
    left: 0;
    transform: skewY(45deg);
}

.card-front::after {
    bottom: 20px;
    left: 0;
    transform: skewY(-45deg);
}

.service-icon {
    font-size: 3rem;
    color: var(--bright-red);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-subtitle {
    color: var(--silver-grey);
    font-size: 1.1rem;
}

/* Brand highlight text - Changed to BLACK */
.brand-highlight {
    color: #000000;
    font-weight: 600;
}

/* Back card styling */
.card-back {
    background: linear-gradient(135deg, var(--bright-red) 0%, #9e1c2d 100%);
    transform: rotateY(180deg);
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
}

/* Add a subtle badge to cards that feature A Grade */
.agrade-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(215, 38, 61, 0.2);
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(to bottom, var(--dark-bg) 0%, rgba(0, 30, 60, 0.9) 100%);
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.benefit-item {
    background: rgba(0, 51, 102, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.benefit-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--bright-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.benefit-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(0, 51, 102, 0.4);
    border-color: rgba(215, 38, 61, 0.3);
}

.benefit-item:hover::after {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(215, 38, 61, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--bright-red);
    transition: all 0.4s ease;
    border: 2px solid rgba(215, 38, 61, 0.2);
    position: relative;
}

.benefit-item:hover .benefit-icon {
    background: rgba(215, 38, 61, 0.2);
    transform: rotateY(180deg);
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(215, 38, 61, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon::after {
    transform: scale(1.2);
    opacity: 0;
}

.benefit-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: var(--silver-grey);
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Rajdhani', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--bright-red);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(215, 38, 61, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(215, 38, 61, 0.4);
    transform: translateY(-5px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--bright-red);
}

.btn-secondary:hover {
    background: rgba(215, 38, 61, 0.1);
    transform: translateY(-5px);
}

/* Order Process Section */
.order-process {
    background: linear-gradient(to bottom, rgba(0, 30, 60, 0.9) 0%, var(--dark-bg) 100%);
    padding: 120px 50px;
    position: relative;
}

.order-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.process-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.process-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(0, 51, 102, 0.2);
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.process-step:hover {
    background: rgba(0, 51, 102, 0.4);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(215, 38, 61, 0.3);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--bright-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(215, 38, 61, 0.3);
    z-index: 2;
    font-family: 'Orbitron', sans-serif;
}

.step-icon {
    font-size: 3rem;
    color: var(--bright-red);
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(215, 38, 61, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    transform: rotateY(180deg);
    color: var(--bright-red);
}

.process-step:hover .step-icon::after {
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(215, 38, 61, 0.2);
}

.process-step h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: var(--silver-grey);
    font-size: 1rem;
    line-height: 1.6;
}

.process-connector {
    position: relative;
    height: 2px;
    flex: 0 0 50px;
    background: linear-gradient(to right, transparent, var(--bright-red), transparent);
    align-self: center;
    opacity: 0.7;
}

.process-connector::before, 
.process-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bright-red);
    transform: translateY(-50%);
}

.process-connector::before {
    left: 0;
}

.process-connector::after {
    right: 0;
}

.process-note {
    text-align: center;
    margin: 30px auto;
    max-width: 800px;
    padding: 25px;
    background: rgba(215, 38, 61, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--bright-red);
    position: relative;
    z-index: 1;
}

.process-note p {
    color: var(--silver-grey);
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Trusted By Section */
.trusted-by {
    background: linear-gradient(to bottom, var(--dark-bg) 0%, rgba(0, 30, 60, 0.9) 100%);
    padding: 100px 50px;
    position: relative;
}

.trusted-by::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.clients-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin: 50px auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.client-category {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: rgba(0, 51, 102, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.client-category:hover {
    background: rgba(0, 51, 102, 0.4);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(215, 38, 61, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(215, 38, 61, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--bright-red);
    transition: all 0.4s ease;
    position: relative;
}

.category-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(215, 38, 61, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.client-category:hover .category-icon {
    background: rgba(215, 38, 61, 0.2);
    transform: rotateY(180deg);
}

.client-category:hover .category-icon::after {
    transform: scale(1.2);
    opacity: 0;
}

.client-category h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.client-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--bright-red);
    transition: width 0.4s ease;
}

.client-category:hover h3::after {
    width: 60px;
}

.client-tagline {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.client-tagline p {
    font-size: 1.3rem;
    color: var(--silver-grey);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Returns & Support Section */
.returns-support {
    background: linear-gradient(to bottom, rgba(0, 30, 60, 0.9) 0%, var(--dark-bg) 100%);
    padding: 100px 50px;
    position: relative;
}

.returns-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.support-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.support-content {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 51, 102, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.support-content:hover {
    background: rgba(0, 51, 102, 0.4);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(215, 38, 61, 0.3);
}

.support-icon {
    font-size: 2.5rem;
    color: var(--bright-red);
    margin-top: 5px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.support-content:hover .support-icon {
    transform: rotateY(180deg);
}

.support-details {
    flex: 1;
}

.support-details h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.support-details p, 
.support-details li {
    color: var(--silver-grey);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.support-details ul {
    list-style-type: none;
    margin-bottom: 20px;
}

.support-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.support-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background: var(--bright-red);
}

.support-note {
    background: rgba(215, 38, 61, 0.1);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 20px;
}

.support-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, rgba(0, 30, 60, 0.9) 0%, var(--dark-bg) 100%);
    position: relative;
    padding: 120px 50px;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.about-content,
.persistent-animation {
    opacity: 1 !important;
    transform: none !important;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--silver-grey);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    flex: 1;
    min-width: 300px;
}

.stat-box {
    background: rgba(0, 51, 102, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    background: rgba(0, 51, 102, 0.4);
    border-color: rgba(215, 38, 61, 0.3);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bright-red);
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--dark-bg) 0%, rgba(0, 20, 40, 0.95) 100%);
    position: relative;
    padding: 120px 50px;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-intro h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--silver-grey);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: rgba(0, 51, 102, 0.2);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact-method:hover {
    transform: translateX(10px);
    background: rgba(0, 51, 102, 0.4);
    border-color: rgba(215, 38, 61, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--bright-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.contact-method:hover .contact-icon {
    transform: rotateY(180deg);
}

.contact-text {
    font-size: 1.1rem;
    color: var(--silver-grey);
}

.contact-text strong {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background: rgba(0, 51, 102, 0.2);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact-form:hover {
    background: rgba(0, 51, 102, 0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: rgba(215, 38, 61, 0.3);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 30, 60, 0.3);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: 'Rajdhani', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(215, 38, 61, 0.5);
    background: rgba(0, 30, 60, 0.5);
    box-shadow: 0 0 15px rgba(215, 38, 61, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(192, 192, 192, 0.7);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* About Hero Content */
.about-hero-content {
    text-align: center;
    padding: 0 50px;
    max-width: 900px;
    position: relative;
    z-index: 3;
}

.about-hero-content h1 {
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    color: var(--silver-grey);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* About Mission Section */
.about-mission {
    background: var(--dark-bg);
    padding: 100px 50px;
    text-align: center;
    position: relative;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
}

.mission-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission-item {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    background: rgba(0, 51, 102, 0.2);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

.mission-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--bright-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mission-item:hover {
    transform: translateY(-15px);
    background: rgba(0, 51, 102, 0.4);
    border-color: rgba(215, 38, 61, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.mission-item:hover::after {
    transform: scaleX(1);
}

.mission-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.mission-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--bright-red);
    transition: width 0.3s ease;
}

.mission-item:hover h3::after {
    width: 60px;
}

.mission-item p {
    color: var(--silver-grey);
    font-size: 1.1rem;
    line-height: 1.7;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: rgba(215, 38, 61, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--bright-red);
    transition: all 0.4s ease;
    border: 2px solid rgba(215, 38, 61, 0.2);
}

.mission-item:hover .mission-icon {
    background: rgba(215, 38, 61, 0.2);
    transform: rotateY(180deg);
}

/* Services Page Hero */
.services-page-hero {
    height: 60vh;
    background: linear-gradient(to bottom, var(--dark-bg) 0%, rgba(0, 30, 60, 0.9) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/services-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
}

.services-page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 20, 33, 0.7) 0%, rgba(10, 20, 33, 0.5) 100%),
        radial-gradient(circle at center, rgba(10, 20, 33, 0.4) 0%, rgba(10, 20, 33, 0.8) 100%);
    z-index: 2;
}

.services-hero-content {
    text-align: center;
    padding: 0 50px;
    max-width: 900px;
    position: relative;
    z-index: 3;
}

.services-hero-content h1 {
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.services-hero-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    color: var(--silver-grey);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Contact Page Hero */
.contact-page-hero {
    height: 60vh;
    background: linear-gradient(to bottom, var(--dark-bg) 0%, rgba(0, 30, 60, 0.9) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/images/contact-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
}

.contact-page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 20, 33, 0.7) 0%, rgba(10, 20, 33, 0.5) 100%),
        radial-gradient(circle at center, rgba(10, 20, 33, 0.4) 0%, rgba(10, 20, 33, 0.8) 100%);
    z-index: 2;
}

/* COMPLETE CSS RULE - Make sure this section is properly closed */
.about-page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 20, 33, 0.7) 0%, rgba(10, 20, 33, 0.5) 100%),
        radial-gradient(circle at center, rgba(10, 20, 33, 0.4) 0%, rgba(10, 20, 33, 0.8) 100%);
    z-index: 2;
}

/* ==== COMPREHENSIVE MOBILE FIXES ==== */
@media screen and (max-width: 768px) {
    /* Fix hero section */
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 20px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
        margin-bottom: 20px;
        word-wrap: break-word;
    }
    
    /* Fix offerings section */
    .offerings-container {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .offering-item {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    /* Fix services grid */
    .services-container {
        grid-template-columns: 1fr !important;
        padding: 0 20px;
    }
    
    .services-container.three-columns {
        grid-template-columns: 1fr !important;
    }
    
    /* Fix benefits grid */
    .benefits-container {
        grid-template-columns: 1fr !important;
        padding: 0 20px;
    }
    
    /* Fix process steps */
    .process-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    
    .process-step {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
    
    .process-connector {
        display: none;
    }
    
    /* Fix client categories */
    .clients-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .client-category {
        width: 100%;
    }
    
    /* Fix navigation */
    .mobile-nav-toggle {
        display: block !important;
        background: transparent;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }
}

/* Extra small devices */
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }
    
    .tagline {
        font-size: 0.9rem !important;
        line-height: 1.4;
    }
    
    .section-title h2 {
        font-size: 1.8rem !important;
    }
    
    .offering-item {
        padding: 25px 15px;
    }
}

/* Fix horizontal scroll issue */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}
