/* Root Variables - Version 4.0 - Professional Color Scheme */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --text-color: #2c3e50;
    --light-color: #ffffff;
    --dark-color: #1a252f;
    --hero-bg: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --body-bg: #ffffff;
    --section-bg: #f8f9fa;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--body-bg);
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: var(--text-color);
    font-size: 16px;
}

/* Header Styles */
.top-nav {
    background-color: var(--dark-color);
    padding: 0.3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(26, 37, 47, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    min-height: 50px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo-section img {
    height: 45px;
    width: 45px;
    object-fit: contain;
    margin-right: 8px;
}

.company-info h1 {
    font-size: 0.9rem;
    color: #f8fafc;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.company-info .tagline {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 2px 0 0 0;
    line-height: 1.2;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    display: block;
    visibility: visible;
    opacity: 1;
    background: rgba(0,0,0,0.3);
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Navigation Styles */
.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #f8fafc;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.main-nav a:not(.get-quote-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:not(.get-quote-btn):hover::after {
    width: 100%;
}

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

.nav-dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #334155;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
    border-radius: 8px;
    padding: 1rem 0;
    border: 1px solid #475569;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #f8fafc;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #475569;
    color: #3b82f6;
}

/* Button Styles */
.cta-button, .get-quote-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-gold);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover, .get-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: #FFC800;
}

.submit-btn, .submit-request-btn {
    background: var(--hero-bg);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover, .submit-request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0 8rem 0;
    margin: 70px 0 0;
    width: 100%;
    background: var(--section-bg);
    position: relative;
    min-height: 600px;
    color: var(--text-color);
    overflow: hidden;
}

/* Hero Video Background - SINGLE DEFINITION */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 165, 233, 0.65);
    z-index: 1;
}

.hero-section .hero-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.hero-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.hero-section p {
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.hero-section span.highlight {
    color: #f39c12;
    font-weight: 600;
}

.hero-left, .hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2rem;
    min-height: 70vh;
}

.hero-left {
    position: relative;
}

.hero-content {
    padding: 2rem;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
}

.hero-left h2, .hero-right h2 {
    color: #333333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: left;
    margin-bottom: 1.5rem;
}

.hero-left p, .hero-right p {
    color: #333333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1e293b;
    font-weight: bold;
}

/* Discover Solutions Button - Elliptical/Pill Shape */
.discover-solutions-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.discover-solutions-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    transition: left 0.5s ease;
}

.discover-solutions-btn:hover::before {
    left: 100%;
}

.discover-solutions-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff5722, #f57c00);
    color: white;
    text-decoration: none;
}

.discover-solutions-btn:active {
    transform: translateY(0px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: white;
    width: 100%;
}

.services-section .services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #333333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    padding: 2rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    color: #333333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
}

.service-card p {
    color: #555555;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--hero-bg);
    outline: none;
}

/* Footer Styles */
footer {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 4rem 2rem 2rem;
    margin-top: 3rem;
}

.footer-content {
    margin: 0 auto;
    max-width: 1200px;
}

/* Footer Sections - Clean Flex Layout */
.footer-sections {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-section h3 {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
    width: 100%;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.footer-section ul li {
    margin-bottom: 1rem;
    text-align: left;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: #cbd5e1;
}

.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Services Page Styles */
.services-hero-section {
    background: #9c27b0;
    color: white;
    padding: 6rem 2rem 4rem;
    margin-top: 70px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.services-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.services-hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.container {
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 20px;
    width: 100%;
}

/* Ensure hero and body sections stretch full viewport width */
.hero-section, main, .services-section {
    width: 100%;
    box-sizing: border-box;
}

.blog-content {
    margin-top: 120px;
}

.main-content {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 70px;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Left Side - Company Message */
.content-left {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 50%, #4338ca 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem 3rem 4rem;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

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

/* Right Side */
.content-right {
    background: #F8FAFC;
    border-left: 1px solid #E2E8F0;
    overflow: hidden;
    position: relative;
}

/* Main tag spacing for all pages */
main {
    padding: 80px 0 0 0;
    background: var(--body-bg);
    margin: 0;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.main-content {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 50% 50%;
    margin-top: 70px;
    width: 100%;
    max-width: none;
    padding: 0;
}

/* Ensure body content is properly positioned below fixed header */
body {
    padding-top: 0;
}

/* Additional spacing for content areas */
.content-area {
    margin-top: 100px;
}

/* Fix for body section positioning */
body > *:not(header) {
    margin-top: 80px;
}

/* Additional fix for section headers */
.section-page, .careers-page, .blog-page {
    padding-top: 80px;
}

.section-page h1, .careers-header, .blog-header {
    margin-top: 0;
    top: 0;
    overflow: visible;
}

/* Blog title styling */
.current-challenges {
    padding: 4rem 0;
    background: #f8f9fa;
}

.current-challenges h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.challenge-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
}

.challenge-card h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.ai-approach {
    padding: 4rem 0;
    background: white;
}

.ai-approach h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-content h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #000000;
}

.benefit-box {
    background: #9c27b0;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
}

.our-services {
    padding: 4rem 0;
    background: #f8f9fa;
}

.our-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-detailed-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
}

.service-detailed-card.full-width {
    grid-column: 1 / -1;
}

.service-detailed-card h3 {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 1.4rem;
}

.service-detailed-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #000000;
}

.tech-services-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.tech-services-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tech-services-list li::before {
    content: '•';
    color: #9c27b0;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefit {
    background: #9c27b0;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 1rem;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
}

.who-we-serve {
    padding: 4rem 0;
    background: white;
}

.who-we-serve h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

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

.client-card {
    background: #9c27b0;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.why-choose-us {
    padding: 4rem 0;
    background: #f8f9fa;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #000000;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.benefit-item h4 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.our-promise {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.our-promise h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #000000;
}

.promise-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #000000;
}

.promise-values {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-item {
    background: #9c27b0;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
}

.cta-section {
    padding: 4rem 0;
    background: #9c27b0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: #9c27b0;
    color: #ffffff;
}

.cta-btn.secondary {
    background: white;
    color: #9c27b0;
}

.cta-btn.tertiary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Login Page Styles */
.login-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 2rem;
    margin-top: 70px;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 2rem;
    text-align: center;
}

.login-header h2 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: bold;
}

