/* ============================================
   SkyScape Aviation - Main Stylesheet
   Colors: Primary #1E5E8E, Secondary #E0CEA6
============================================ */

/* CSS Variables */
:root {
    --primary: #1E5E8E;
    --primary-dark: #154a70;
    --secondary: #E0CEA6;
    --secondary-light: #f0e4c4;
    --text-dark: #1A2B3C;
    --text-light: #546E7A;
    --bg-light: #F4F7F9;
    --white: #FFFFFF;
    --gray-border: #e0e0e0;
    --font-head: 'Inter', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container-width: 1200px;
    --border-radius: 4px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 94, 142, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header Styles */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    top: 0;
    z-index: 100;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.site-main {
    margin-top: 10px;
    padding-top: 10px;
}

/* Logo */
.custom-logo {
    width: 250px !important;
    max-width: 250px !important;
    height: auto !important;
}

.logo img {
    width: 250px;
    height: auto;
}

.logo-skyscape {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.logo-aviation {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

/* Navigation */
.primary-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.primary-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
    color: var(--primary);
}

.primary-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.primary-menu a:hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
}

/* ============================================
   Page Hero Banner - Full Width, 200px Height
============================================ */
.page-hero-banner {
    position: relative;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0;
    }

.page-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.page-hero-banner .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.page-hero-banner h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 1px;
}

.page-hero-banner .breadcrumb {
    font-size: 0.85rem;
}

.page-hero-banner .breadcrumb a {
    color: #F39C12;
    text-decoration: none;
}

.page-hero-banner .breadcrumb span {
    color: #fff;
}

/* Default gradient background if no image */
.page-hero-banner {
    background: linear-gradient(135deg, #1E5E8E 0%, #F39C12 100%);
}
/* ============================================
   About & Safety Page Layout - Text Left, Image Right
============================================ */
.about-page-wrapper,
.safety-page-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-grid,
.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text on LEFT */
.about-content,
.safety-content {
    grid-column: 1;
    order: 1;
}

/* Image on RIGHT */
.about-image,
.safety-image {
    grid-column: 2;
    order: 2;
}

.about-image img,
.safety-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover,
.safety-image img:hover {
    transform: scale(1.02);
}

.about-content h2,
.safety-content h2 {
    color: #1E5E8E;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.about-content h2:after,
.safety-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #F39C12;
}

.about-content p,
.safety-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.about-content ul,
.safety-content ul {
    margin: 20px 0;
    padding-left: 0;
}

.about-content li,
.safety-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.about-content li:before,
.safety-content li:before {
    content: '✓';
    color: #F39C12;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Partner Logos */
.partner-logos {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.partner-logos h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #1A2B3C;
}

.partner-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.partner-item {
    background: #f0f4f8;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: #1E5E8E;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.partner-item:hover {
    background: #1E5E8E;
    color: #fff;
    transform: translateY(-3px);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1A2B3C;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #1E5E8E;
    box-shadow: 0 0 0 3px rgba(30,94,142,0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-top: 15px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin-top: 15px;
}

/* ============================================
   Hero Carousel Styles
============================================ */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    padding: 60px 0;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #1E5E8E;
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #1E5E8E;
    transform: scale(1.2);
}

/* ============================================
   Value Proposition Section
============================================ */
.value-prop-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1E5E8E;
}

.text-accent {
    color: #F39C12;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #F39C12;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f0e4c4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 2rem;
    color: #1E5E8E;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1A2B3C;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #1E5E8E;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #F39C12;
    gap: 10px;
}

/* ============================================
   Featured Products Section
============================================ */
.featured-products-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-category-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-category-card:hover .product-image img {
    transform: scale(1.05);
}

.product-category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1E5E8E;
}

.product-category-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.text-center {
    text-align: center;
}

/* ============================================
   Why Us Section
============================================ */
.why-us-section {
    padding: 80px 0;
    background: #fff;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-col .lead-text {
    font-size: 1.3rem;
    color: #1E5E8E;
    margin-bottom: 20px;
    font-weight: 500;
}

