/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Airelon:wght@400;600;700;800&display=swap');

/* Global Hero Section Styles */
.component-hero, .addons-hero, .page-header, .about-hero, .product-hero, .category-hero, .carwash-hero {
    background: white !important;
    color: #000000 !important;
    padding-top: 140px !important;
    margin-top: 0 !important;
}

.component-hero h1, .addons-hero h1, .page-header h1, .about-hero h1, .about-hero-content h1, .product-hero h1, .product-title, .category-hero h1, .carwash-hero h1 {
    color: #000000 !important;
    border-bottom: none !important;
}

.product-title {
    display: block !important;
    margin: 0 auto 20px !important;
    text-align: center !important;
    width: fit-content !important;
    max-width: 100%;
}

.product-main {
    max-width: 1600px !important;
    margin: 20px auto !important;
    padding: 24px 24px 0 !important;
}

.about-hero-text p {
    color: #000000 !important;
}

/* Remove all double underlines */
h1, h2, h3, h4, h5, h6 {
    border-bottom: none !important;
}

/* Page Heading Styles */
.page-heading {
    position: relative;
    display: inline-block;
    margin: 0 auto 40px;
    color: #000000 !important;
    text-align: center;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: none !important;
}

.page-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background-color: #000000 !important;
    border-radius: 0;
    transition: all 0.3s ease;
}

.page-heading:hover::after {
    width: 150px;
}

/* Full width underline variant */
.page-heading.full-width::after {
    width: 80% !important;
}

.page-heading.full-width:hover::after {
    width: 90% !important;
}

/* Blue underline variant - previously orange */
.page-heading.orange-underline::after {
    background-color: #0a2342 !important;
    height: 5px !important;
}

/* Section Headings */
.section-heading {
    position: relative;
    display: inline-block;
    margin: 30px 0 25px;
    color: #000000 !important;
    font-size: 2.2rem;
    font-weight: 700;
    padding-bottom: 10px;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 5px;
    background-color: #0a2342 !important;
    border-radius: 0;
    transition: width 0.3s ease;
}

.section-heading:hover::after {
    width: 80px;
}

/* Modern Carousel Styles */
.modern-carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

.modern-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 3;
}

.carousel-content {
    max-width: 600px;
    padding: 0 60px;
    color: white;
    animation: slideInLeft 1s ease-out;
}

.carousel-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Airelon', 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.4;
    opacity: 0.95;
    font-weight: 400;
}