.login-header p {
    color: #666;
    margin-bottom: 2rem;
}

.login-form {
    text-align: left;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.login-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #333;
    background: white;
}

.login-form input::placeholder {
    color: #999;
}

.login-form input:focus {
    border-color: #9c27b0;
    outline: none;
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
}

.login-btn {
    width: 100%;
    background: #9c27b0;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-btn:hover {
    background: #7b1fa2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.login-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.login-footer p {
    margin: 0.5rem 0;
    color: #333;
    font-size: 0.9rem;
}

.login-footer a {
    color: #9c27b0;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
    color: #7b1fa2;
}

/* Get Quote Page Styles */
.quote-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 2rem;
    margin-top: 70px;
}

.quote-container {
    width: 100%;
    max-width: 600px;
}

.quote-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 2rem;
    text-align: center;
}

.quote-header h2 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: bold;
}

.quote-header p {
    color: #666;
    margin-bottom: 2rem;
}

.quote-form {
    text-align: left;
}

.quote-form .form-group {
    margin-bottom: 1.5rem;
}

.quote-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

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

.quote-form input::placeholder, .quote-form select::placeholder, .quote-form textarea::placeholder {
    color: #999;
}

.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
    border-color: #9c27b0;
    outline: none;
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
}

.quote-btn {
    width: 100%;
    background: #9c27b0;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-btn:hover {
    background: #7b1fa2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.quote-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.quote-footer p {
    margin: 0.5rem 0;
    color: #333;
    font-size: 0.9rem;
}

.quote-footer a {
    color: #9c27b0;
    text-decoration: none;
}