.content-col p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.certification-logos {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cert-item {
    text-align: center;
}

.cert-placeholder {
    background: #1E5E8E;
    color: white;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cert-placeholder:hover {
    background: #F39C12;
    transform: translateY(-3px);
}

.cert-item span {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
}

.image-placeholder {
    background: linear-gradient(135deg, #1E5E8E 0%, #F39C12 100%);
    color: white;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Page Two Column Grid */
.contact-page-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info on LEFT */
.contact-info {
    grid-column: 1;
    order: 1;
}

/* Contact Form on RIGHT */
.contact-form {
    grid-column: 2;
    order: 2;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 1;
    }
    
    .contact-form {
        order: 2;
    }
}
/* ============================================
   Footer
============================================ */
/* Footer */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   Responsive Design
============================================ */
@media (max-width: 1200px) {
    .container {
        margin-top: 0 auto;
        padding-top: 20px;
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        margin: 5px 0;
        transition: var(--transition);
    }
    .primary-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .primary-menu.active {
        display: flex;
    }
    .hero-section {
        height: 400px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .page-hero-banner {
        height: 150px;
    }
    .page-hero-banner h1 {
        font-size: 1.6rem;
    }
    .about-grid,
    .safety-grid,
    .contact-grid,
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-image,
    .safety-image,
    .contact-form {
        order: 2;
    }
    .about-content,
    .safety-content,
    .contact-info {
        order: 1;
    }
    .value-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .certification-logos {
        justify-content: center;
    }
    .image-placeholder {
        height: 200px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .custom-logo {
        width: 150px !important;
    }
    .cert-placeholder {
        width: 90px;
        height: 60px;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.bg-light {
    background: var(--bg-light);
}
/* Adjust content padding after hero banner */
.entry-content {
    margin-top: 0;
}

/* For About Us and Safety pages that have custom wrappers */
.about-page-wrapper,
.safety-page-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
}
/* ============================================
   Fix Spacing Issues
============================================ */
.site-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.page-hero-banner {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.site-main {
    margin-top: 10px !important;
    padding-top: 10px !important;
}

.entry-content {
    margin-top: 0 !important;
}

/* Ensure hero banner appears correctly */
body > .page-hero-banner:first-of-type {
    margin-top: 0 !important;
}
/* Certification Images */
.certification-logos {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.cert-item {
    text-align: center;
}

.cert-image {
    width: 120px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.cert-image:hover {
    transform: scale(1.05);
}

.cert-item span {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

/* Quality Image */
.quality-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.quality-image:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .certification-logos {
        justify-content: center;
    }
    
    .cert-image {
        width: 100px;
        height: 70px;
    }
}
/* ============================================
   OEM Partners Carousel Section
============================================ */
.oem-partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a2a3f 0%, #1E5E8E 50%, #154a70 100%);
    position: relative;
    overflow: hidden;
}

.oem-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(243,156,18,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.oem-partners-section .section-title {
    color: #fff;
}

.oem-partners-section .section-title:after {
    background: #F39C12;
}

.oem-partners-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.oem-partners-carousel {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 50px;
}

.oem-carousel-container {
    overflow: hidden;
    margin: 0 10px;
}

.oem-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.oem-partner-card {
    flex: 0 0 calc(25% - 22.5px);
    min-width: calc(25% - 22.5px);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.oem-partner-card:hover {
    transform: translateY(-10px);
    background: #fff;
    border-color: #F39C12;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.partner-logo-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.oem-partner-card:hover .partner-logo-wrapper {
    background: linear-gradient(135deg, #1E5E8E 0%, #F39C12 100%);
    transform: scale(1.05);
}

.partner-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.oem-partner-card:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A2B3C;
    margin-bottom: 12px;
}

.partner-description {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Carousel Navigation Buttons */
.oem-carousel-prev,
.oem-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.oem-carousel-prev {
    left: 0;
}

.oem-carousel-next {
    right: 0;
}

.oem-carousel-prev:hover,
.oem-carousel-next:hover {
    background: #F39C12;
    border-color: #F39C12;
    transform: translateY(-50%) scale(1.1);
}

/* Carousel Dots */
.oem-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.oem-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.oem-carousel-dot.active {
    background: #F39C12;
    width: 25px;
    border-radius: 10px;
}

.oem-carousel-dot:hover {
    background: #F39C12;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .oem-partner-card {
        flex: 0 0 calc(33.33% - 20px);
        min-width: calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .oem-partners-section {
        padding: 60px 0;
    }
    .oem-partners-carousel {
        padding: 20px 35px;
    }
    .oem-partner-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
        padding: 20px 15px;
    }
    .partner-logo-wrapper {
        width: 90px;
        height: 90px;
    }
    .partner-logo-img {
        width: 60px;
        height: 60px;
    }
    .partner-name {
        font-size: 1.1rem;
    }
    .partner-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .oem-partners-carousel {
        padding: 20px 30px;
    }
    .oem-partner-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .oem-carousel-prev,
    .oem-carousel-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
/* ============================================
   Gradient Backgrounds for Sections
============================================ */

/* Hero Section Gradient Overlay */
.hero-section .slide-bg::after {
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(30,94,142,0.3) 100%);
}

/* Value Proposition Section */
.value-prop-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

/* Featured Products Section */
.featured-products-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
}

/* Why Us Section */
.why-us-section {
    background: linear-gradient(135deg, #fff 0%, #f5f7fa 100%);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

/* CTA Box Gradient */
.value-cta-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Certification Logos Background */
.certification-logos {
    background: linear-gradient(135deg, rgba(30,94,142,0.05) 0%, rgba(243,156,18,0.05) 100%);
    padding: 20px;
    border-radius: 16px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1A2B3C 0%, #0F1A24 100%);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1E5E8E, #F39C12, #1E5E8E);
}
/* Ensure carousel dots are visible */
.oem-carousel-dots {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    min-height: 20px;
}

.oem-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.oem-carousel-dot.active {
    background: #F39C12;
    width: 25px;
    border-radius: 10px;
}

.oem-carousel-dot:hover {
    background: #F39C12;
    transform: scale(1.2);
}