.carousel-cta-btn {
    background: linear-gradient(135deg, #009fe3, #007bb3);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,159,227,0.3);
}

.carousel-cta-btn:hover {
    background: linear-gradient(135deg, #007bb3, #005b8e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,159,227,0.4);
}

.modern-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.modern-carousel-btn:hover {
    background: rgba(0,159,227,0.8);
    border-color: rgba(0,159,227,1);
    transform: translateY(-50%) scale(1.1);
}

.modern-carousel-btn.prev {
    left: 30px;
}

.modern-carousel-btn.next {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #009fe3;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-carousel-container {
        height: 400px;
    }
    
    .carousel-content {
        padding: 0 30px;
    }
    
    .carousel-title {
        font-size: 2.2rem;
    }
    
    .carousel-subtitle {
        font-size: 1.1rem;
    }
    
    .modern-carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .modern-carousel-btn.prev {
        left: 15px;
    }
    
    .modern-carousel-btn.next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .modern-carousel-container {
        height: 350px;
    }
    
    .carousel-content {
        padding: 0 20px;
    }
    
    .carousel-title {
        font-size: 1.8rem;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .carousel-cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

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

body {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #f7f9fb;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
}

/* Top Bar Styles */
.top-bar {
    background: #fff;
    color: #009fe3;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #e6e6e6;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .contact-info span {
    margin-right: 20px;
    color: #009fe3;
}

.top-bar .social-links a {
    color: #009fe3;
    margin-left: 12px;
    transition: color 0.2s;
}

.top-bar .social-links a:hover {
    color: #005b8e;
}

/* Navigation Styles */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    z-index: 100;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo a {
    text-decoration: none;
    color: #333;
}

.logo h1 {
    font-size: 1.7rem;
    color: #009fe3;
    font-weight: bold;
    letter-spacing: 1px;
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links li a {
    color: #009fe3;
    font-weight: 500;
    font-size: 1.08rem;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.nav-links li a:hover, .nav-links li a.active {
    color: #005b8e;
    border-bottom: 2px solid #009fe3;
}

.mobile-menu {
    display: none;
    font-size: 1.7rem;
    color: #009fe3;
    cursor: pointer;
}

/* Hero Section */
.hero, .careers-hero, .industries-hero, .media-hero, .contact-hero {
    background: linear-gradient(rgba(0,159,227,0.08), rgba(0,159,227,0.08)), #fff;
    text-align: center;
    padding: 20px 0 40px 0;
}

.hero h1, .careers-hero h1, .industries-hero h1, .media-hero h1, .contact-hero h1 {
    color: #009fe3;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero p, .careers-hero p, .industries-hero p, .media-hero p, .contact-hero p {
    color: #444;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Features Section */
.features, .job-listings, .industry-grid, .news-grid, .resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.feature-card, .job-card, .industry-card, .news-card, .resource-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,159,227,0.08);
    padding: 32px 24px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}

.feature-card:hover, .job-card:hover, .industry-card:hover, .news-card:hover, .resource-card:hover {
    box-shadow: 0 8px 32px rgba(0,159,227,0.16);
    transform: translateY(-4px);
}

.feature-card h3, .job-title h3, .industry-content h3, .news-content h3, .resource-card h3 {
    color: #009fe3;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-card ul, .industry-features {
    margin: 16px 0 0 0;
    padding: 0;
    list-style: none;
}

.feature-card ul li, .industry-features li {
    color: #009fe3;
    font-size: 1rem;
    margin-bottom: 6px;
    position: relative;
    padding-left: 22px;
}

.feature-card ul li:before, .industry-features li:before {
    content: '\2713';
    color: #009fe3;
    position: absolute;
    left: 0;
    font-size: 1.1em;
}

/* Buttons */
button, .apply-button, .submit-button, .cta-button, .download-button, .explore-btn, .filter-button, .tab-button {
    background: #009fe3;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,159,227,0.08);
    transition: background 0.2s, box-shadow 0.2s;
    outline: none;
    margin-top: 12px;
    text-decoration: none;
    display: inline-block;
}

button:hover, .apply-button:hover, .submit-button:hover, .cta-button:hover, .download-button:hover, .explore-btn:hover, .filter-button:hover, .tab-button:hover {
    background: #005b8e;
}

/* Section Titles */
section h2 {
    color: #009fe3;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 18px;
}

/* Footer Styles */
footer {
    background: #fff;
    color: #222;
    padding: 40px 0 0 0;
    border-top: 1px solid #e6e6e6;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 24px;
}

.footer-section h3 {
    color: #009fe3;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #009fe3;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #005b8e;
}

.footer-bottom {
    text-align: center;
    padding: 18px 0 12px 0;
    color: #888;
    font-size: 0.95rem;
    border-top: 1px solid #e6e6e6;
}

/* Responsive Design */
@media (max-width: 900px) {
    .main-nav .container {
        flex-direction: column;
        height: auto;
        padding: 12px 0;
    }
    .nav-links {
        gap: 18px;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav .container {
        flex-direction: row;
        height: 60px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        border-radius: 0 0 12px 12px;
        z-index: 1000;
    }
    .nav-links.show {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .features, .job-listings, .industry-grid, .news-grid, .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .contact-info span {
        display: block;
        margin: 5px 0;
    }

    .social-links {
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 28px;
    }
}

/*  Navbar */
.top-orange-bar {
    background: #f7931e;
    color: #fff;
    font-size: 15px;
    padding: 0;
}
.top-orange-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
}
.top-left-links a {
    color: #fff;
    margin-right: 24px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 15px;
}
.top-left-links a:last-child {
    margin-right: 0;
}
.search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 3px;
    padding: 2px 8px;
}
.search-bar input {
    border: none;
    outline: none;
    padding: 6px 8px;
    font-size: 15px;
    border-radius: 3px;
}
.search-bar button {
    background: none;
    border: none;
    color: #f7931e;
    font-size: 18px;
    cursor: pointer;
    margin-left: 4px;
}

/* Centered Header Brand Row */
.header-center-row {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: #009fe3;
    padding: 16px 0 8px 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
.logo-circle {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-right: 24px;
    flex-shrink: 0;
}
.main-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}
.company-name {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
    font-family: 'Airelon', 'Montserrat', Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.company-name:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 40px rgba(255,255,255,0.4);
}

/* Remove old header-center column styles if present */
.header-center { display: none !important; }

/* Center navbar links */
.main-nav.ats-style .container.nav-center {
    justify-content: center;
}
.main-nav.ats-style .nav-links {
    justify-content: center;
    width: 100%;
}

/* Remove old header paddings */
.header-brand, .logo-call-section { display: none !important; }

/* Ensure navbar is below header-brand and full width */
.main-nav.ats-style {
    background: #0a2342;
    padding: 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.main-nav.ats-style .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links li {
    margin: 0;
}
.nav-links li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 20px 25px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}
.nav-links li a.active, .nav-links li a:hover {
    color: #f7931e;
    border-bottom: 3px solid #f7931e;
}
.enquiry-btn {
    background: #f7931e;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 28px;
    border-radius: 3px;
    text-decoration: none;
    margin-left: 18px;
    transition: background 0.2s;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.enquiry-btn:hover {
    background: #d97a0b;
}

/* Space for dropdown/collapsible menu below navbar */
.navbar-dropdown-space {
    width: 100%;
    height: 24px;
    background: transparent;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #333333;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border: 1px solid #e0e0e0;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li a:last-child {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: #0a2342 !important;
    color: #fff !important;
    padding-left: 28px;
}

.dropdown-menu li a.active {
    background: #0a2342 !important;
    color: #fff !important;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: #f8f9fa;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 15px 24px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .dropdown-menu li a:hover {
        background: #e9ecef;
        padding-left: 24px;
    }
}

/* Company Pages Styles */
.page-header {
    background: white;
    color: #000000;
    text-align: center;
    padding: 140px 0 60px 0;
    margin-top: 0;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000000;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Us Page Styles */
.about-hero {
    background: white;
    color: #000000;
    padding: 140px 0 60px 0;
    margin-top: 0;
    margin-bottom: 0;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
    color: #000000;
}

.about-hero-text {
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 25px;
    text-align: justify;
}

.about-image-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-main-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.company-highlights {
    background: #f8f9fa;
    padding: 80px 0;
}

.company-highlights h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.highlight-card i {
    font-size: 3rem;
    color: #009fe3;
    margin-bottom: 20px;
}

.highlight-card h3 {
    color: #0a2342;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
}

/* Vision and Values Page Styles */
.vision-section {
    padding: 60px 0;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-text h2 {
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.vision-text h3 {
    color: #009fe3;
    font-size: 1.5rem;
    margin: 25px 0 15px 0;
}

.vision-text p, .vision-text ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.vision-text ul {
    padding-left: 20px;
}

.vision-text li {
    margin-bottom: 10px;
}

.vision-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.values-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.value-card i {
    font-size: 3rem;
    color: #009fe3;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #0a2342;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.mission-section {
    padding: 80px 0;
    text-align: center;
}

.mission-section h2 {
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.mission-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Our Visionaries Page Styles */
.leadership-team {
    padding: 60px 0;
}

.leadership-team h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    color: #0a2342;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.position {
    color: #009fe3;
    font-weight: 600;
    margin-bottom: 15px;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tag {
    background: #e3f2fd;
    color: #009fe3;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.board-directors, .management-team {
    background: #f8f9fa;
    padding: 80px 0;
}

.board-directors h2, .management-team h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.board-grid, .management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.director-card, .management-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-card:hover, .management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.director-card i, .management-card i {
    font-size: 3rem;
    color: #009fe3;
    margin-bottom: 20px;
}

.director-card h3, .management-card h3 {
    color: #0a2342;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.director-card p, .management-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Varadom Page Styles */
.key-advantages {
    padding: 60px 0;
}

.key-advantages h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.advantage-card i {
    font-size: 3rem;
    color: #009fe3;
    margin-bottom: 20px;
}

.advantage-card h3 {
    color: #0a2342;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

.competitive-edge {
    background: #f8f9fa;
    padding: 80px 0;
}

.competitive-edge h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.edge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.edge-text h3 {
    color: #009fe3;
    font-size: 1.5rem;
    margin: 25px 0 15px 0;
}

.edge-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.edge-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.customer-benefits {
    padding: 80px 0;
}

.customer-benefits h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: #009fe3;
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: #0a2342;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.success-stories {
    background: #f8f9fa;
    padding: 80px 0;
}

.success-stories h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.story-icon i {
    font-size: 3rem;
    color: #009fe3;
    margin-bottom: 20px;
}

.story-card h3 {
    color: #0a2342;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.story-card p {
    color: #666;
    line-height: 1.6;
}

/* Manufacturing Capabilities Page Styles */
.manufacturing-overview {
    padding: 60px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.overview-text h3 {
    color: #009fe3;
    font-size: 1.5rem;
    margin: 25px 0 15px 0;
}

.overview-text p, .overview-text ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.overview-text ul {
    padding-left: 20px;
}

.overview-text li {
    margin-bottom: 10px;
}

.overview-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.manufacturing-processes {
    background: #f8f9fa;
    padding: 80px 0;
}

.manufacturing-processes h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.processes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.process-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.process-card i {
    font-size: 3rem;
    color: #009fe3;
    margin-bottom: 20px;
}

.process-card h3 {
    color: #0a2342;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-card p {
    color: #666;
    line-height: 1.6;
}

.technology-equipment {
    padding: 80px 0;
}

.technology-equipment h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-text h3 {
    color: #009fe3;
    font-size: 1.5rem;
    margin: 25px 0 15px 0;
}

.tech-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.tech-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.quality-assurance {
    background: #f8f9fa;
    padding: 80px 0;
}

.quality-assurance h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quality-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.quality-card i {
    font-size: 3rem;
    color: #009fe3;
    margin-bottom: 20px;
}

.quality-card h3 {
    color: #0a2342;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.quality-card p {
    color: #666;
    line-height: 1.6;
}

.research-development {
    padding: 80px 0;
}

.research-development h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.rd-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rd-text h3 {
    color: #009fe3;
    font-size: 1.5rem;
    margin: 25px 0 15px 0;
}

.rd-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.rd-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Certificates & Achievements Page Styles */
.iso-certifications, .government-certs, .industry-certs, .udyam-certs {
    padding: 60px 0;
}

.iso-certifications h2, .government-certs h2, .industry-certs h2, .udyam-certs h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.cert-grid, .govt-grid, .industry-grid, .udyam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.cert-card, .govt-card, .industry-card, .udyam-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover, .govt-card:hover, .industry-card:hover, .udyam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.cert-image img, .govt-image img, .industry-image img, .udyam-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cert-info, .govt-info, .industry-info, .udyam-info {
    padding: 30px;
}

.cert-info h3, .govt-info h3, .industry-info h3, .udyam-info h3 {
    color: #0a2342;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.cert-info p, .govt-info p, .industry-info p, .udyam-info p {
    color: #666;
    line-height: 1.6;
}

.awards-recognition {
    background: #f8f9fa;
    padding: 80px 0;
}

.awards-recognition h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.award-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.award-card i {
    font-size: 3rem;
    color: #009fe3;
    margin-bottom: 20px;
}

.award-card h3 {
    color: #0a2342;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.award-card p {
    color: #666;
    line-height: 1.6;
}

.quality-milestones {
    padding: 80px 0;
}

.quality-milestones h2 {
    text-align: center;
    color: #0a2342;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.milestones-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.milestones-text h3 {
    color: #009fe3;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.milestones-text ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.milestones-text li {
    margin-bottom: 15px;
}

.milestones-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Footer Styles */
.footer {
    background: #0a2342;
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design for Company Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-grid, .vision-content, .edge-content, .overview-content, .tech-content, .rd-content, .milestones-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid, .govt-grid, .industry-grid, .udyam-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid, .values-grid, .advantages-grid, .benefits-grid, .stories-grid, .processes-grid, .quality-grid, .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .about-text h2, .vision-text h2, .overview-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    .logo-call-section .container, .main-nav.ats-style .container, .top-orange-bar .container {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }
    .main-nav.ats-style .container {
        align-items: stretch;
    }
    .nav-links {
        flex-wrap: wrap;
    }
    .enquiry-btn {
        margin: 12px 0 0 0;
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .main-logo {
        height: 40px;
    }
    .call-number {
        font-size: 1.2rem;
    }
    .nav-links li a {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    .logo-call-section .container, .main-nav.ats-style .container, .top-orange-bar .container {
        width: 98%;
    }
    .search-bar input {
        width: 90px;
    }
}

/* HERO CAROUSEL */
.hero-carousel-container {
  height: 1100px;
  max-width: 1400px;
  margin: 0 auto 32px auto;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  margin-top: 0 !important;
}
.hero-carousel {
  height: 1100px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf2fb;
}
.carousel-slide {
  height: 1100px;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s;
}
.carousel-slide.active {
  display: flex;
  animation: fadeIn 0.7s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  background: #fff;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  opacity: 0.85;
  transition: background 0.2s;
}
.carousel-btn:hover {
  background: #1251a3;
}
.carousel-btn.prev { left: 18px; }
.carousel-btn.next { right: 18px; }
.carousel-dots {
  text-align: center;
  margin: 10px 0 12px 0;
}
.carousel-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background: #b0c4de;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active {
  background: #1976d2;
}

.hero-tagline-section {
  text-align: center;
  margin: 24px 0 0 0;
}

/* PRODUCT CARDS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,159,227,0.08);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s;
  border-radius: 12px;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.18);
}
.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(25, 118, 210, 0.92);
  color: #fff;
  padding: 18px 12px 12px 12px;
  opacity: 0;
  transition: opacity 0.3s;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.product-card:hover .product-overlay {
  opacity: 1;
}
.product-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  margin-top: 8px;
  display: inline-block;
}

/* INDUSTRY SEGMENTS CARDS */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.segment-card {
  background: #f7fafd;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(25, 118, 210, 0.07);
  padding: 18px 8px 12px 8px;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  overflow: hidden;
}
.segment-card i {
  font-size: 2rem;
  color: #1976d2;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.segment-card h3 {
  margin: 0 0 0 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.segment-card .segment-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.98);
  color: #222;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,159,227,0.10);
  padding: 18px 12px;
  z-index: 2;
  font-size: 0.98rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.segment-card:hover .segment-popup {
  opacity: 1;
  pointer-events: auto;
}

/* CUSTOMER REVIEWS CARDS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(25, 118, 210, 0.09);
  padding: 24px 18px 18px 18px;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  animation: reviewFadeIn 0.7s;
}
@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.review-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 28px rgba(25, 118, 210, 0.13);
}
.reviewer {
  font-weight: 600;
  color: #1976d2;
  margin-bottom: 8px;
}
.review-text {
  font-size: 1.02rem;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-carousel-container { height: 350px; }
  .hero-carousel { height: 350px; }
  .carousel-slide, .carousel-slide img { height: 350px; object-fit: cover; }
  .products-grid, .segments-grid, .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero-carousel-container { height: 280px; }
  .hero-carousel { height: 280px; }
  .carousel-slide, .carousel-slide img { height: 280px; object-fit: cover; }
  .products-grid, .segments-grid, .reviews-grid { grid-template-columns: 1fr; }
}

/* About Us Card */
.about-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.10);
  padding: 38px 32px 32px 32px;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}
.about-card h2 {
  margin-top: 0;
  margin-bottom: 18px;
  color: #1976d2;
}
.about-card .about-text {
  font-size: 1.08rem;
  color: #333;
  line-height: 1.7;
}

/* More spacious sections */
.spaced-section {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

/* Increase spacing for all main sections */
.hero-carousel-container,
.hero-tagline-section,
.products-showcase,
.about-main,
.industry-segments,
.company-stages,
.customer-reviews,
.features {
  margin-top: 40px;
  margin-bottom: 56px;
}

.products-grid,
.segments-grid,
.reviews-grid {
  gap: 38px;
}
.product-card,
.segment-card,
.review-card {
  padding-bottom: 18px;
  padding-top: 18px;
}

@media (max-width: 700px) {
  .about-card {
    padding: 22px 8px 18px 8px;
  }
  .spaced-section {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .hero-carousel-container,
  .hero-tagline-section,
  .products-showcase,
  .about-main,
  .industry-segments,
  .company-stages,
  .customer-reviews,
  .features {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .products-grid,
  .segments-grid,
  .reviews-grid {
    gap: 18px;
  }
}

/* Journey Card and Flowchart */
.journey-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.10);
  padding: 48px 40px 40px 40px;
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}
.stages-flowchart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px !important;
  flex-wrap: wrap;
  margin-top: 40px !important;
  margin-bottom: 32px !important;
  overflow-x: auto;
}
.stage-step-card {
  background: #f7fafd;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(25, 118, 210, 0.07);
  width: 140px !important;
  height: 140px !important;
  min-width: 140px !important;
  min-height: 140px !important;
  max-width: 140px !important;
  max-height: 140px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
  overflow: hidden;
  cursor: pointer;
}
.stage-step-card .stage-year {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1976d2;
  text-align: center;
  transition: opacity 0.2s;
  z-index: 1;
}
.stage-step-card .stage-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #1976d2;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.13);
  padding: 8px 6px;
  z-index: 2;
  font-size: clamp(0.7rem, 2.5vw, 1rem);
  font-weight: 500;
  text-align: center;
  transition: opacity 0.25s;
  visibility: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.15;
  overflow: hidden;
  font-weight: bold;
}
.stage-step-card:hover .stage-desc,
.stage-step-card:focus .stage-desc {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.stage-step-card:hover .stage-year,
.stage-step-card:focus .stage-year {
  opacity: 0;
}
@media (max-width: 900px) {
  .stage-step-card {
    width: 90px !important;
    height: 90px !important;
    min-width: 90px !important;
    min-height: 90px !important;
    max-width: 90px !important;
    max-height: 90px !important;
  }
  .stage-step-card .stage-desc {
    font-size: clamp(0.55rem, 2vw, 0.85rem);
    padding: 4px 2px;
  }
}
.stage-step-card:not(:last-child) {
  margin-right: 0;
}
.stage-step-card .stage-year {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 8px;
}
.stage-step-card .stage-desc {
  font-size: 1rem;
  color: #333;
  margin-top: 4px;
}
.stage-step-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 28px rgba(25, 118, 210, 0.13);
}
.stage-arrow {
  font-size: 2rem !important;
  color: #1976d2;
  margin: 0 16px !important;
  user-select: none;
}
@media (max-width: 900px) {
  .stages-flowchart {
    gap: 12px !important;
    margin-top: 24px !important;
    margin-bottom: 16px !important;
  }
  .journey-card {
    padding: 18px 4px 18px 4px;
  }
  .stage-step-card {
    min-width: 100px !important;
    padding: 16px 8px 12px 8px !important;
  }
  .stage-arrow {
    margin: 0 6px !important;
    font-size: 1.5rem !important;
  }
}

/* Improved Modern Footer Styles */
.main-footer {
  background: #0a2342;
  color: #fff;
  padding: 0;
  margin-top: 64px;
  font-size: 1rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 24px 24px;
  gap: 40px 32px;
}
.footer-col {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 32px;
  box-sizing: border-box;
}
.footer-col h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
.footer-col ul li a:hover {
  color: #f7931e;
}
.footer-col p, .footer-col a {
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
  word-break: break-word;
}
.footer-col a {
  text-decoration: underline;
}
.footer-col a:hover {
  color: #f7931e;
}
.footer-social {
  margin: 18px 0 18px 0;
}
.footer-social a {
  color: #fff;
  font-size: 1.4rem;
  margin-right: 16px;
  display: inline-block;
  transition: color 0.2s;
}
.footer-social a:last-child {
  margin-right: 0;
}
.footer-social a:hover {
  color: #f7931e;
}
.footer-brochure-btn {
  display: inline-block;
  background: #f7931e;
  color: #fff;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 24px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s, color 0.2s;
}
.footer-brochure-btn:hover {
  background: #fff;
  color: #0a2342;
}
.footer-bottom {
  background: #07172e;
  color: #fff;
  text-align: center;
  padding: 18px 0 12px 0;
  font-size: 0.98rem;
  border-top: 1px solid #1a335a;
  margin-top: 0;
}
.footer-col.company-info p, .footer-col.company-info a {
  color: #fff;
  font-size: 1rem;
}
.footer-col.company-info i {
  color: #f7931e;
  margin-right: 8px;
}
@media (max-width: 1100px) {
  .footer-container {
    flex-wrap: wrap;
    gap: 24px 0;
  }
  .footer-col {
    min-width: 220px;
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 32px 8px 16px 8px;
  }
  .footer-col {
    margin-bottom: 24px;
    min-width: 0;
    max-width: 100%;
  }
}

.footer-container.four-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 48px;
  padding: 48px 24px 24px 24px;
}
.footer-col.logo-col {
  min-width: 160px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  object-fit: contain;
}
.footer-container.four-cols .footer-col {
  min-width: 180px;
  max-width: 260px;
  margin-bottom: 32px;
  padding-right: 16px;
  box-sizing: border-box;
  align-items: flex-start;
}
.footer-container.four-cols .footer-col h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  color: #fff;
  font-weight: 700;
}
.footer-container.four-cols .footer-col ul {
  margin-bottom: 18px;
}
.footer-container.four-cols .footer-col ul li {
  margin-bottom: 8px;
}
.footer-container.four-cols .footer-col p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 1100px) {
  .footer-container.four-cols {
    gap: 0 18px;
    padding: 32px 8px 16px 8px;
  }
  .footer-container.four-cols .footer-col {
    min-width: 140px;
    max-width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 800px) {
  .footer-container.four-cols {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 4vw 8px 4vw;
  }
  .footer-container.four-cols .footer-col {
    margin-bottom: 24px;
    min-width: 0;
    max-width: 100%;
    padding-right: 0;
  }
  .footer-logo {
    margin-bottom: 12px;
    width: 90px;
  }
}

.testimonial-style {
  background: #fff;
  padding: 64px 0 48px 0;
  position: relative;
}
.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-arrow {
  background: none;
  border: none;
  color: #444;
  font-size: 2.8rem;
  cursor: pointer;
  padding: 0 18px;
  transition: color 0.2s;
  user-select: none;
}
.testimonial-arrow:hover {
  color: #f7931e;
}
.testimonial-content {
  text-align: center;
  flex: 1 1 400px;
  max-width: 600px;
}
.testimonial-text {
  font-size: 1.18rem;
  font-style: italic;
  color: #222;
  margin-bottom: 24px;
}
.testimonial-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #f7931e;
  background: #f7f7f7;
  object-fit: cover;
}
.testimonial-name {
  font-weight: 700;
  color: #222;
  font-size: 1.1rem;
  margin-top: 8px;
  letter-spacing: 0.5px;
}
.testimonial-role {
  color: #072c6d;
  font-size: 1rem;
  margin-top: 2px;
}
@media (max-width: 700px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-arrow {
    font-size: 2.2rem;
    padding: 0 8px;
  }
}
/* Remove features section styles if not used */
.features, .feature-grid, .feature-card { display: none !important; }

.footer-bottom p {
  white-space: nowrap;
  text-align: center;
  margin: 0;
  font-size: 0.98rem;
}

.footer-container.four-cols.single-row-footer {
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0 48px;
}
.footer-container.four-cols.single-row-footer .footer-col {
  min-width: 180px;
  max-width: 260px;
  margin-bottom: 0;
  padding-right: 24px;
  box-sizing: border-box;
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .footer-container.four-cols.single-row-footer {
    flex-wrap: wrap;
    gap: 0 18px;
    padding: 32px 8px 16px 8px;
  }
  .footer-container.four-cols.single-row-footer .footer-col {
    min-width: 140px;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 18px;
  }
}
@media (max-width: 800px) {
  .footer-container.four-cols.single-row-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 4vw 8px 4vw;
  }
  .footer-container.four-cols.single-row-footer .footer-col {
    margin-bottom: 24px;
    min-width: 0;
    max-width: 100%;
    padding-right: 0;
  }
}
/* MODERN CUSTOMER REVIEWS STYLING - UPDATED DESIGN */
.customer-reviews {
    background: #f8fafc;
    padding: 80px 0;
    margin: 60px 0;
}

.customer-reviews .section-heading-custom {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0ea5e9;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 60px;
    text-shadow: 0 2px 4px rgba(14, 165, 233, 0.1);
}

.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.testimonial-display {
    flex: 1;
    max-width: 800px;
}

.testimonial-card {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    border: 2px solid #0ea5e9;
    border-radius: 30px;
    padding: 50px 45px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.12);
    transition: all 0.4s ease;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(14, 165, 233, 0.2);
    border-color: #0284c7;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #0ea5e9;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: #0ea5e9;
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    border-top: 2px solid rgba(14, 165, 233, 0.2);
    padding-top: 25px;
    margin-top: 20px;
}

.author-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0ea5e9;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.author-category {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-arrow {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border: 2px solid #ffffff;
    color: white;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.25);
    flex-shrink: 0;
}

.testimonial-arrow:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.35);
}

.testimonial-arrow:active {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu {
        display: block !important;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-links {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        background: rgba(10, 35, 66, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 1000;
        padding: 60px 0 20px 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.show {
        display: flex !important;
    }
    
    .nav-links.show ~ * {
        pointer-events: none;
    }
    
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
    }
    
    .nav-links li a {
        display: block;
        padding: 10px 20px;
        font-size: 0.9rem;
        color: #fff;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
        text-align: left;
    }
    
    .nav-links li a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu {
        position: static !important;
        background: #063864 !important;
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
        max-height: none !important;
    }
    
    .dropdown-submenu {
        position: static !important;
        background: #052a4d !important;
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        display: none;
    }
    
    .dropdown-nested.active .dropdown-submenu {
        display: block !important;
        max-height: none !important;
    }
    
    .dropdown-menu a, .dropdown-submenu a {
        padding: 8px 30px !important;
        font-size: 0.85rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
        text-align: left !important;
    }
    
    .nav-links::before {
        content: '×';
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        z-index: 1002;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-category {
        font-size: 0.9rem;
    }
    
    /* Create a horizontal arrow container at bottom */
    .testimonial-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-display {
        order: 1;
    }
    
    .testimonial-arrows-mobile {
        order: 2;
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 20px;
    }
    
    .testimonial-arrow {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin: 0;
    }
}

/* Remove old testimonial styles */
.testimonial-avatar, .testimonial-img { display: none !important; }

/* Enquiry Form Styles */
.enquiry-form {
    font-family: Arial, sans-serif;
}

.enquiry-form h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.enquiry-form .form-row {
    display: flex;
    margin-bottom: 20px;
}

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

.enquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="tel"],
.enquiry-form input[type="url"],
.enquiry-form input[type="number"],
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.enquiry-form input[type="text"]:focus,
.enquiry-form input[type="email"]:focus,
.enquiry-form input[type="tel"]:focus,
.enquiry-form input[type="url"]:focus,
.enquiry-form input[type="number"]:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: #009fe3;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 159, 227, 0.1);
}

.enquiry-form .checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.enquiry-form .checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
}

.enquiry-form .checkbox-group input[type="checkbox"] {
    margin-right: 8px;
}

.enquiry-form .submit-button {
    background-color: #009fe3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.enquiry-form .submit-button:hover {
    background-color: #0084c3;
}

@media (max-width: 768px) {
    .enquiry-form .form-row {
        flex-direction: column;
    }
    
    .enquiry-form .form-group {
        margin-right: 0 !important;
    }
    
    .enquiry-form .checkbox-group {
        grid-template-columns: 1fr;
    }
} 

/* Navigation Styles */
.nav-links a {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links a.active {
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
} 

.section-heading-custom {
    font-size: 2.5rem;
    text-align: center;
    color: #000000 !important;
    font-family: 'Airelon', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    border-bottom: none !important;
}

.section-heading-custom::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 200px;
    height: 5px;
    background-color: #000000 !important;
    border-radius: 0;
}

.section-heading-custom:hover {
    transform: scale(1.08);
} 

h1, h2, h3, h4, h5, h6, .section-heading, .section-heading-custom, .page-heading {
    font-family: 'Airelon', 'Montserrat', Arial, sans-serif !important;
    text-transform: uppercase;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
    color: #000000 !important;
}

h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, 
.section-heading:hover, .section-heading-custom:hover, .page-heading:hover {
    transform: scale(1.02);
    color: #000000 !important;
    text-shadow: none;
}

/* Company name specific styles */
.company-name .varadom {
    font-family: 'Airelon', 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-transform: uppercase;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.company-name .technologies {
    font-family: 'Airelon', 'Open Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    opacity: 0.95;
    text-transform: uppercase;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.company-name .varadom:hover,
.company-name .technologies:hover {
    transform: scale(1.08);
    text-shadow: 0 0 25px rgba(255,255,255,0.9), 0 0 50px rgba(255,255,255,0.5);
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 28px;
  justify-content: center;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .services-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: #f7fafd;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(25, 118, 210, 0.07);
  padding: 18px 8px 12px 8px;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid #009fe3;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.045);
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.18);
  border-color: #0a2342;
  z-index: 2;
}
.service-card i {
  font-size: 2rem;
  color: #1976d2;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.service-card h3 {
  margin: 0 0 0 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0a2342;
}
.learn-more-btn {
  margin-top: 12px;
  background: #009fe3;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 7px 22px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,159,227,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.learn-more-btn:hover {
  background: #005b8e;
  box-shadow: 0 4px 16px rgba(0,159,227,0.18);
}
/* Modal styles */
.service-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.service-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  width: 90vw;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  text-align: left;
  border: 2.5px solid #009fe3;
}
.service-modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 2rem;
  color: #009fe3;
  cursor: pointer;
  font-weight: bold;
}

