/* i-Space Systems - Complete CSS Styles */

/* ====== VARIABLES ====== */
:root {
    --primary: #002e5d; /* Dark blue */
    --secondary: #e40000; /* Red */
    --accent: #00a0e9; /* Light blue */
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 6px;
    --transition: all 0.3s ease;
}

/* ====== BASE STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

.container-fluid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Spacing utilities */
.py-5 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.mb-5 { margin-bottom: 3rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mt-4 { margin-top: 2rem !important; }
.me-3 { margin-right: 1rem !important; }

/* Text utilities */
.text-center { text-align: center !important; }
.text-white { color: #fff !important; }
.text-primary { color: var(--primary) !important; }
.small { font-size: 0.875rem !important; }

/* Flex utilities */
.d-flex { display: flex !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }

/* ====== ANIMATIONS ====== */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-play-state: paused;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== NAVIGATION ====== */
.main-navbar {
    background: #020617 !important; /* Dark space blue from theme */
    box-shadow: 0 4px 30px rgba(220, 38, 38, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0 !important;
    transition: var(--transition);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: brightness(1.1);
}

.navbar-nav .nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    color: #94a3b8 !important; /* Slate color from theme */
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0 !important;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626 !important; /* Red accent from theme */
}

/* Red underline animation - updated with theme red */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #dc2626; /* Theme red */
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #dc2626; /* Theme red */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Dropdown menu - updated with theme colors */
.dropdown-menu {
    background-color: #020617; /* Dark space blue */
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    min-width: 200px;
}

.dropdown-item {
    color: #94a3b8 !important; /* Slate color */
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    background: transparent;
}

.dropdown-item:hover {
    background-color: rgba(220, 38, 38, 0.1);
    color: #dc2626 !important; /* Theme red */
}

/* Nav button - updated with theme red */
.nav-btn {
    background-color: #dc2626; /* Theme red */
    color: #fff !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 4px;
    margin-left: 1rem;
    border: 2px solid #dc2626;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background-color: transparent;
    color: #dc2626 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Optional: Add a subtle red glow effect on hover for nav items */
.nav-item:hover .nav-link {
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.3);
}

/* Mobile menu button - updated with theme colors */
.navbar-toggler {
    border: 1px solid rgba(220, 38, 38, 0.3);
    background-color: rgba(220, 38, 38, 0.1);
}

.navbar-toggler-icon {
    background-image: url('images/others/longwing.webp');
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar-nav .nav-item {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .nav-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        display: inline-block;
        width: auto;
    }
}

/* Dropdown menu */
.dropdown-menu {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 200px;
}

.dropdown-item {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--light);
    color: var(--primary);
}

/* ====== HERO SECTION ====== */
.hero-section {
    min-height: 50vh;
    background:url('images/background/cover.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    margin-top: 80px;
    padding: 100px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Hero Stats and Features */
.hero-stats,
.platform-features,
.service-stats {
    margin-top: 2rem;
}

.hero-stats .stat-item,
.service-stats .stat-item,
.industries-hero .stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats .stat-item strong,
.service-stats .stat-item strong,
.industries-hero .stat-item strong {
    display: block;
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 0.25rem;
}

.hero-stats .stat-item span,
.service-stats .stat-item span,
.industries-hero .stat-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.feature-item i {
    color: #dc2626;
}

.hero-image-container img,
.careers-hero-image img,
.industries-hero-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}



/* ====== BUTTONS ====== */
.btn {
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(228, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #c10000 !important;
    border-color: #c10000 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(228, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
}

.btn-outline:hover {
    background-color: #fff !important;
    color: var(--primary) !important;
    transform: translateY(-3px);
}

/* ====== SECTION STYLES ====== */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--primary);
    font-size: 2.5rem;
    line-height: 1.2;
}



.section-title.center {
    text-align: center;
    display: block;
}



.section-subtitle {
    max-width: 700px;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Dark section background */
.bg-dark-section {
    background-color: #f8fafc !important;
    position: relative;
}

.bg-dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 46, 93, 0.1), transparent);
}

/* ====== CARDS ====== */
.case-study-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.5s ease;
}

.case-study-card:hover .card-image {
    /* zoom removed */
}