.quote-footer a:hover {
    text-decoration: underline;
    color: #7b1fa2;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 50px;
        left: -100%;
        width: 100%;
        background: var(--dark-color);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        z-index: 999;
        max-height: calc(100vh - 50px);
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left, .hero-right {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .main-content {
        grid-template-columns: 1fr;
    }

    .content-left, .content-right {
        min-height: auto;
        padding: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-sections {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        padding: 0 1rem;
    }

    .footer-section {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .footer-section h3 {
        text-align: center;
    }

    .footer-section ul {
        align-items: center;
    }

    .footer-section ul li {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-nav {
        padding: 0.2rem 1rem;
        min-height: 40px;
    }

    .logo-section img {
        height: 40px;
        width: 40px;
    }

    .company-info h1 {
        font-size: 0.8rem;
    }

    .company-info .tagline {
        font-size: 0.8rem;
    }

    .hero-section {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }

    .hero-video {
        display: none;
    }

    .services-section h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-left, .hero-right {
        padding: 1.5rem 1rem;
    }

    .discover-solutions-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }

    .services-section h2 {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .footer-sections {
        padding: 0 0.5rem;
    }

    .discover-solutions-btn {
        padding: 10px 25px;
        font-size: 12px;
    }
}


/* FOOTER FIX - Added $(date) */
.footer-sections {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-section h3 {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
    width: 100%;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.footer-section ul li {
    margin-bottom: 1rem;
    text-align: left;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

@media (max-width: 1024px) {
    .footer-sections {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        padding: 0 1rem;
    }

    .footer-section {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .footer-section h3 {
        text-align: center;
    }

    .footer-section ul {
        align-items: center;
    }

    .footer-section ul li {
        text-align: center;
    }
}

/* FOOTER FIX - Complete Version */
.footer-sections {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-section h3 {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
    width: 100%;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.footer-section ul li {
    margin-bottom: 1rem;
    text-align: left;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

/* Mobile responsive footer */
@media (max-width: 1024px) {
    .footer-sections {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        padding: 0 1rem;
    }

    .footer-section {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .footer-section h3 {
        text-align: center;
    }

    .footer-section ul {
        align-items: center;
    }

    .footer-section ul li {
        text-align: center;
    }
}

/* STATS SECTION */
.stats-section {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    padding: 4rem 2rem;
    margin: 0;
    width: 100%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* SERVICE CARDS SECTION */
.services-cards-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.services-cards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-cards-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.services-cards-section .subheading {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* HERO VIDEO FIX */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
}

.hero-main-title {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.feature-item i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    
    .hero-section {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
}

/* HERO VIDEO - FULL COLOR - NO FADE */
.hero-video {
    opacity: 1 !important;
    filter: brightness(1) !important;
    filter: contrast(1) !important;
    filter: saturate(1) !important;
}

.hero-section::before,
.hero-section::after {
    display: none !important;
}

.hero-video-overlay {
    display: none !important;
}

video.hero-video {
    opacity: 1 !important;
    filter: brightness(1) !important;
    filter: contrast(1) !important;
}

div.hero-video-overlay,
div[class*="overlay"],
div[class*="fade"] {
    display: none !important;
}

/* Ensure video is fully visible with original colors */
.hero-section {
    background: transparent !important;
}

.hero-section video {
    opacity: 1 !important;
    filter: none !important;
}

/* HERO SECTION - COMPLETE FIX */
/* Fix white gap */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background: #000;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

.hero-section > * {
    margin: 0 !important;
}

body > * {
    margin: 0 !important;
}

main {
    margin: 0 !important;
    padding: 0 !important;
}

/* Make text orange and highly visible */
.hero-main-title {
    color: #ff6b35 !important;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.95);
}

.hero-subtitle {
    color: #ff6b35 !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.95);
}

/* Remove emoticons and make text orange */
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b35 !important;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.95);
}

.feature-item i {
    display: none !important;
}

/* Ensure video is full color */
.hero-video {
    opacity: 1 !important;
    filter: brightness(1) !important;
    filter: contrast(1) !important;
    filter: saturate(1) !important;
}

/* Remove any overlays */
.hero-video-overlay {
    display: none !important;
}

.hero-section::before,
.hero-section::after {
    display: none !important;
}

/* SERVICE CARDS GRID - PURE CSS */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-cards-grid > div {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cards-grid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* SERVICE CARDS GRID - PURE CSS - NO DUPLICATION */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-cards-grid > div {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cards-grid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* HERO SECTION - DARK BLUE TEXT - COMPLETE FIX */
.hero-main-title {
    color: #1e3a8a !important;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-subtitle {
    color: #1e3a8a !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-features .feature-item {
    color: #1e3a8a !important;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-features .feature-item i {
    display: none !important;
}

/* Right side text - also dark blue */
.hero-right h2,
.hero-right p,
.hero-right .trust-text {
    color: #1e3a8a !important;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-right .cta-button-primary {
    background: #1e3a8a !important;
    color: white !important;
}

/* FIX VIDEO LOOPING JERK - SMOOTH TRANSITION */
.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
    opacity: 1 !important;
    /* Fix for smooth looping */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Prevent jerking during loop */
    will-change: auto;
    /* Smooth transition */
    transition: none;
    /* Prevent layout shift */
    pointer-events: none;
}

/* Ensure smooth loop without jerking */
video.hero-video {
    pointer-events: none;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Prevent any layout shift */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background: #000;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

/* HERO SECTION - DARK BLUE TEXT */
.hero-main-title {
    color: #1e3a8a !important;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-subtitle {
    color: #1e3a8a !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-features .feature-item {
    color: #1e3a8a !important;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-features .feature-item i {
    display: none !important;
}

.hero-right h2,
.hero-right p,
.hero-right .trust-text {
    color: #1e3a8a !important;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-right .cta-button-primary {
    background: #1e3a8a !important;
    color: white !important;
}

/* FIX VIDEO LOOPING JERK */
.hero-video {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: auto;
    transition: none;
    pointer-events: none;
}

/* HERO SECTION - WHITE TEXT FOR ALL */
.hero-main-title {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-subtitle {
    color: #ffffff !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-features .feature-item {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-features .feature-item i {
    display: none !important;
}

/* Right side text - also white */
.hero-right {
    display: block !important;
    visibility: visible !important;
}

.hero-right h2,
.hero-right p,
.hero-right .trust-text {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-right .cta-button-primary {
    background: #ff6b35 !important;
    color: white !important;
}

/* Ensure video is smooth */
.hero-video {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* HERO SECTION - FIX ALL TEXT ISSUES */
.hero-main-title {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-subtitle {
    color: #ffffff !important;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    font-weight: bold;
}

.hero-features .feature-item {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    margin-bottom: 0.8rem;
}

.hero-features .feature-item i {
    display: none !important;
}

/* Right side text - align and make bold */
.hero-right {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 3rem 2rem !important;
}

.hero-right h2 {
    color: #ffffff !important;
    font-size: 2rem !important;
    font-weight: bold !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-right p {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-right .trust-text {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

/* Fix button colors */
.hero-right .cta-button-primary {
    background: #1e3a8a !important;
    color: white !important;
    font-weight: bold !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
}

.discover-solutions-btn {
    background: #ff6b35 !important;
    color: white !important;
}

/* FIX VIDEO TILTING/SHAKING - PREVENT LAYOUT SHIFT */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background: #000;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    /* Prevent layout shift */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: auto;
}

.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
    opacity: 1 !important;
    /* Prevent tilting/shaking */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    /* Prevent layout shift */
    will-change: auto;
    transition: none;
    pointer-events: none;
    /* Fix for smooth loop */
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    /* Ensure no margin/padding */
    margin: 0 !important;
    padding: 0 !important;
}

/* Prevent any layout shift on video restart */
video.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

/* Ensure hero content doesn't shift */
.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 600px;
    /* Prevent layout shift */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* AGGRESSIVE FIX - NO LAYOUT SHIFT */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    position: relative;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background: #000;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 600px;
    /* Force hardware acceleration */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    will-change: transform;
}

.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: -1 !important;
    opacity: 1 !important;
    /* Aggressive hardware acceleration */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    will-change: auto;
    transition: none !important;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 600px;
    /* Prevent any shift */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

/* FIX VIDEO LOOPING - NATURAL LOOP WITHOUT SHAKING */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background: #000;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 600px;
    /* Prevent any layout shift */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: auto;
}

.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: -1 !important;
    opacity: 1 !important;
    /* Natural loop without shaking */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: auto;
    transition: none !important;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    /* Smooth loop */
    -webkit-perspective: 1000;
    perspective: 1000;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 600px;
    /* Prevent any shift */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

/* Prevent any body shift */
body {
    overflow-x: hidden !important;
    position: relative !important;
}

/* FIX VIDEO LOOPING - NATURAL LOOP WITHOUT SHAKING */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background: #000;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 600px;
    /* Prevent any layout shift */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: auto;
}

.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: -1 !important;
    opacity: 1 !important;
    /* Natural loop without shaking */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: auto;
    transition: none !important;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    /* Smooth loop */
    -webkit-perspective: 1000;
    perspective: 1000;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 600px;
    /* Prevent any shift */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

/* Prevent any body shift */
body {
    overflow-x: hidden !important;
    position: relative !important;
}

/* FIX GET STARTED BUTTON - ORANGE COLOR */
.hero-right .cta-button-primary {
    background: #ff6b35 !important;
    color: white !important;
    font-weight: bold !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
}

/* FIX TRUST TEXT - DISPLAY ON NEXT LINE */
.hero-right .trust-text {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    display: block !important;
    margin-top: 1rem !important;
    text-align: left !important;
}

/* FIX GET STARTED BUTTON - ORANGE COLOR */
.hero-right .cta-button-primary {
    background: #ff6b35 !important;
    color: white !important;
    font-weight: bold !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    display: block !important;
}

/* FIX TRUST TEXT - DISPLAY ON NEXT LINE */
.hero-right .trust-text {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    display: block !important;
    margin-top: 1rem !important;
    text-align: left !important;
    clear: both !important;
}

/* FIX TAGLINE - WHITE COLOR */
.company-info .tagline {
    color: #ffffff !important;
    font-size: 0.9rem;
    margin: 2px 0 0 0;
    line-height: 1.2;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* FIX TAGLINE - WHITE COLOR */
.company-info .tagline {
    color: #ffffff !important;
    font-size: 0.9rem;
    margin: 2px 0 0 0;
    line-height: 1.2;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* ESSENTIAL FIXES ONLY */
.company-info .tagline {
    color: #ffffff !important;
}

.hero-right .cta-button-primary {
    background: #ff6b35 !important;
    color: white !important;
}

.hero-main-title,
.hero-subtitle,
.hero-features .feature-item {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-features .feature-item i {
    display: none !important;
}

/* COMPLETE FIXES */
/* Tagline white */
.company-info .tagline {
    color: #ffffff !important;
}

/* Hero text white */
.hero-main-title,
.hero-subtitle,
.hero-features .feature-item {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-features .feature-item i {
    display: none !important;
}

/* Buttons orange */
.hero-right .cta-button-primary {
    background: #ff6b35 !important;
    color: white !important;
}

.discover-solutions-btn {
    background: #ff6b35 !important;
    color: white !important;
}

/* Right side text visible */
.hero-right {
    display: block !important;
    visibility: visible !important;
}

.hero-right h2,
.hero-right p,
.hero-right .trust-text {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

/* Video smooth */
.hero-video {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* COMPLETE FIXES */
.company-info .tagline {
    color: #ffffff !important;
}

.hero-main-title,
.hero-subtitle,
.hero-features .feature-item {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-features .feature-item i {
    display: none !important;
}

.hero-right .cta-button-primary {
    background: #ff6b35 !important;
    color: white !important;
}

.discover-solutions-btn {
    background: #ff6b35 !important;
    color: white !important;
}

.hero-right {
    display: block !important;
    visibility: visible !important;
}

.hero-right h2,
.hero-right p,
.hero-right .trust-text {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-video {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* FIX TAGLINE - WHITE COLOR */
.company-info .tagline {
    color: #ffffff !important;
    font-size: 0.9rem;
    margin: 2px 0 0 0;
    line-height: 1.2;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* FIX DISCOVER BUTTON */
.discover-solutions-btn {
    background: #ff6b35 !important;
    color: white !important;
    display: inline-block !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: bold !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    border: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
    text-decoration: none !important;
}

.discover-solutions-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
    background: linear-gradient(135deg, #ff5722, #f57c00) !important;
    color: white !important;
    text-decoration: none !important;
}

/* FIX DISCOVER BUTTON - VISIBLE ON DESKTOP */
.hero-buttons {
    display: block !important;
    visibility: visible !important;
    text-align: center !important;
    margin-top: 2rem !important;
    padding: 2rem 0 !important;
}

.discover-solutions-btn {
    background: #ff6b35 !important;
    color: white !important;
    display: inline-block !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: bold !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    border: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
    text-decoration: none !important;
}

.discover-solutions-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
    background: linear-gradient(135deg, #ff5722, #f57c00) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Ensure button is visible on all screen sizes */
@media (min-width: 769px) {
    .discover-solutions-btn {
        display: inline-block !important;
        visibility: visible !important;
    }
}

@media (max-width: 768px) {
    .discover-solutions-btn {
        display: inline-block !important;
        visibility: visible !important;
    }
}

/* ADMIN SECTION - ENSURE VISIBILITY */
.admin-section {
    display: block !important;
    visibility: visible !important;
    background: #f8f9fa !important;
    padding: 3rem 0 !important;
    margin-top: 2rem !important;
    width: 100% !important;
}

.admin-access {
    text-align: center !important;
    display: block !important;
}

.admin-btn {
    background: #007bff !important;
    color: white !important;
    padding: 1rem 2rem !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    margin: 0 1rem !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
}

.admin-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .admin-btn {
        display: block !important;
        margin: 0.5rem auto !important;
        max-width: 250px !important;
    }
}

/* ADMIN SECTION - ENSURE VISIBILITY */
.admin-section {
    display: block !important;
    visibility: visible !important;
    background: #f8f9fa !important;
    padding: 3rem 0 !important;
    margin-top: 2rem !important;
    width: 100% !important;
}

.admin-access {
    text-align: center !important;
    display: block !important;
}

.admin-btn {
    background: #007bff !important;
    color: white !important;
    padding: 1rem 2rem !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    margin: 0 1rem !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
}

.admin-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .admin-btn {
        display: block !important;
        margin: 0.5rem auto !important;
        max-width: 250px !important;
    }
}

/* ADMIN SECTION - ULTRA AGGRESSIVE VISIBILITY FIX */
section.admin-section,
div.admin-section,
.admin-section,
section[class*="admin"],
div[class*="admin"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #f8f9fa !important;
    padding: 3rem 0 !important;
    margin-top: 2rem !important;
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    z-index: 9999 !important;
    overflow: visible !important;
}

.admin-access {
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.admin-btn {
    background: #007bff !important;
    color: white !important;
    padding: 1rem 2rem !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    margin: 0 1rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
    cursor: pointer !important;
}

.admin-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Force visibility on all screen sizes */
@media (min-width: 769px) {
    .admin-section {
        display: block !important;
        visibility: visible !important;
    }
}

@media (max-width: 768px) {
    .admin-section {
        display: block !important;
        visibility: visible !important;
    }
    
    .admin-btn {
        display: block !important;
        margin: 0.5rem auto !important;
        max-width: 250px !important;
    }
}

/* ADMIN SECTION - ULTRA AGGRESSIVE VISIBILITY FIX */
section.admin-section,
div.admin-section,
.admin-section,
section[class*="admin"],
div[class*="admin"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #f8f9fa !important;
    padding: 3rem 0 !important;
    margin-top: 2rem !important;
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    z-index: 9999 !important;
    overflow: visible !important;
}

.admin-access {
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.admin-btn {
    background: #007bff !important;
    color: white !important;
    padding: 1rem 2rem !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    margin: 0 1rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
    cursor: pointer !important;
}

.admin-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

@media (min-width: 769px) {
    .admin-section {
        display: block !important;
        visibility: visible !important;
    }
}

@media (max-width: 768px) {
    .admin-section {
        display: block !important;
        visibility: visible !important;
    }
    
    .admin-btn {
        display: block !important;
        margin: 0.5rem auto !important;
        max-width: 250px !important;
    }
}

/* FIX ADMIN SECTION WHITE GAP */
.admin-section {
    background: #f8f9fa !important;
    padding: 1rem 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.admin-access {
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.admin-btn {
    background: #007bff !important;
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    margin: 0 1rem !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
}

.admin-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .admin-btn {
        display: block !important;
        margin: 0.5rem auto !important;
        max-width: 250px !important;
    }
}

/* REMOVE WHITE GAP - AGGRESSIVE FIX */
.admin-section {
    background: #f8f9fa !important;
    padding: 0.5rem 0 !important;
    margin: 0 !important;
    min-height: auto !important;
    height: auto !important;
}

.admin-section .container {
    padding: 0.5rem 0 !important;
    margin: 0 !important;
}

.admin-section h3 {
    margin: 0.5rem 0 !important;
    padding: 0 !important;
}

.admin-access {
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.admin-btn {
    background: #007bff !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    margin: 0 1rem !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
}

.admin-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .admin-btn {
        display: block !important;
        margin: 0.5rem auto !important;
        max-width: 250px !important;
    }
}

/* REMOVE WHITE GAP - ULTRA AGGRESSIVE FIX */
.admin-section {
    background: #f8f9fa !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

.admin-section .container {
    padding: 0 !important;
    margin: 0 !important;
}

.admin-section h3 {
    margin: 0 !important;
    padding: 0.5rem 0 !important;
}

.admin-access {
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.admin-btn {
    background: #007bff !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    margin: 0 1rem !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
}

.admin-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Remove any spacing before admin section */
section.admin-section,
div.admin-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

@media (max-width: 768px) {
    .admin-btn {
        display: block !important;
        margin: 0.5rem auto !important;
        max-width: 250px !important;
    }
}

/* REMOVE WHITE GAP - COMPLETE FIX */
.admin-section {
    background: #f8f9fa !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

.admin-section .container {
    padding: 0 !important;
    margin: 0 !important;
}

.admin-section h3 {
    margin: 0 !important;
    padding: 0 !important;
}

.admin-access {
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.admin-btn {
    background: #007bff !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    margin: 0 1rem !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
}

.admin-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Remove any spacing before admin section */
section.admin-section,
div.admin-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

@media (max-width: 768px) {
    .admin-btn {
        display: block !important;
        margin: 0.5rem auto !important;
        max-width: 250px !important;
    }
}

/* REMOVE WHITE GAP - ULTRA AGGRESSIVE FIX */
.admin-section {
    background: #f8f9fa !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

.admin-section .container {
    padding: 0 !important;
    margin: 0 !important;
}

.admin-section h3 {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.admin-access {
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.admin-btn {
    background: #007bff !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    margin: 0 auto !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
}

.admin-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Remove any spacing before admin section */
section.admin-section,
div.admin-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

@media (max-width: 768px) {
    .admin-btn {
        display: block !important;
        margin: 0.5rem auto !important;
        max-width: 250px !important;
    }
}

/* REMOVE WHITE GAP - ULTRA AGGRESSIVE FIX */
.admin-section {
    background: #f8f9fa !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

.admin-section .container {
    padding: 0 !important;
    margin: 0 !important;
}

.admin-section h3 {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.admin-access {
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.admin-btn {
    background: #007bff !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    margin: 0 auto !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
}

.admin-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Remove any spacing before admin section */
section.admin-section,
div.admin-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

@media (max-width: 768px) {
    .admin-btn {
        display: block !important;
        margin: 0.5rem auto !important;
        max-width: 250px !important;
    }
}

/* FORCE CARDS TO 3 COLUMN GRID */
section.py-16.bg-gray-50 .grid.md\:grid-cols-2.lg\:grid-cols-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    width: 100% !important;
}

section.py-16.bg-gray-50 .grid.md\:grid-cols-2.lg\:grid-cols-3 > div {
    display: block !important;
    width: 100% !important;
}

/* Ensure all 6 cards show */
/* section.py-16.bg-gray-50 .bg-white.p-6.rounded-xl {
/*     display: block !important;
/* }
/* 
/* 
/* /* GLOBAL GRID FIX - 3 COLUMNS ON DESKTOP */
/* section div.grid[class*="grid-cols"] {
/*     display: grid !important;
/*     grid-template-columns: repeat(3, 1fr) !important;
/* }
/* 
/* 
/* /* Force Discover Solutions button to be visible */
/* .hero-buttons {
/*     position: relative !important;
/*     z-index: 1000 !important;
/*     display: block !important;
/*     text-align: center !important;
/*     margin-top: 2rem !important;
/* }
/* 
/* .discover-solutions-btn {
/*     position: relative !important;
/*     z-index: 1000 !important;
/*     display: inline-block !important;
/*     visibility: visible !important;
/*     opacity: 1 !important;
/* }
/* 
/* /* Ensure button shows on all screen sizes */
/* @media (min-width: 1024px) {
/*     .hero-buttons {
/*         display: block !important;
/*     }
/*     
/*     .discover-solutions-btn {
/*         display: inline-block !important;
/*     }
/* }
/* 
/* 
/* /* Stop video loop shake */
/* .hero-section { 
/*     contain: layout style paint !important; 
/* }
/* .hero-video { 
/*     transform: translate3d(0,0,0) !important;
/* }
/* 
/* 
/* /* ======================================== */
/* /* RESPONSIVE FIXES - Added $(date) */
/* /* ======================================== */
/* 
/* /* Verticals Page - Mobile Fix */
/* @media (max-width: 768px) {
/*     .verticals-page [style*="grid-template-columns: repeat(3"] {
/*         grid-template-columns: 1fr !important;
/*     }
/* }
/* 
/* /* Insights Page - Mobile Fix */
/* @media (max-width: 1024px) {
/*     .insights-page [style*="grid-template-columns: repeat(3"] {
/*         grid-template-columns: repeat(2, 1fr) !important;
/*     }
/* }
/* 
/* @media (max-width: 640px) {
/*     .insights-page [style*="grid-template-columns"] {
/*         grid-template-columns: 1fr !important;
/*     }
/* }
/* 
/* /* Animate cards appearing one by one */
/* @keyframes fadeInUp {
/*     from {
/*         opacity: 0;
/*         transform: translateY(30px);
/*     }
/*     to {
/*         opacity: 1;
/*         transform: translateY(0);
/*     }
/* }
/* 
/* .bg-white.p-6.rounded-xl {
/*     animation: fadeInUp 0.6s ease-out forwards;
/*     opacity: 0;
/* }
/* 
/* .bg-white.p-6.rounded-xl:nth-child(1) { animation-delay: 0.1s; }
/* .bg-white.p-6.rounded-xl:nth-child(2) { animation-delay: 0.3s; }
/* .bg-white.p-6.rounded-xl:nth-child(3) { animation-delay: 0.5s; }
/* .bg-white.p-6.rounded-xl:nth-child(4) { animation-delay: 0.7s; }
/* .bg-white.p-6.rounded-xl:nth-child(5) { animation-delay: 0.9s; }
/* .bg-white.p-6.rounded-xl:nth-child(6) { animation-delay: 1.1s; }
*//


/* Mobile fixes for Collaborative Network */
@media (max-width: 768px) {
    .collaborative-section,
    .expertise-section {
        padding: 2rem 1rem !important;
    }
    
    .collaborative-section h1,
    .collaborative-section h2,
    .expertise-section h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }
    
    .collaborative-section p,
    .expertise-section p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* Contact cards mobile */
    .contact-card {
        max-width: 100% !important;
        padding: 1.5rem !important;
        margin: 1rem 0 !important;
    }
}


/* Admin Login Mobile Fix */
@media (max-width: 768px) {
    .admin-login-container {
        width: 95% !important;
        padding: 1.5rem !important;
        margin: 1rem auto !important;
    }
    
    .admin-login-container h1 {
        font-size: 1.5rem !important;
    }
    
    .admin-login-container input {
        font-size: 16px !important;
        padding: 12px !important;
    }
    
    .admin-login-container button {
        padding: 12px !important;
        font-size: 16px !important;
    }
}


/* Client Stories Mobile Spacing */
@media (max-width: 768px) {
    .client-story-card {
        margin-bottom: 2rem !important;
        padding: 1.5rem !important;
    }
    
    .client-story-card h3 {
        margin-bottom: 1rem !important;
    }
    
    .client-story-card .tags {
        margin-top: 1rem !important;
        gap: 0.5rem !important;
    }
}


/* Blog Icons Mobile Fix */
@media (max-width: 768px) {
    .blog-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 16px !important;
    }
    
    .blog-category-icon {
        display: inline-block !important;
        margin-right: 8px !important;
    }
}


/* Career Form Mobile */
@media (max-width: 768px) {
    .career-form {
        padding: 1rem !important;
    }
    
    .career-form input,
    .career-form select,
    .career-form textarea {
        font-size: 16px !important;
        padding: 12px !important;
        width: 100% !important;
    }
    
    .career-form label {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }
}


/* Global Mobile Improvements */
@media (max-width: 768px) {
    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
    }
    
    /* Better touch targets */
    a, button {
        min-height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Better spacing */
    section {
        padding: 2rem 1rem !important;
    }
    
    /* Prevent horizontal scroll */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    * {
        max-width: 100% !important;
    }
    
    img {
        height: auto !important;
    }
}


/* Mobile Card Stacking Fix */
@media (max-width: 768px) {
    /* Force single column on mobile */
    .grid.md\:grid-cols-2.lg\:grid-cols-3 {
        grid-template-columns: 1fr !important;
    }
    
    /* Stack all cards vertically on mobile */
    [class*="grid"][class*="md:grid-cols"] {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile Card Stacking Fix */
@media (max-width: 768px) {
    .grid.md\:grid-cols-2.lg\:grid-cols-3 {
        grid-template-columns: 1fr !important;
    }
    [class*="grid"][class*="md:grid-cols"] {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile Responsiveness - Force Single Column */
@media (max-width: 768px) {
    [class*="grid"] { grid-template-columns: 1fr !important; }
    .grid.md\:grid-cols-2, .grid.lg\:grid-cols-3, .grid.md\:grid-cols-2.lg\:grid-cols-3 { grid-template-columns: 1fr !important; }
    .admin-section { margin-top: 0 !important; padding: 2rem 0 !important; }
}

/* Mobile Responsiveness Fixes */
@media (max-width: 768px) {
    [class*="grid"] { grid-template-columns: 1fr !important; }
    .grid.md\:grid-cols-2, .grid.lg\:grid-cols-3 { grid-template-columns: 1fr !important; }
    .admin-section { margin-top: 0 !important; padding: 2rem 0 !important; }
    .contact-card, .expertise-card { width: 100% !important; margin: 1rem 0 !important; }
}

/* Mobile Responsiveness - Force 1 Column on Mobile */
@media (max-width: 768px) {
    [class*="grid"] { grid-template-columns: 1fr !important; }
    .grid.md\:grid-cols-2, .grid.lg\:grid-cols-3, .grid.md\:grid-cols-2.lg\:grid-cols-3 { grid-template-columns: 1fr !important; }
    .admin-section { margin-top: 0 !important; padding: 2rem 0 !important; }
    .contact-card, .expertise-card { width: 100% !important; margin: 1rem 0 !important; }
    .flex.flex-wrap { flex-direction: column !important; }
    .bg-white.p-6, .bg-white.rounded-xl, .shadow-lg { width: 100% !important; max-width: 100% !important; }
}

/* Mobile Responsiveness - Force 1 Column */
@media (max-width: 768px) {
    [class*="grid"], [class*="grid-cols"] { grid-template-columns: 1fr !important; display: grid !important; }
    .grid.md\:grid-cols-2, .grid.lg\:grid-cols-3 { grid-template-columns: 1fr !important; }
    .admin-section { margin-top: 0 !important; padding: 2rem 0 !important; }
    .flex.flex-wrap { flex-direction: column !important; }
    .bg-white.p-6, .bg-white.rounded-xl { width: 100% !important; max-width: 100% !important; }
    div[class*="grid"] > * { width: 100% !important; }
}

/* Mobile Responsiveness - FORCE 1 COLUMN */
@media (max-width: 768px) {
    .grid, [class*="grid"], [class*="grid-cols"], div[class*="grid"] { grid-template-columns: 1fr !important; display: grid !important; }
    .grid.md\:grid-cols-2, .grid.lg\:grid-cols-3, .grid.md\:grid-cols-2.lg\:grid-cols-3 { grid-template-columns: 1fr !important; }
    .bg-white, .bg-white.p-6, .bg-white.rounded-xl, .shadow-lg { width: 100% !important; max-width: 100% !important; min-width: 100% !important; }
    .flex.flex-wrap, .flex { flex-direction: column !important; flex-wrap: wrap !important; }
    .admin-section { margin-top: 0 !important; padding: 2rem 0 !important; }
    .grid > *, [class*="grid"] > *, div[class*="grid"] > * { width: 100% !important; max-width: 100% !important; }
    #services .grid, #services [class*="grid"] { grid-template-columns: 1fr !important; }
    .py-20 .grid, .py-20 [class*="grid"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
    *[class*="grid"] { grid-template-columns: 1fr !important; }
    .grid > * { width: 100% !important; }
}

/* Specific Fix for Our Services & Exclusive Business Solutions */
@media (max-width: 768px) {
    #services .grid, #services [class*="grid"], section[id="services"] .grid, section.py-20 .grid { grid-template-columns: 1fr !important; display: grid !important; }
    section[style*="background:#f8f9fa"] .grid, section[style*="background:#f8f9fa"] [class*="grid"], .py-16 .grid, section.py-16 .grid { grid-template-columns: 1fr !important; display: grid !important; }
    #services .bg-white, section[id="services"] .bg-white, section[style*="background:#f8f9fa"] .bg-white, .py-16 .bg-white, section.py-16 .bg-white, section.py-20 .bg-white { width: 100% !important; max-width: 100% !important; min-width: 100% !important; }
    section[style*="display: flex"] { flex-direction: column !important; }
}

/* Force Single Column on Mobile */
@media (max-width: 768px) {
    .grid, [class*="grid"], [class*="grid-cols"], div.grid, section .grid, #services .grid, .py-16 .grid, .py-20 .grid { grid-template-columns: 1fr !important; display: grid !important; gap: 1rem !important; }
    .bg-white, .bg-white.p-6, .bg-white.rounded-xl, .shadow-lg, [class*="bg-white"], section .bg-white { width: 100% !important; max-width: 100% !important; min-width: 100% !important; margin: 0 auto !important; }
    .flex, .flex.flex-wrap { flex-direction: column !important; }
    .grid > *, [class*="grid"] > *, section .grid > * { width: 100% !important; max-width: 100% !important; }
}

/* Force Vertical Stacking on Mobile */
@media (max-width: 768px) {
    .grid, [class*="grid"], [class*="grid-cols"], div[class*="grid"], section .grid, #services .grid, .py-16 .grid, .py-20 .grid { grid-template-columns: 1fr !important; display: grid !important; grid-auto-flow: row !important; gap: 1.5rem !important; }
    .bg-white, .bg-white.p-6, .bg-white.rounded-xl, .shadow-lg, [class*="bg-white"], section .bg-white { width: 100% !important; max-width: 100% !important; min-width: 100% !important; margin: 0 auto !important; display: block !important; }
    .flex, .flex.flex-wrap, [class*="flex"] { flex-direction: column !important; flex-wrap: nowrap !important; }
    .grid > *, [class*="grid"] > *, section .grid > * { width: 100% !important; max-width: 100% !important; display: block !important; float: none !important; }
    [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    [style*="display: flex"] { flex-direction: column !important; }
}

/* Mobile-Grid Class - Force Single Column */
@media (max-width: 768px) {
    .mobile-grid, .mobile-grid.grid, [class*="mobile-grid"] { grid-template-columns: 1fr !important; display: grid !important; grid-auto-flow: row !important; gap: 1.5rem !important; }
    .mobile-grid > *, .mobile-grid .bg-white { width: 100% !important; max-width: 100% !important; min-width: 100% !important; display: block !important; }
}

/* Override Tailwind - Force Single Column */
@media (max-width: 768px) {
    .grid.md\:grid-cols-2, .grid.lg\:grid-cols-3, .grid.md\:grid-cols-2.lg\:grid-cols-3, [class*="md:grid-cols-2"], [class*="lg:grid-cols-3"] { grid-template-columns: 1fr !important; display: grid !important; }
    .grid, [class*="grid"], [class*="grid-cols"], div.grid { grid-template-columns: 1fr !important; display: grid !important; grid-auto-flow: row !important; }
    .bg-white, .bg-white.p-6, .bg-white.rounded-xl, .shadow-lg, [class*="bg-white"] { width: 100% !important; max-width: 100% !important; min-width: 100% !important; display: block !important; float: none !important; }
    .flex, .flex.flex-wrap, [class*="flex"] { flex-direction: column !important; flex-wrap: nowrap !important; }
    .grid > *, [class*="grid"] > * { width: 100% !important; max-width: 100% !important; display: block !important; }
}

/* ===== MOBILE RESPONSIVE FIXES - Added $(date +%Y-%m-%d) ===== */

/* Services Section - Mobile Only */
@media (max-width: 768px) {
  #services .service-cards-container,
  .services-grid,
  .service-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    width: 100% !important;
  }
  
  #services .service-card,
  .service-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 1.5rem auto !important;
    flex: none !important;
  }
}

/* Exclusive Business Solutions - Mobile Only */
@media (max-width: 768px) {
  section[class*="exclusive"] .cards-container,
  .business-solutions-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  
  section[class*="exclusive"] .card,
  .business-solution-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 1.5rem auto !important;
  }
}
/* ===== END MOBILE FIXES ===== */

/* ===== MOBILE RESPONSIVE FIXES - Tailwind Grid Override ===== */

/* Force single column on mobile for services section */
@media (max-width: 768px) {
  .mobile-grid,
  .grid {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }
  
  /* Services cards container */
  #services .container > div[class*="grid"],
  div[class*="grid-cols"] {
    grid-template-columns: 1fr !important;
  }
  
  /* All service cards full width */
  #services .grid > div,
  .mobile-grid > div {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Exclusive Business Solutions - Mobile */
@media (max-width: 768px) {
  section[class*="py-16"] .grid,
  section[class*="py-20"] .grid {
    grid-template-columns: 1fr !important;
  }
}

/* ========================================
   NUCLEAR MOBILE FIX - ABSOLUTE OVERRIDE
   ======================================== */

@media screen and (max-width: 768px) {
  
  /* KILL ALL GRID LAYOUTS ON MOBILE */
  * [class*="grid"],
  *[class*="md:grid"],
  *[class*="lg:grid"],
  .mobile-grid,
  .grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    -ms-grid-columns: none !important;
  }
  
  /* FORCE 100% WIDTH FOR ALL GRID CHILDREN */
  * [class*="grid"] > *,
  .mobile-grid > *,
  .grid > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    flex: none !important;
    grid-column: auto !important;
  }
}

/* END NUCLEAR FIX */

/* ========================================
   SUPER NUCLEAR - OVERRIDE INLINE STYLES
   ======================================== */

@media screen and (max-width: 768px) {
  
  /* Override ANY inline grid styles */
  div[style*="display: grid"],
  div[style*="display:grid"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  /* Services section specific */
  #services div[style*="grid"],
  section[id*="service"] div[style*="grid"] {
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Tailwind grid classes - maximum override */
  [class*="md:grid-cols-3"],
  [class*="md:grid-cols-2"],
  [class*="lg:grid-cols"],
  .mobile-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
  }
  
  /* All children 100% width */
  div[style*="display: grid"] > div,
  div[style*="display:grid"] > div,
  [class*="md:grid-cols"] > div,
  .mobile-grid > div {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* END SUPER NUCLEAR */

/* ========================================
   PROPER MOBILE RESPONSIVE - Clean Solution
   ======================================== */

/* Services Section Mobile */
@media screen and (max-width: 768px) {
  #services .mobile-grid {
    display: block !important;
    grid-template-columns: none !important;
  }
  
  #services .mobile-grid > div {
    margin-bottom: 2rem;
  }
}

/* Exclusive Business Solutions Mobile */
@media screen and (max-width: 768px) {
  section.py-16 .grid[class*="md:grid-cols"] {
    display: block !important;
    grid-template-columns: none !important;
  }
  
  section.py-16 .grid[class*="md:grid-cols"] > div {
    margin-bottom: 2rem;
  }
}

/* ========================================
   CLEAN MOBILE FIX - After removing inline styles
   ======================================== */

@media screen and (max-width: 768px) {
  
  /* Services Section */
  #services .mobile-grid.grid {
    display: block !important;
  }
  
  #services .mobile-grid.grid > div {
    width: 100% !important;
    margin-bottom: 2rem !important;
  }
  
  /* Exclusive Business Solutions */
  section.py-16 .grid.md\:grid-cols-2,
  section.py-16 .grid.lg\:grid-cols-3 {
    display: block !important;
  }
  
  section.py-16 .grid > div {
    width: 100% !important;
    margin-bottom: 2rem !important;
  }
}

/* EMERGENCY MOBILE FIX - Maximum Specificity */
@media screen and (max-width: 768px) {
  body #services .mobile-grid.grid.md\:grid-cols-3,
  body section.py-16 .grid.md\:grid-cols-2.lg\:grid-cols-3 {
    display: block !important;
    grid-template-columns: none !important;
  }
  
  body #services .mobile-grid.grid.md\:grid-cols-3 > div,
  body section.py-16 .grid > div {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 0 2rem 0 !important;
  }
}