.company-stats-section, .company-stages, .journey-card, .stages-flowchart, .stage-step-card {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
  max-width: 100% !important;
  margin: 0 auto 32px auto !important;
}
.company-stats-grid, .stages-flowchart {
  gap: 12px !important;
}
.company-stat-card, .stage-step-card {
  padding: 12px 6px 10px 6px !important;
  min-width: 90px !important;
  min-height: 60px !important;
  font-size: 0.92rem !important;
}
.stat-number, .stage-year {
  font-size: 1.1rem !important;
}
.stat-label, .stage-desc {
  font-size: 0.85rem !important;
}
.custom-review-section {
  margin: 24px 8px !important;
  padding: 18px 8px !important;
}
.custom-testimonial-slider {
  gap: 10px !important;
  margin-bottom: 12px !important;
}
.custom-testimonial-content {
  min-width: 420px !important;
  max-width: 700px !important;
  font-size: 1.12rem !important;
}
.custom-testimonial-content .testimonial-name, .custom-testimonial-content .testimonial-role {
  font-size: 1.25rem !important;
  font-family: 'Airelon', 'Montserrat', Arial, sans-serif !important;
  font-weight: 800 !important;
  color: #009fe3 !important;
  margin-top: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.custom-testimonial-content .testimonial-role {
  font-size: 1.1rem !important;
  color: #0a2342 !important;
  margin-top: 2px;
  font-weight: 700 !important;
}
.whatsapp-float-btn {
  position: fixed;
  bottom: 38px;
  right: 38px;
  z-index: 3000;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.18);
  font-size: 2.8rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.whatsapp-float-btn:hover {
  background: #128c7e;
  box-shadow: 0 8px 32px rgba(37,211,102,0.25);
}
@media (max-width: 700px) {
  .whatsapp-float-btn {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    bottom: 16px;
    right: 16px;
  }
}
.whatsapp-chat-bubble {
  position: fixed;
  bottom: 120px;
  right: 38px;
  z-index: 3001;
  background: #25d366;
  color: #fff; 
  font-family: 'Airelon', 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 22px 22px 22px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.98;
}
@media (max-width: 700px) {
  .whatsapp-chat-bubble {
    bottom: 80px;
    right: 16px;
    font-size: 0.98rem;
    padding: 7px 14px;
  }
} 

.careers-intro-wide {
  max-width: 900px !important;
  width: 100%;
}
.careers-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
  justify-items: center;
}
.careers-benefit-card {
  width: 100%;
  min-width: 0;
  min-height: 340px;
  max-width: 340px;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
}
.careers-benefit-card h3 {
  margin-top: 0;
}
.careers-benefit-card ul {
  flex: 1 1 auto;
}
.careers-benefits-grid > .last-row-center {
  grid-column: 2 / span 1;
  justify-self: center;
}
@media (max-width: 1100px) {
  .careers-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .careers-benefit-card {
    max-width: 420px;
    height: 340px;
  }
  .careers-benefits-grid > .last-row-center {
    grid-column: 1 / span 2;
    justify-self: center;
  }
}
@media (max-width: 700px) {
  .careers-benefits-grid {
    grid-template-columns: 1fr;
  }
  .careers-benefit-card {
    max-width: 100%;
    height: auto;
  }
  .careers-benefits-grid > .last-row-center {
    grid-column: auto;
    justify-self: center;
  }
}
.careers-bullets {
  margin-top: 18px;
  margin-bottom: 0;
  padding-left: 18px;
  list-style: disc inside;
  text-align: left;
} 