.case-study-content {
    padding: 1.5rem;
    position: relative;
}

.card-title {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Product badges */
.product-badge {
    display: inline-block;
    background-color: var(--accent);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

/* ====== PARTNERS SECTION ====== */
.partners-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    overflow: hidden;
}

.partners-marquee-wrapper {
    overflow: hidden;
    margin-top: 3rem;
    padding: 1rem 0;
}

.partners-marquee {
    display: flex;
    gap: 2rem;
    animation: marquee-scroll 45s linear infinite;
    width: max-content;
}

.partners-marquee {
    cursor: grab;
}

.partners-marquee.is-dragging {
    cursor: grabbing;
    user-select: none;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-item {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    min-width: 280px;
    flex-shrink: 0;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.partner-info h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.partner-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ====== STATS SECTION ====== */
.stats-white {
    background-color: #fff;
    padding: 80px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====== CLIENTS SECTION ====== */
.clients {
    padding: 20px 0;
    background-color: #fff;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 0rem;
}

.client-item {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-logo {
    height: 120px;
    width: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.client-info h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.client-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ====== CERTIFICATIONS SECTION ====== */
.certifications {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.certification-item {
    padding: 2rem;
}

.certification-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-item p {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    padding: 0 0 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.testimonial-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-author h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ====== ABOUT SECTION ====== */
.content-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

/* ====== CAREERS SECTION ====== */
.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.career-item {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.career-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.career-item h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.career-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.career-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.career-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.career-details i {
    color: var(--accent);
}

/* ====== CONTACT SECTION ====== */
.contact-section {
	min-height: 50vh;
    background:linear-gradient(185deg, 
        rgba(0, 46, 93, 0.6) 0%, /* More transparent - 60% */
        rgba(0, 46, 93, 0.4) 10%),url('images/background/dji.webp');/* More transparent - 40% */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    margin-top: 80px;
    padding: 100px 0;
}

.contact-section h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Form styles */
.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fff;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 160, 233, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ====== NEWS SECTION ====== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.news-date {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.news-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.news-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary);
    gap: 0.75rem;
}

/* ====== FOOTER ====== */
.main-footer {
    min-height: 50vh;
    background:linear-gradient(185deg, 
        rgba(0, 46, 93, 0.6) 0%, /* More transparent - 60% */
        rgba(0, 46, 93, 0.4) 10%),url('images/background/footer.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    margin-top: 80px;
    padding: 100px 0;
}


.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.copyright {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--secondary);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-item {
        margin-left: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.625rem 1.5rem;
    }
    
    .container-fluid {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .nav-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem;
    }
    
    .partners-grid,
    .clients-grid,
    .testimonials-grid,
    .careers-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .main-navbar,
    .btn,
    .social-icon,
    .read-more {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .container-fluid {
        max-width: 100%;
        padding: 0;
    }
}
 /* Careers Hero */
  .careers-hero {
    min-height: 50vh;
    background: url('images/background/cover.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 80px;
    padding: 100px 0;
  }

    .platforms-hero {
    min-height: 50vh;
    background: url('images/background/cover.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 80px;
    padding: 100px 0;
  }
    .industries-hero {
    min-height: 50vh;
    background: url('images/background/cover.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 80px;
    padding: 100px 0;
  }
  
  /* Benefit Items */
  .benefit-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    height: 100%;
  }
  
  .benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .benefit-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
  }
  
  /* Career Item Enhancements */
  .career-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .career-header .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  
  .career-summary {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .career-description {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
  }
  
  .career-description h6 {
    color: var(--primary);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .career-description ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .career-description li {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .career-salary {
    color: var(--primary);
    font-size: 0.9rem;
  }
  
  .career-salary i {
    margin-right: 0.5rem;
  }
  
  /* Culture Section */
  .culture-points {
    margin-top: 2rem;
  }
  
  .culture-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .culture-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
  }
  
  .culture-item h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .culture-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
  }
  
  .culture-image img {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  /* Process Timeline */
  .process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
  }
  
  .process-step {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  
  .step-content {
    flex: 1;
    padding-top: 0.5rem;
  }
  
  .step-content h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .step-content p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
  }
  
  /* Team Testimonials */
  .team-testimonial {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
  }
  
  .testimonial-content {
    margin-bottom: 1.5rem;
  }
  
  .testimonial-content p {
    color: var(--gray);
    font-style: italic;
    line-height: 1.6;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonial-author h6 {
    color: var(--primary);
    margin: 0;
    font-size: 1rem;
  }
  
  .testimonial-author p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
  }
  
  /* FAQ */
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .faq-question:hover {
    background: #f8f9fa;
  }
  
  .faq-question i {
    transition: transform 0.3s;
  }
  
  .faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 0 1.5rem;
    background: white;
  }
  
  .faq-answer p {
    padding: 1.5rem 0;
    margin: 0;
    color: var(--gray);
    border-top: 1px solid #eee;
  }
  
  /* CTA Section */
  .cta-careers {
    background: linear-gradient(135deg, var(--primary) 0%, #003a7a 100%);
    color: white;
    text-align: center;
  }
  
  .cta-careers .btn-outline {
    border-color: white;
    color: white;
  }
  
  .cta-careers .btn-outline:hover {
    background: white;
    color: var(--primary);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .careers-hero .btn {
      width: 100%;
      margin-bottom: 1rem;
    }
    
    .process-timeline::before {
      left: 25px;
    }
    
    .step-number {
      width: 50px;
      height: 50px;
      font-size: 1rem;
      margin-right: 1.5rem;
    }
  }
  
  /* Agriculture Sections Styles */
.agriculture-spraying {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.agriculture-seeding {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.agriculture-benefits {
    background-color: #f8f9fa;
}

.ag-feature {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 8px;
    margin-bottom: 8px;
}

.ag-stats {
    background: rgba(13, 110, 253, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.ag-stats h3 {
    font-weight: 800;
    font-size: 1.8rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ag-stats .col-4 {
        margin-bottom: 15px;
    }
    
    .ag-stats .col-4:last-child {
        margin-bottom: 0;
    }
} 
  
  @media (max-width: 576px) {
    .career-header {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .culture-item {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

  /* Services Page Specific Styles */
  .services-hero {
    min-height: 50vh;
    background: url('images/background/cover.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 80px;
    padding: 100px 0;
  }
  
  .service-card {
    background: #0f172a;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
  }
  
  .service-icon {
    color: #dc2626;
    margin-bottom: 1.5rem;
  }
  
  .service-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .service-description {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .service-features h6 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .service-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }
  
  .service-features li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .service-features i {
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  
  .service-specs {
    background: rgba(2, 6, 23, 0.5);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .spec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  
  .spec strong {
    color: #fff;
  }
  
  .spec span {
    color: #94a3b8;
  }
  
  .service-tag {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .case-results {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
  }
  
  .result {
    text-align: center;
  }
  
  .result strong {
    display: block;
    color: #dc2626;
    font-size: 1.2rem;
    font-weight: 800;
  }
  
  .result span {
    color: #94a3b8;
    font-size: 0.8rem;
  }
  
  .training-item {
    background: #0f172a;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
  }
  
  .training-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .training-header h4 {
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
  }
  
  .training-item p {
    color: #94a3b8;
    margin-bottom: 1rem;
  }
  
  .training-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .training-item li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .training-item li::before {
    content: '•';
    color: #dc2626;
    font-weight: bold;
  }
  
  .training-badge {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  .process-step-card {
    background: #0f172a;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    height: 100%;
  }
  
  .step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(220, 38, 38, 0.1);
    line-height: 1;
  }
  
  .step-icon {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  
  .process-step-card h5 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .process-step-card p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
  }
  
  .package-card {
    background: #0f172a;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: var(--transition);
    position: relative;
  }
  
  .package-card.featured {
    border-color: #dc2626;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);

    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .package-header h3 {
    color: #fff;
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
  }
  
  .package-subtitle {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .package-price {
    margin-bottom: 1.5rem;
  }
  
  .price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
  }
  
  .period {
    color: #94a3b8;
    font-size: 0.9rem;
  }
  
  .package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .package-features li {
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .package-features i {
    color: #dc2626;
    font-size: 0.9rem;
  }
  
  .package-features .na i {
    color: #64748b;
  }
  
  .coverage-list {
    margin-top: 2rem;
  }
  
  .country {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .country i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
  }
  
  .country h5 {
    color: #fff;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
  }
  
  .country p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
  }
  
  .coverage-note {
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .coverage-note i {
    color: #dc2626;
    font-size: 1.5rem;
  }
  
  .coverage-note p {
    color: #94a3b8;
    margin: 0;
    font-style: italic;
  }
  
  .inquiry-card {
    background: #0f172a;
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
  }
  
  .inquiry-card h2 {
    color: #fff;
  }
  
  .inquiry-card p {
    color: #94a3b8;
  }
  
  .inquiry-card .form-label {
    color: #fff;
    font-weight: 500;
  }
  
  .inquiry-card .form-control {
    background: #020617;
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #fff;
  }
  
  .inquiry-card .form-control:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
  }
  
  .inquiry-card .form-check-label {
    color: #94a3b8;
  }
  
  .cta-services {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
  }
  
  @media (max-width: 768px) {
    .service-card {
      padding: 1.5rem;
    }
    
    .inquiry-card {
      padding: 1.5rem;
    }
    
    .package-card.featured {
      transform: scale(1);
    }
  }

  /* Missing benefit card styles */
.benefits-grid {
    margin-top: 2rem;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* CTA sections */
.cta-industries, .cta-services, .cta-careers, .cta-platforms {
    background: linear-gradient(135deg, var(--primary) 0%, #003a7a 100%);
    color: white;
    padding: 80px 0;
}

/* Package cards for Services page */
.package-subtitle {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Platform Guide Card Styles (for Platforms.html) */
.guide-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.guide-card h5 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.guide-stats {
    margin-top: 1rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.guide-stats .stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.guide-stats .label {
    color: var(--gray);
}

.guide-stats .value {
    color: var(--primary);
    font-weight: 600;
}

/* Application tags (Platforms.html) */
.app-tag {
    display: inline-block;
    background: rgba(0, 160, 233, 0.1);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Comparison table (Platforms.html) */
.comparison-table .table {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 0;
}

.comparison-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.comparison-table td {
    padding: 1rem;
    vertical-align: middle;
}

.comparison-table tr:hover {
    background: rgba(0, 46, 93, 0.02);
}

/* Service Packages border (Services.html) */
.case-study-card.border-primary {
    border-color: var(--secondary) !important;
    border-width: 2px !important;
}
/* Specification items styling for platform cards */
.case-study-card .row .col-6 {
    font-family: 'Inter', 'Segoe UI', monospace !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
}

/* Fixed-Wing System specs - Blue theme */
.case-study-card:has(.card-title:contains("Fixed-Wing Systems")) .col-6,
.case-study-card .card-title:contains("Fixed-Wing Systems") + .row .col-6 {
    color: #0066cc !important; /* Professional blue */
    background: rgba(0, 102, 204, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px !important;
    transition: all 0.3s ease;
}

/* VTOL System specs - Purple/Teal theme */
.case-study-card:has(.card-title:contains("VTOL Systems")) .col-6,
.case-study-card .card-title:contains("VTOL Systems") + .row .col-6 {
    color: #00a896 !important; /* Teal green */
    background: rgba(0, 168, 150, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px !important;
    transition: all 0.3s ease;
}

/* Multirotor System specs - Orange/Amber theme */
.case-study-card:has(.card-title:contains("Multirotor Systems")) .col-6,
.case-study-card .card-title:contains("Multirotor Systems") + .row .col-6 {
    color: #f39c12 !important; /* Amber/Orange */
    background: rgba(243, 156, 18, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px !important;
    transition: all 0.3s ease;
}

/* Agricultural Spraying specs - Green theme */
.case-study-card:has(.card-title:contains("Agricultural Spraying")) .col-6,
.case-study-card .card-title:contains("Agricultural Spraying") + .row .col-6 {
    color: #27ae60 !important; /* Green */
    background: rgba(39, 174, 96, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px !important;
    transition: all 0.3s ease;
}

/* Icons in spec items */
.case-study-card .col-6 i {
    color: var(--secondary) !important; /* Keeps icons red for contrast */
    font-size: 0.9rem;
}

/* Hover effect for spec items */
.case-study-card .col-6:hover {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.02) !important;
}