@media (max-width: 768px) {
    .header-center-row {
        padding: 12px 0 6px 0 !important;
        min-height: 100px;
    }
    
    .logo-circle {
        width: 70px;
        height: 70px;
        margin-right: 16px;
    }
    
    .main-logo {
        width: 60px;
        height: 60px;
    }
    
    .company-name .varadom {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .company-name .technologies {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
    
    .footer-col.logo-col {
        min-width: 140px;
        max-width: 160px;
    }
    
    .footer-logo {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .header-center-row {
        padding: 10px 0 5px 0 !important;
        min-height: 90px;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
        margin-right: 12px;
    }
    
    .main-logo {
        width: 50px;
        height: 50px;
    }
    
    .company-name .varadom {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }
    
    .company-name .technologies {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .footer-col.logo-col {
        min-width: 120px;
        max-width: 140px;
    }
    
    .footer-logo {
        width: 70px;
    }
} 

/* Service Modal Heading Animation */
#service-modal-heading {
  font-family: 'Airelon', 'Montserrat', Arial, sans-serif;
  color: #0a2342;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(.4,2,.6,1), text-shadow 0.22s cubic-bezier(.4,2,.6,1), color 0.22s cubic-bezier(.4,2,.6,1);
}
#service-modal-heading:hover, #service-modal-heading:focus {
  transform: scale(1.045);
  color:  #009fe3;
  text-shadow: 0 0 12px rgba(0,159,227,0.25), 0 0 24px rgba(0,159,227,0.18);
}
#service-modal-heading i {
  color:#0a2342;
  font-size: 1.7rem;
  margin-right: 10px;
  transition: color 0.22s cubic-bezier(.4,2,.6,1), text-shadow 0.22s cubic-bezier(.4,2,.6,1);
}
#service-modal-heading:hover i {
  color:  #009fe3;
  text-shadow: 0 0 10px rgba(0,159,227,0.18);
} 

/* Certificates Section Styles */
.certifications-section {
  padding: 60px 0;
  background: #f7f9fb;
}

.certificates-main-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,159,227,0.12);
  padding: 48px 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
  max-width: 600px;
  margin: 0 auto;
  border: 3px solid #009fe3;
}

.certificates-main-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,159,227,0.2);
  border-color: #000;
}

.certificates-card-content h3 {
  color: #0a2342;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Airelon', 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.certificates-card-content p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.explore-certificates-btn {
  background: linear-gradient(135deg, #009fe3, #005b8e);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(0,159,227,0.2);
}

.explore-certificates-btn:hover {
  background: linear-gradient(135deg, #005b8e, #003d5f);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,159,227,0.3);
}

/* Certificates Modal Styles */
.certificates-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.certificates-modal-content {
  background: #fff;
  border-radius: 15px;
  max-width: 1100px;
  width: 95%;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  border: 3px solid #1e88e5;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.certificates-modal-header {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  color: #fff;
  padding: 20px 32px;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.certificates-modal-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Airelon', 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.certificates-modal-close {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
  line-height: 1;
}

.certificates-modal-close:hover {
  transform: scale(1.2);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px;
  max-height: 75vh;
  overflow-y: auto;
}

.certification-card {
  background: #f5f5f5;
  border-radius: 15px;
  padding: 0;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid #ddd;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 280px;
}

.certification-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: #009fe3;
}

.cert-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
}

.cert-image-container img {
  width: 100%;
  max-width: 180px;
  height: 140px;
  object-fit: contain;
  border-radius: 8px;
}

.cert-info {
  padding: 15px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100px;
}

.cert-info h4 {
  color: #333;
  margin: 0 0 12px 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.certificate-item {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.certificate-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,159,227,0.15);
  border-color: #009fe3;
  background: #fff;
}

.certificate-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #009fe3, #005b8e);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.certificate-icon {
  margin-bottom: 16px;
}

.certificate-icon i {
  font-size: 2.5rem;
  color: #009fe3;
  transition: all 0.3s ease;
}

.certificate-item:hover .certificate-icon i {
  transform: scale(1.2);
  color: #005b8e;
}

.certificate-item h4 {
  color: #0a2342;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Airelon', 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.certificate-item p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.4;
}

.view-certificate-btn {
  background: #1e88e5;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.view-certificate-btn:hover {
  background: #1565c0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30,136,229,0.3);
}

/* Individual Certificate View Modal */
.certificate-view-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.certificate-view-content {
  background: #fff;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 80px rgba(0,0,0,0.4);
  border: 3px solid #009fe3;
}

.certificate-view-header {
  background: linear-gradient(135deg, #009fe3, #005b8e);
  color: #fff;
  padding: 20px 24px;
  border-radius: 17px 17px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.certificate-view-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Airelon', 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.certificate-view-close {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
  line-height: 1;
}

.certificate-view-close:hover {
  transform: scale(1.2);
}

.certificate-view-body {
  padding: 32px 24px;
}

.certificate-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.certificate-details {
  text-align: center;
}

.certificate-details p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.certificate-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-certificate-btn,
.share-certificate-btn {
  background: #009fe3;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,159,227,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.download-certificate-btn:hover,
.share-certificate-btn:hover {
  background: #005b8e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,159,227,0.3);
}

.share-certificate-btn {
  background: #28a745;
  box-shadow: 0 4px 12px rgba(40,167,69,0.2);
}

.share-certificate-btn:hover {
  background: #1e7e34;
  box-shadow: 0 6px 20px rgba(40,167,69,0.3);
}

/* Responsive Design for Certificates */
@media (max-width: 768px) {
  .certificates-main-card {
    padding: 32px 20px;
    margin: 0 16px;
  }
  
  .certificates-card-content h3 {
    font-size: 1.5rem;
  }
  
  .certificates-card-content p {
    font-size: 1rem;
  }
  
  .certificates-modal-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .certificates-modal-header {
    padding: 20px 24px;
  }
  
  .certificates-modal-header h2 {
    font-size: 1.5rem;
  }
  
  .certificates-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  
  .certificate-item {
    padding: 20px 16px;
  }
  
  .certificate-view-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .certificate-view-header {
    padding: 16px 20px;
  }
  
  .certificate-view-header h3 {
    font-size: 1.2rem;
  }
  
  .certificate-view-body {
    padding: 24px 16px;
  }
  
  .certificate-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .download-certificate-btn,
  .share-certificate-btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .certificates-main-card {
    padding: 24px 16px;
  }
  
  .certificates-card-content h3 {
    font-size: 1.3rem;
  }
  
  .explore-certificates-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .certificates-modal-header h2 {
    font-size: 1.3rem;
  }
  
  .certificate-view-header h3 {
    font-size: 1.1rem;
  }
} 

.why-varadom-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 48px auto;
  max-width: 1200px;
  padding: 0 16px;
  gap: 24px;
}
.why-card {
  background: #f7fafd;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(25, 118, 210, 0.07);
  padding: 24px 16px 20px 16px;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid #009fe3;
  width: 100%;
  max-width: 220px;
  flex: 1;
}
.why-card:hover {
  transform: translateY(-8px) scale(1.045);
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.18);
  border-color: #0a2342;
  z-index: 2;
}
.why-card i {
  font-size: 2.2rem;
  color: #1976d2;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.why-card h3 {
  margin: 0 0 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0a2342;
}
.why-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.98);
  color: #222;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,159,227,0.10);
  padding: 20px 16px;
  z-index: 2;
  font-size: 1rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.why-card:hover .why-popup {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1200px) {
  .why-varadom-grid {
    gap: 20px;
  }
  .why-card {
    max-width: 200px;
    min-height: 150px;
    padding: 20px 12px 16px 12px;
  }
}

@media (max-width: 1000px) {
  .why-varadom-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
  .why-card {
    max-width: 180px;
    min-height: 140px;
    padding: 18px 10px 14px 10px;
  }
  .why-card i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .why-card h3 {
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .why-varadom-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .why-card {
    max-width: 100%;
    min-height: 120px;
    padding: 16px 8px 12px 8px;
  }
  .why-popup {
    padding: 16px 12px;
    font-size: 0.95rem;
  }
}

/* Job Fields Card Section */
.job-fields-card {
  background: #fff;
  border: 2.5px solid #009fe3;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,159,227,0.10);
  padding: 40px 32px 32px 32px;
  margin-bottom: 24px;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1), border-color 0.3s;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  min-height: 350px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.job-fields-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #0a2342;
  font-size: 2.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  transition: text-shadow 0.3s, color 0.3s;
}
.job-fields-heading:hover {
  color: #009fe3;
  text-shadow: 0 0 8px #009fe3, 0 0 12px #b3e5fc;
}
.job-fields-endline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #009fe3;
  font-size: 2.7rem;
  letter-spacing: 1px;
  margin-top: 32px;
  text-shadow: none;
  transition: color 0.3s;
}
.job-fields-endline:hover {
  color: #0a2342;
  text-shadow: none;
}
.job-fields-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  justify-items: center;
  align-items: stretch;
  padding-bottom: 8px;
}
.job-field-box {
  background: #c0f5ff; /* very light green */
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,159,227,0.07);
  border: 2px solid #e0e0e0;
  min-width: 0;
  width: 100%;
  max-width: 400px;
  height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  cursor: pointer;
  position: relative;
  padding: 0 28px;
  margin-right: 0;
}
.job-field-box:hover {
  box-shadow: 0 4px 16px rgba(0,159,227,0.15);
  border-color: #009fe3;
  transform: translateY(-2px) scale(1.04);
}
.job-field-icon {
  font-size: 2rem;
  margin-right: 22px;
  color: #009fe3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-field-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a2342;
  text-align: left;
  letter-spacing: 0.5px;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .job-fields-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .job-fields-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .job-field-box {
    height: 60px;
    padding: 0 12px;
    max-width: 100%;
  }
  .job-field-icon {
    font-size: 1.2rem;
    margin-right: 8px;
  }
  .job-field-label {
    font-size: 1rem;
  }
}

/* --- ENDING LINE (LESS GLOW) --- */
.job-fields-endline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #009fe3;
  font-size: 2.7rem;
  letter-spacing: 1px;
  margin-top: 32px;
  text-shadow: none;
  transition: color 0.3s;
}
.job-fields-endline:hover {
  color: #0a2342;
  text-shadow: none;
}

/* Splash Screen Custom Styles */
#splash-screen, #splash-screen * {
    font-family: 'Airelon', 'Montserrat', Arial, sans-serif !important;
}
.splash-heading-burst {
    font-size: clamp(38px, 7vw, 64px) !important;
    font-weight: 800 !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
}
.splash-tagline-burst {
    font-size: clamp(18px, 3vw, 28px) !important;
    font-weight: 500 !important;
    color: #b3e0ff !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    letter-spacing: 1.5px;
}
.splash-logo-rise {
    width: clamp(120px, 18vw, 180px) !important;
    height: clamp(120px, 18vw, 180px) !important;
    border-radius: 24px !important;
    margin-bottom: 32px !important;
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12) !important;
}

/* Product Page Card Customization */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  min-height: 460px;
  justify-content: flex-start;
}
.category-image.big-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
}
.category-content.minimal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 0 0 0;
  margin: 0;
  width: 100%;
}
.category-title.big-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #000000;
  text-align: center;
  margin: 12px 0 10px 0;
  line-height: 1.1;
}
.center-btn {
  display: block;
  margin: 0 auto;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 8700;
}
.category-description {
  display: none !important;
}
@media (max-width: 900px) {
  .category-image.big-image {
    height: 220px;
  }
  .category-title.big-title {
    font-size: 1.4rem;
  }
}
@media (max-width: 600px) {
  .category-image.big-image {
    height: 140px;
  }
  .category-title.big-title {
    font-size: 1.1rem;
  }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block !important;
        background: none;
        border: none;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        padding: 10px;
        z-index: 2001;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: #0a2342;
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        border-radius: 0 0 12px 12px;
        z-index: 2000;
    }
    .nav-links.show {
        display: flex !important;
    }
    .main-nav .container {
        flex-direction: row;
        height: 60px;
    }
    .hero-carousel-container {
        max-width: 100vw;
        border-radius: 0;
    }
    .hero-carousel {
        width: 100vw;
        height: 180px;
        min-height: 120px;
    }
    .carousel-slide, .carousel-slide img {
        height: 160px;
        min-height: 100px;
        width: 100vw;
        object-fit: cover;
        border-radius: 0;
    }
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
        top: 45%;
    }
    .carousel-dots {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        width: 40px;
        height: 40px;
    }
    .logo-circle {
        width: 48px;
        height: 48px;
        margin-right: 8px;
    }
    .company-name .varadom {
        font-size: 1.2rem;
    }
    .company-name .technologies {
        font-size: 0.7rem;
    }
    .hero-carousel {
        height: 120px;
    }
    .carousel-slide, .carousel-slide img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100vw;
        padding: 0 15px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .products-grid,
    .segments-grid,
    .company-stats-grid,
    .reviews-grid,
    .job-fields-grid,
    .careers-benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .about-card,
    .journey-card,
    .spaced-section {
        padding: 12px 4px !important;
        margin: 12px 0 !important;
        max-width: 100vw !important;
    }
    .stages-flowchart {
        flex-direction: column !important;
        gap: 8px !important;
        align-items: stretch !important;
        margin: 0 !important;
    }
    .stage-step-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 auto 8px auto !important;
    }
    .footer-container,
    .footer-container.four-cols,
    .footer-container.four-cols.single-row-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 12px 2vw 8px 2vw !important;
    }
    .footer-col {
        min-width: 0 !important;
        max-width: 100% !important;
        margin-bottom: 12px !important;
        padding-right: 0 !important;
    }
    section, .hero-tagline-section, .products-showcase, .about-main, .industry-segments, .company-stages, .customer-reviews {
        margin: 12px 0 !important;
        padding: 0 !important;
    }
    html, body {
        overflow-x: hidden !important;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        max-width: 100vw;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .about-card, .journey-card, .spaced-section {
        padding: 6px 0 !important;
        margin: 6px 0 !important;
    }
    .footer-container {
        padding: 6px 0 4px 0 !important;
    }
}

@media (max-width: 768px) {
    .product-card img,
    .segment-card img,
    .category-image.big-image,
    .carousel-slide img {
        width: 100% !important;
        height: auto !important;
        max-width: 100vw !important;
        max-height: 180px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        display: block;
        margin: 0 auto;
    }
    .product-card,
    .segment-card {
        min-width: 0 !important;
        max-width: 100vw !important;
        width: 100% !important;
        margin: 0 auto 12px auto !important;
    }
    .carousel-slide {
        min-width: 0 !important;
        max-width: 100vw !important;
        height: auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .carousel-slide img {
        max-height: 180px !important;
    }
    .nav-links {
        display: none !important;
    }
    .nav-links.show {
        display: flex !important;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .product-card img,
    .segment-card img,
    .category-image.big-image,
    .carousel-slide img {
        max-height: 120px !important;
    }
    .carousel-slide {
        max-height: 120px !important;
    }
}

/* ===== COMPREHENSIVE CAROUSEL SOLUTION ===== */

/* Base Carousel Styles */
.hero-carousel-container {
  height: 500px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 32px auto;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: #fff;
  margin-top: 0 !important;
}
.hero-carousel {
  height: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0;
}

/* Mobile Carousel - CRITICAL FIX */
@media (max-width: 768px) {
  .hero-carousel-container {
    height: 350px !important;
    margin: 0 auto 20px auto !important;
    border-radius: 0 !important;
    width: 100vw !important;
  }
  .hero-carousel {
    height: 350px !important;
    width: 100% !important;
  }
  .carousel-slide {
    height: 350px !important;
    width: 100% !important;
  }
  .carousel-slide img {
    height: 350px !important;
    width: 100% !important;
    object-fit: contain !important;
  }
}

@media (max-width: 480px) {
  .hero-carousel-container {
    height: 280px !important;
    width: 100vw !important;
  }
  .hero-carousel {
    height: 280px !important;
    width: 100% !important;
  }
  .carousel-slide {
    height: 280px !important;
    width: 100% !important;
  }
  .carousel-slide img {
    height: 280px !important;
    width: 100% !important;
    object-fit: contain !important;
  }
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  color: #009fe3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.carousel-btn:hover {
  background: #009fe3;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn.prev {
  left: 20px;
}
.carousel-btn.next {
  right: 20px;
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
  }
  .carousel-btn.prev {
    left: 10px !important;
  }
  .carousel-btn.next {
    right: 10px !important;
  }
}

@media (max-width: 480px) {
  .carousel-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }
  .carousel-btn.prev {
    left: 8px !important;
  }
  .carousel-btn.next {
    right: 8px !important;
  }
}
.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: #009fe3;
  transform: scale(1.2);
}
.carousel-dot:hover {
  background: rgba(255,255,255,0.8);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .carousel-dots {
    bottom: 12px !important;
    gap: 8px !important;
  }
  .carousel-dot {
    width: 10px !important;
    height: 10px !important;
  }
}

@media (max-width: 480px) {
  .carousel-dots {
    bottom: 10px !important;
    gap: 6px !important;
  }
  .carousel-dot {
    width: 8px !important;
    height: 8px !important;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-carousel-container {
        height: 450px;
        width: 100%;
    }

    .hero-carousel {
        height: 450px;
        width: 100%;
    }
    
    .carousel-slide img {
        object-fit: contain;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-carousel-container {
        height: 200px !important;
    }

    .hero-carousel {
        height: 200px !important;
    }
    
    .carousel-slide {
        height: 200px !important;
    }
    
    .carousel-slide img {
        height: 200px !important;
    }
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* ===== BANNER RESPONSIVE FIX ===== */
.contact-hero-section,
.careers-hero,
.industries-hero,
.media-hero,
.contact-hero,
.about-hero,
.product-hero,
.category-hero,
.carwash-hero {
  min-height: 40vh !important;
  padding: 40px 20px !important;
}

@media (max-width: 768px) {
  .contact-hero-section,
  .careers-hero,
  .industries-hero,
  .media-hero,
  .contact-hero,
  .about-hero,
  .product-hero,
  .category-hero,
  .carwash-hero {
    min-height: 30vh !important;
    padding: 30px 15px !important;
    background-size: cover !important;
    background-position: center !important;
  }
}

@media (max-width: 480px) {
  .contact-hero-section,
  .careers-hero,
  .industries-hero,
  .media-hero,
  .contact-hero,
  .about-hero,
  .product-hero,
  .category-hero,
  .carwash-hero {
    min-height: 25vh !important;
    padding: 20px 10px !important;
  }
}

.career-banner-section {
  height: auto !important;
  min-height: 200px !important;
  padding: 30px 20px !important;
  display: flex !important;
  align-items: center !important;
}

@media (max-width: 768px) {
  .career-banner-section {
    min-height: 150px !important;
    padding: 20px 15px !important;
  }
  
  .banner-content {
    flex-direction: column !important;
    text-align: center !important;
    gap: 15px !important;
  }
  
  .banner-text h1 {
    font-size: 1.5rem !important;
  }
  
  .banner-text h2 {
    font-size: 1.8rem !important;
  }
  
  .banner-text p {
    font-size: 1rem !important;
  }
  
  .banner-contact p {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 480px) {
  .career-banner-section {
    min-height: 120px !important;
    padding: 15px 10px !important;
  }
  
  .banner-text h1 {
    font-size: 1.2rem !important;
  }
  
  .banner-text h2 {
    font-size: 1.4rem !important;
  }
  
  .banner-text p {
    font-size: 0.9rem !important;
  }
  
  .banner-contact p {
    font-size: 1rem !important;
  }
}

/* Mobile Navigation - Complete Fix */
@media (max-width: 768px) {
    /* Mobile Menu Button */
    .mobile-menu {
        display: block !important;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        position: relative;
    }

    /* Navigation Container */
    .main-nav.ats-style .container {
        padding: 0 16px;
        justify-content: space-between;
        align-items: center;
        height: 60px;
    }

    /* Hide Desktop Navigation */
    .nav-links {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 35, 66, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        padding: 80px 20px 20px;
        margin: 0;
    }

    .nav-links.show {
        display: flex !important;
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
        list-style: none;
    }

    .nav-links li a {
        display: block;
        padding: 15px 20px;
        font-size: 1.2rem;
        border: 2px solid transparent;
        border-radius: 8px;
        transition: all 0.3s ease;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: rgba(255, 255, 255, 0.1);
        border-color: #009fe3;
        transform: scale(1.05);
    }

    /* Close button for mobile menu */
    .nav-links::before {
        content: '×';
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        z-index: 1002;
    }

    /* Header adjustments for mobile */
    .header-center-row {
        padding: 12px 0 8px 0 !important;
        min-height: 100px !important;
        flex-direction: column;
        text-align: center;
    }

    .header-center-row img {
        width: 80px !important;
        margin-bottom: 12px !important;
        margin-right: 0 !important;
    }

    .company-name {
        text-align: center !important;
        align-items: center !important;
    }

    .company-name .varadom {
        font-size: 1.8rem !important;
    }

    .company-name .technologies {
        font-size: 0.9rem !important;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
        position: static;
        background: none;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .nav-links li {
        margin: 0;
        width: auto;
    }

    .nav-links li a {
        padding: 15px 18px;
        font-size: 14px;
        border: none;
        border-radius: 0;
        color: #ffffff;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: rgba(255, 255, 255, 0.1);
        border-bottom: 3px solid #ffffff;
        transform: none;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-links li a {
        padding: 12px 14px;
        font-size: 13px;
    }

    .container {
        width: 95%;
    }

    .hero-carousel {
        height: 400px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}



/* Mobile Product Cards */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 16px !important;
        margin-top: 30px !important;
    }

    .product-card {
        min-height: auto !important;
        border-radius: 12px !important;
        padding: 0 !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .product-card img {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }

    .product-overlay {
        position: static !important;
        opacity: 1 !important;
        background: #009fe3 !important;
        padding: 16px !important;
        border-radius: 0 !important;
        text-align: center !important;
    }

    .product-overlay h3 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
        color: #fff !important;
    }

    .product-overlay p {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
        color: #fff !important;
    }

    .product-link {
        display: inline-block !important;
        padding: 8px 20px !important;
        font-size: 0.9rem !important;
        background: #fff !important;
        color: #009fe3 !important;
        border-radius: 20px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        margin-top: 8px !important;
    }

    .product-card:hover {
        transform: none !important;
    }
}

/* Mobile Sections */
@media (max-width: 768px) {
    .spaced-section {
        padding: 40px 16px;
    }

    .section-heading-custom {
        font-size: 1.8rem;
        margin-bottom: 24px;
        text-align: center;
    }

    .about-card {
        padding: 24px 16px;
        margin: 0 16px;
        border-radius: 12px;
    }

    .about-card h2 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .about-card .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Mobile Journey/Stages */
@media (max-width: 768px) {
    .stages-flowchart {
        flex-direction: column;
        gap: 20px;
        padding: 0 16px;
    }

    .stage-step-card {
        width: 100%;
        padding: 20px 16px;
        border-radius: 12px;
    }

    .stage-step-card .stage-year {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .stage-step-card .stage-desc {
        font-size: 1rem;
        line-height: 1.4;
    }

    .stage-arrow {
        display: none;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-container.four-cols.single-row-footer {
        flex-direction: column;
        gap: 24px;
        padding: 32px 16px 16px;
    }

    .footer-container.four-cols.single-row-footer .footer-col {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .footer-col ul li {
        margin-bottom: 6px;
    }

    .footer-col ul li a {
        font-size: 0.9rem;
    }

    .footer-logo {
        width: 80px;
        margin: 0 auto 16px;
    }

    .footer-bottom {
        padding: 16px;
        font-size: 0.85rem;
    }
}

/* Mobile Contact Form */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 24px 16px;
    }

    .contact-form h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .submit-button {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
}

/* Mobile Services */
@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .service-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .service-card i {
        font-size: 2rem;
        margin-bottom: 16px;
    }
}

/* Mobile Certificates */
@media (max-width: 768px) {
    .certificates-main-card {
        padding: 24px 16px;
        margin: 0 16px;
        border-radius: 12px;
    }

    .certificates-card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .certificates-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 20px auto;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .certificate-item {
        padding: 20px 16px;
    }
}

/* Mobile Why Varadom */
@media (max-width: 768px) {
    .why-varadom-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .why-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .why-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .why-card i {
        font-size: 2rem;
        margin-bottom: 16px;
    }
}

/* Mobile Job Fields */
@media (max-width: 768px) {
    .job-fields-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }

    .job-field-box {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .job-field-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .job-field-label {
        font-size: 0.9rem;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    /* Increase touch targets */
    button, .cta-button, .submit-button, .product-link {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve scrolling */
    .nav-links {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Better spacing for touch */
    .nav-links li a {
        margin: 4px 0;
    }

    /* Improve form inputs */
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-carousel {
        height: 200px;
    }

    .carousel-slide,
    .carousel-slide img {
        height: 200px;
    }

    .nav-links {
        padding: 60px 20px 20px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 12px;
    }

    .hero-carousel {
        height: 200px;
    }

    .carousel-slide,
    .carousel-slide img {
        height: 200px;
    }

    .section-heading-custom {
        font-size: 1.5rem;
    }

    .about-card h2 {
        font-size: 1.4rem;
    }

    .product-card {
        height: 180px;
    }

    .product-card img {
        height: 180px;
    }

    .footer-container.four-cols.single-row-footer {
        padding: 24px 12px 12px;
    }

    .footer-logo {
        width: 70px;
    }

    .header-center-row img {
        width: 70px !important;
    }

    .company-name .varadom {
        font-size: 1.6rem !important;
    }

    .company-name .technologies {
        font-size: 0.8rem !important;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-card img,
    .carousel-slide img,
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .nav-links,
    .whatsapp-float-btn,
    .whatsapp-chat-bubble,
    .mobile-menu {
        display: none !important;
    }

    .hero-carousel {
        height: 300px;
    }

    .product-card {
        break-inside: avoid;
        margin-bottom: 20px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed */
}

/* Focus styles for better accessibility */
.nav-links li a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #009fe3;
    outline-offset: 2px;
}

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

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

/* Better text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== COMPLETE MOBILE RESPONSIVE SOLUTION ===== */

/* Mobile Menu Button - Force Display */
.mobile-menu {
    display: block !important; /* Force display for testing */
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    padding: 8px !important;
    z-index: 1001 !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.mobile-menu:hover {
    color: #f7931e !important;
    transform: scale(1.1) !important;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Show mobile menu button */
    .mobile-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Navigation container */
    .main-nav.ats-style .container {
        padding: 0 16px;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        position: relative;
    }

    /* Hide desktop navigation */
    .nav-links {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 35, 66, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        padding: 80px 20px 20px;
        margin: 0;
        transition: all 0.3s ease;
    }

    .nav-links.show {
        display: flex !important;
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
        list-style: none;
    }

    .nav-links li a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 20px;
        font-size: 1.2rem;
        border: 2px solid transparent;
        border-radius: 8px;
        transition: all 0.3s ease;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        min-height: 44px;
        width: 100%;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: rgba(255, 255, 255, 0.1);
        border-color: #009fe3;
        transform: scale(1.05);
    }

    /* Close button for mobile menu */
    .nav-links::before {
        content: '×';
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        z-index: 1002;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-links::before:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

    /* Header adjustments for mobile */
    .header-center-row {
        padding: 12px 0 8px 0 !important;
        min-height: 100px !important;
        flex-direction: column;
        text-align: center;
    }

    .header-center-row img {
        width: 80px !important;
        margin-bottom: 12px !important;
        margin-right: 0 !important;
    }

    .company-name {
        text-align: center !important;
        align-items: center !important;
    }

    .company-name .varadom {
        font-size: 1.8rem !important;
    }

    .company-name .technologies {
        font-size: 0.9rem !important;
    }

    /* Mobile Carousel - Enhanced */
    .hero-carousel-container {
        margin-top: 0;
        height: 300px;
        position: relative;
        overflow: hidden;
    }

    .hero-carousel {
        height: 300px;
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }

    .carousel-slide,
    .carousel-slide img {
        height: 300px;
        border-radius: 0;
        object-fit: cover;
        width: 100%;
        display: block;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .carousel-btn:hover {
        background: rgba(0, 0, 0, 0.8);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-btn.prev {
        left: 15px;
    }

    .carousel-btn.next {
        right: 15px;
    }

    .carousel-dots {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        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;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .carousel-dot.active {
        background: #009fe3;
        border-color: #fff;
        transform: scale(1.2);
    }

    .carousel-dot:hover {
        background: rgba(255, 255, 255, 0.8);
        transform: scale(1.1);
    }

    /* Mobile Product Cards */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }

    .product-card {
        height: 200px;
        border-radius: 12px;
    }

    .product-card img {
        height: 200px;
        border-radius: 12px;
        object-fit: cover;
    }

    .product-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .product-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Mobile Sections */
    .spaced-section {
        padding: 40px 16px;
    }

    .section-heading-custom {
        font-size: 1.8rem;
        margin-bottom: 24px;
        text-align: center;
    }

    .about-card {
        padding: 24px 16px;
        margin: 0 16px;
        border-radius: 12px;
    }

    .about-card h2 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .about-card .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Mobile Journey/Stages */
    .stages-flowchart {
        flex-direction: column;
        gap: 20px;
        padding: 0 16px;
    }

    .stage-step-card {
        width: 100%;
        padding: 20px 16px;
        border-radius: 12px;
    }

    .stage-step-card .stage-year {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .stage-step-card .stage-desc {
        font-size: 1rem;
        line-height: 1.4;
    }

    .stage-arrow {
        display: none;
    }

    /* Mobile Footer */
    .footer-container.four-cols.single-row-footer {
        flex-direction: column;
        gap: 24px;
        padding: 32px 16px 16px;
    }

    .footer-container.four-cols.single-row-footer .footer-col {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .footer-col ul li {
        margin-bottom: 6px;
    }

    .footer-col ul li a {
        font-size: 0.9rem;
    }

    .footer-logo {
        width: 80px;
        margin: 0 auto 16px;
    }

    .footer-bottom {
        padding: 16px;
        font-size: 0.85rem;
    }

    /* Mobile Contact Form */
    .contact-form-container {
        padding: 24px 16px;
    }

    .contact-form h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 16px;
    }

    .submit-button {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }

    /* Mobile Services */
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .service-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .service-card i {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    /* Mobile Certificates */
    .certificates-main-card {
        padding: 24px 16px;
        margin: 0 16px;
        border-radius: 12px;
    }

    .certificates-card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .certificates-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 20px auto;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .certificate-item {
        padding: 20px 16px;
    }

    /* Mobile Why Varadom */
    .why-varadom-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .why-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .why-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .why-card i {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    /* Mobile Job Fields */
    .job-fields-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }

    .job-field-box {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .job-field-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .job-field-label {
        font-size: 0.9rem;
    }

    /* Touch-friendly improvements */
    button, .cta-button, .submit-button, .product-link {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-links {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links li a {
        margin: 4px 0;
    }

    input, textarea, select {
        font-size: 16px !important;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
        position: static;
        background: none;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .nav-links li {
        margin: 0;
        width: auto;
    }

    .nav-links li a {
        padding: 15px 18px;
        font-size: 14px;
        border: none;
        border-radius: 0;
        color: #ffffff;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: rgba(255, 255, 255, 0.1);
        border-bottom: 3px solid #ffffff;
        transform: none;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-links li a {
        padding: 12px 14px;
        font-size: 13px;
    }

    .container {
        width: 95%;
    }

    .hero-carousel {
        height: 400px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-carousel {
        height: 200px;
    }

    .carousel-slide,
    .carousel-slide img {
        height: 200px;
    }

    .nav-links {
        padding: 60px 20px 20px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 12px;
    }

    .hero-carousel {
        height: 200px;
    }

    .carousel-slide,
    .carousel-slide img {
        height: 200px;
    }

    .section-heading-custom {
        font-size: 1.5rem;
    }

    .about-card h2 {
        font-size: 1.4rem;
    }

    .product-card {
        height: 180px;
    }

    .product-card img {
        height: 180px;
    }

    .footer-container.four-cols.single-row-footer {
        padding: 24px 12px 12px;
    }

    .footer-logo {
        width: 70px;
    }

    .header-center-row img {
        width: 70px !important;
    }

    .company-name .varadom {
        font-size: 1.6rem !important;
    }

    .company-name .technologies {
        font-size: 0.8rem !important;
    }
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* ABOUT US & INDUSTRY SIDE-BY-SIDE SECTION */
.about-industry-container {
  margin: 48px 0 0 0;
}
.about-industry-flex {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.about-section, .industry-section {
  flex: 1 1 320px;
  padding: 32px 24px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.about-section h2, .industry-section h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 18px;
}
.about-section p, .industry-section p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #333;
}
.highlight {
  color: #ff9900;
}
.about-section a, .industry-section a {
  display: inline-block;
  margin-top: 18px;
  font-size: 1.1rem;
  color: #111;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.about-section a:hover, .industry-section a:hover {
  color: #ff9900;
}
@media (max-width: 900px) {
  .about-industry-flex {
    flex-direction: column;
    gap: 28px;
  }
}

/* INDUSTRY ICON CAROUSEL */
.industry-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 18px 0 0 0;
}
.carousel-arrow {
  background: #009fe3;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.carousel-arrow:hover {
  background: #ff9900;
}
.industry-icon-group {
  display: flex;
  gap: 24px;
  align-items: center;
  min-width: 0;
}
.industry-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.2rem;
  color: #009fe3;
  min-width: 80px;
}
.industry-icon-label {
  font-size: 1rem;
  color: #222;
  margin-top: 6px;
  text-align: center;
}
@media (max-width: 600px) {
  .industry-icon-group {
    gap: 12px;
  }
  .industry-icon {
    font-size: 1.3rem;
    min-width: 60px;
  }
}

/* INDUSTRY CARD CAROUSEL */
.industry-card-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 18px 0 0 0;
}
.industry-card {
  background: #fff;
  border: 2px solid #009fe3;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  min-width: 260px;
  max-width: 320px;
  min-height: 180px;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.industry-card i {
  font-size: 2.8rem;
  color: #009fe3;
  margin-bottom: 18px;
}
.industry-card-title {
  font-size: 1.18rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}
.industry-use {
  margin-top: 18px;
  font-size: 1.08rem;
  color: #444;
  text-align: center;
  min-height: 48px;
}
@media (max-width: 900px) {
  .industry-card-carousel {
    gap: 12px;
  }
  .industry-card {
    min-width: 180px;
    max-width: 98vw;
    padding: 24px 8px 16px 8px;
  }
  .industry-card i {
    font-size: 2rem;
  }
}

.about-readmore-btn {
  display: inline-block;
  margin-top: 18px;
  background: #009fe3;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 22px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.about-readmore-btn:hover {
  background: #009fe3;
  color: #000713;
}

.industry-card-horizontal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 420px;
  max-width: 600px;
  padding: 32px 40px 28px 40px;
  gap: 0;
  margin: 0 auto;
}
.industry-card-horizontal .industry-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 24px;
}
.industry-card-horizontal .industry-icon-square {
  width: 90px;
  height: 90px;
  background: #f5f5f5;
  border: 2px solid #009fe3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.industry-card-horizontal .industry-icon-square i {
  font-size: 2.8rem;
  color: #009fe3;
}
.industry-card-horizontal .industry-card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #222;
  letter-spacing: 0.01em;
  word-break: break-word;
}
.industry-card-horizontal .industry-use-inside {
  margin-top: 8px;
  font-size: 1.08rem;
  color: #444;
  text-align: left;
  min-height: 32px;
  width: 100%;
  padding-left: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
}
.industry-card-horizontal .industry-use-inside-content {
  margin-left: 0;
  padding-left: 0;
}
@media (max-width: 700px) {
  .industry-card-horizontal {
    min-width: 180px;
    max-width: 98vw;
    padding: 16px 6px;
  }
  .industry-card-horizontal .industry-icon-square {
    width: 60px;
    height: 60px;
  }
}

.industry-arrows-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  width: 100%;
}

.square-arrow {
  width: 44px;
  height: 44px;
  border: 2px solid #222;
  background: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #222;
  margin: 0 6px;
  transition: background 0.2s, border-color 0.2s;
  box-sizing: border-box;
  cursor: pointer;
}
.square-arrow:hover {
  background: #f5f5f5;
  border-color: #009fe3;
}

/* MODERN PRODUCTS GRID */
.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.product-card-modern {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4/3;
  padding: 0;
  border: 2px solid #009fe3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.product-card-modern > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card-modern:hover > img {
  transform: scale(1.05);
}

.product-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card-modern:hover .product-hover-overlay {
  transform: translateY(0);
}

.product-name {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-arrow {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ff9900;
}

/* PLACEHOLDER PRODUCT CARDS */
.product-placeholder {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-content {
  text-align: center;
  color: #888;
}

.placeholder-icon {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 8px;
  color: #bbb;
}

.placeholder-text {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-placeholder:hover .placeholder-icon {
  color: #009fe3;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .products-grid-modern {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 0 15px;
  }
}

@media (max-width: 900px) {
  .products-grid-modern {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 15px;
  }
}

@media (max-width: 600px) {
  .products-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }
  
  .product-name {
    font-size: 0.8rem;
  }
  
  .product-arrow {
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .products-grid-modern {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px;
  }
}

/* MODERN STATS SECTION */
.company-stats-modern {
  background: linear-gradient(135deg, #009fe3 0%, #0088cc 100%);
  padding: 60px 0;
  margin: 48px 0;
  width: 100%;
}

.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.stat-card-modern {
  text-align: center;
  padding: 40px 20px;
  color: white;
  position: relative;
}

.stat-card-modern:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.2);
}

.stat-icon-modern {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.stat-number-modern {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
  line-height: 1;
}

.stat-label-modern {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .stats-grid-modern {
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }
  
  .stat-icon-modern {
    font-size: 3rem;
  }
  
  .stat-number-modern {
    font-size: 2.8rem;
  }
  
  .stat-label-modern {
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .stats-grid-modern {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  
  .stat-card-modern {
    padding: 30px 15px;
  }
  
  .stat-icon-modern {
    font-size: 2.5rem;
  }
  
  .stat-number-modern {
    font-size: 2.2rem;
  }
  
  .stat-label-modern {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .company-stats-modern {
    padding: 40px 0;
  }
  
  .stats-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  
  .stat-card-modern {
    padding: 25px 10px;
  }
  
  .stat-icon-modern {
    font-size: 2rem;
  }
  
  .stat-number-modern {
    font-size: 1.8rem;
  }
  
  .stat-label-modern {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .stats-grid-modern {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .stat-card-modern::after {
    display: none;
  }
}


/* MOBILE-ONLY OPTIMIZATIONS - APPLIES ONLY TO MOBILE DEVICES */
@media (max-width: 768px) {
    .header-center-row {
        padding: 10px 0 6px 0 !important;
        min-height: 90px !important;
    }
    
    .logo-circle {
        width: 60px !important;
        height: 60px !important;
        margin-right: 12px !important;
    }
    
    .main-logo {
        width: 50px !important;
        height: 50px !important;
    }
    
    .company-name .varadom {
        font-size: 1.8rem !important;
        letter-spacing: 1px !important;
    }
    
    .company-name .technologies {
        font-size: 0.9rem !important;
        letter-spacing: 2px !important;
    }
    
    .component-hero, .addons-hero, .page-header, .about-hero, .product-hero, .category-hero, .carwash-hero {
        padding-top: 100px !important;
    }
    
    .page-heading {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
        padding-bottom: 10px !important;
    }
    
    .section-heading-custom {
        font-size: 1.6rem !important;
        margin-bottom: 30px !important;
        padding-bottom: 10px !important;
        letter-spacing: 1px !important;
    }
    
    .page-heading::after, .section-heading-custom::after {
        width: 100px !important;
        height: 3px !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
    
    .product-card, .service-card, .feature-card {
        padding: 20px 15px !important;
        margin-bottom: 15px !important;
    }
    
    .footer-col h3 {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
    }
    
    .footer-col ul li {
        font-size: 0.85rem !important;
        margin-bottom: 6px !important;
    }
    
    .footer-col p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    button, .cta-button, .submit-button {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .specs-table {
        font-size: 0.8rem !important;
    }
    
    .specs-table th, .specs-table td {
        padding: 10px 8px !important;
    }
    
    section {
        padding: 30px 0 !important;
    }
    
    .whatsapp-float-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 2rem !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    
    .whatsapp-chat-bubble {
        font-size: 0.85rem !important;
        padding: 6px 12px !important;
        bottom: 75px !important;
        right: 20px !important;
    }
}

@media (max-width: 480px) {
    .header-center-row {
        padding: 8px 0 4px 0 !important;
        min-height: 80px !important;
    }
    
    .logo-circle {
        width: 50px !important;
        height: 50px !important;
        margin-right: 10px !important;
    }
    
    .main-logo {
        width: 40px !important;
        height: 40px !important;
    }
    
    .company-name .varadom {
        font-size: 1.4rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .company-name .technologies {
        font-size: 0.75rem !important;
        letter-spacing: 1.5px !important;
    }
    
    .component-hero, .addons-hero, .page-header, .about-hero, .product-hero, .category-hero, .carwash-hero {
        padding-top: 90px !important;
    }
    
    .page-heading {
        font-size: 1.5rem !important;
        margin-bottom: 25px !important;
    }
    
    .section-heading-custom {
        font-size: 1.3rem !important;
        margin-bottom: 25px !important;
    }
    
    .page-heading::after, .section-heading-custom::after {
        width: 80px !important;
        height: 3px !important;
    }
    
    .container {
        padding: 0 10px !important;
    }
    
    .product-card, .service-card, .feature-card {
        padding: 15px 10px !important;
    }
    
    .footer-col h3 {
        font-size: 0.9rem !important;
    }
    
    .footer-col ul li, .footer-col p {
        font-size: 0.75rem !important;
    }
    
    button, .cta-button, .submit-button {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
    
    .specs-table {
        font-size: 0.7rem !important;
    }
    
    .specs-table th, .specs-table td {
        padding: 8px 5px !important;
    }
    
    section {
        padding: 20px 0 !important;
    }
    
    .whatsapp-float-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.8rem !important;
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .whatsapp-chat-bubble {
        font-size: 0.75rem !important;
        padding: 5px 10px !important;
        bottom: 65px !important;
        right: 15px !important;
    }
}


/* ===== MOBILE PRODUCTS FIX ===== */
@media (max-width: 768px) {
    .products-showcase {
        padding: 20px 0 !important;
        margin: 20px 0 !important;
    }
    
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
        margin-top: 25px !important;
    }
    
    .product-card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 0 20px 0 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    }
    
    .product-card img {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        margin: 0 !important;
        display: block !important;
    }
    
    .product-overlay {
        position: static !important;
        opacity: 1 !important;
        background: #009fe3 !important;
        padding: 16px !important;
        border-radius: 0 !important;
        text-align: center !important;
        transform: none !important;
    }
    
    .product-overlay h3 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
        color: #fff !important;
    }
    
    .product-overlay p {
        font-size: 0.9rem !important;
        margin-bottom: 12px !important;
        color: #fff !important;
        line-height: 1.5 !important;
    }
    
    .product-link {
        display: inline-block !important;
        padding: 10px 24px !important;
        font-size: 0.9rem !important;
        background: #fff !important;
        color: #009fe3 !important;
        border-radius: 25px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        margin-top: 10px !important;
        transition: all 0.3s ease !important;
    }
    
    .product-link:hover {
        background: #f0f0f0 !important;
        transform: scale(1.05) !important;
    }
    
    .product-card:hover {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .products-grid {
        padding: 0 10px !important;
        gap: 16px !important;
    }
    
    .product-card {
        margin: 0 0 16px 0 !important;
    }
    
    .product-card img {
        height: 180px !important;
    }
    
    .product-overlay {
        padding: 14px !important;
    }
    
    .product-overlay h3 {
        font-size: 1rem !important;
    }
    
    .product-overlay p {
        font-size: 0.85rem !important;
    }
    
    .product-link {
        padding: 8px 20px !important;
        font-size: 0.85rem !important;
    }
}


/* Railway Gallery Card Styles */
.railway-gallery-card {
  position: relative;
  overflow: hidden;
}

.product-gallery-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.gallery-image.active {
  opacity: 1;
  z-index: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-nav.prev {
  left: 10px;
}

.gallery-nav.next {
  right: 10px;
}

.gallery-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.gallery-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dots .dot.active {
  background: #009fe3;
  transform: scale(1.2);
}

.gallery-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .gallery-nav {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .gallery-nav.prev {
    left: 5px;
  }
  
  .gallery-nav.next {
    right: 5px;
  }
  
  .gallery-dots {
    bottom: 10px;
    gap: 6px;
  }
  
  .gallery-dots .dot {
    width: 8px;
    height: 8px;
  }
}


/* Thumbnail Gallery Styles */
.thumbnail-container {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 3px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail:hover {
  border-color: #009fe3;
  transform: scale(1.05);
}

.thumbnail.active {
  border-color: #009fe3;
  box-shadow: 0 0 10px rgba(0, 159, 227, 0.5);
}

.gallery-container {
  width: 100%;
}

.main-image {
  width: 400px;
  height: 400px;
  background: #f0f8ff;
  border: 2px solid #009fe3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .main-image {
    width: 100%;
    height: 300px;
  }
  
  .thumbnail {
    width: 80px;
    height: 80px;
  }
}

/* Business Floating Button */
.business-float-btn {
  position: fixed;
  bottom: 140px;
  right: 38px;
  z-index: 3000;
  background: #0a2342;
  color: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(10,35,66,0.4);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}
.business-float-btn:hover {
  background: #063864;
  box-shadow: 0 8px 32px rgba(10,35,66,0.6);
  transform: scale(1.15) rotate(15deg);
  color: #fff;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(10,35,66,0.4); }
  50% { box-shadow: 0 4px 25px rgba(10,35,66,0.7); }
}
.business-chat-bubble {
  position: fixed;
  bottom: 220px;
  right: 38px;
  z-index: 3001;
  background: #0a2342;
  color: #fff;
  font-family: 'Airelon', 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 22px 22px 22px 0;
  box-shadow: 0 2px 12px rgba(0,159,227,0.3);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 700px) {
  .business-float-btn {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    bottom: 90px;
    right: 16px;
  }
  .business-chat-bubble {
    bottom: 150px;
    right: 16px;
    font-size: 0.8rem;
    padding: 7px 12px;
  }
}
