/* ==========================================================================
   CSS Variables & Globals
   ========================================================================== */
:root {
    --primary-blue: #0B5ED7;
    --dark-navy: #0A2540;
    --steel-gray: #6C757D;
    --light-gray: #F4F6F9;
    --white: #FFFFFF;
    --accent-orange: #F97316;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 15px 40px rgba(11, 94, 215, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--steel-gray);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-navy);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent-orange) !important; }
.text-light-gray { color: #A0AAB2 !important; }

.bg-light { background-color: var(--light-gray); }
.bg-dark { background-color: var(--dark-navy); }
.bg-accent { background-color: var(--primary-blue); }

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.pt-3 { padding-top: 1rem; }
.pt-5 { padding-top: 3rem; }
.pb-3 { padding-bottom: 1rem; }

.section-header {
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 500;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    font-family: var(--font-heading);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
}
.btn-primary:hover {
    background-color: #E06511;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}
.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-navy);
}

.btn-outline-navy {
    background-color: transparent;
    border-color: var(--dark-navy);
    color: var(--dark-navy);
}
.btn-outline-navy:hover {
    background-color: var(--dark-navy);
    color: var(--white);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* ==========================================================================
   Coming Soon Banner
   ========================================================================== */
.coming-soon-banner {
    background: linear-gradient(90deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
}
.coming-soon-banner i {
    margin-right: 8px;
    color: var(--accent-orange);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
}
.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.logo img {
    max-height: 70px;
    transform: scale(1.35);
    transform-origin: left center;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.1;
}
.logo-text span {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}
.nav-links li a {
    color: var(--dark-navy);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition-fast);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}
.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-blue);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-navy);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: var(--dark-navy);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 37, 64, 0.9) 0%, rgba(10, 37, 64, 0.6) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 100%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-text {
    max-width: 100%;
}
.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    border-radius: 12px;
}
.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}
.hero .subtitle {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--accent-orange);
    margin-bottom: 25px;
    font-weight: 500;
}
.hero .description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Highlights Section
   ========================================================================== */
.highlights {
    background-color: var(--primary-blue);
    padding: 30px 0;
    color: var(--white);
}
.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1.05rem;
}
.highlight-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}
.about-text p {
    margin-bottom: 20px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-fast);
    border-bottom: 4px solid var(--primary-blue);
    text-align: center;
}
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}
.mv-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(11, 94, 215, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}
.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.mv-subtitle {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition-fast);
    border: 1px solid rgba(0,0,0,0.05);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-blue);
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}
.feature-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* ==========================================================================
   Products
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}
.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    z-index: -1;
    transition: transform 0.5s ease;
    transform: scaleY(0);
    transform-origin: bottom;
}
.product-card:hover::before {
    transform: scaleY(1);
}
.product-card:hover h4,
.product-card:hover p {
    color: var(--white);
}
.card-inner {
    padding: 40px 30px;
    text-align: center;
}
.product-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(11, 94, 215, 0.05);
    border-radius: 8px;
    padding: 10px;
    transition: var(--transition-fast);
}
.product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-fast);
}
.product-card:hover .product-img {
    background: rgba(255, 255, 255, 0.2);
}
.product-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}
.product-card p {
    transition: var(--transition-fast);
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition-fast);
}
.service-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}
.service-icon {
    background: var(--primary-blue);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.service-details h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.25rem;
}
.service-details p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ==========================================================================
   Brands
   ========================================================================== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.brand-card {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: var(--transition-fast);
}
.brand-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--box-shadow);
}
.brand-img-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.brand-img-wrapper.text-placeholder {
    height: 0;
    margin-bottom: 0;
}
.brand-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.brand-card h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* ==========================================================================
   How We Work (Timeline)
   ========================================================================== */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    width: 2px;
    background: rgba(11, 94, 215, 0.2);
}
.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}
.process-step:last-child {
    margin-bottom: 0;
}
.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 0 10px var(--light-gray);
}
.step-content {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    width: 100%;
}
.step-content h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* ==========================================================================
   Industries
   ========================================================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.industry-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition-fast);
}
.industry-card:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
}
.industry-card i {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
    transition: var(--transition-fast);
}
.industry-card:hover i,
.industry-card:hover h4 {
    color: var(--white);
}
.industry-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}
.industry-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================================================
   Achievements
   ========================================================================== */
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.stat-item {
    text-align: center;
    color: var(--white);
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 5px;
    color: var(--accent-orange);
}
.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta-box {
    background: var(--light-gray);
    padding: 60px 40px;
    border-radius: 12px;
    border-top: 5px solid var(--accent-orange);
}
.cta-box h2 {
    margin-bottom: 20px;
}
.cta-box p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}
.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-orange);
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
}
.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}
.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255,255,255,0.8);
}
.contact-info i {
    color: var(--accent-orange);
    margin-top: 5px;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image img { max-width: 80%; margin: 30px auto 0; }
    .hero-buttons { justify-content: center; }
    .hero h1 { font-size: 2.8rem; }
    .mission-vision-grid, .services-list { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transition: var(--transition-fast);
        gap: 20px;
    }
    .nav-links.active { left: 0; }
    .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    
    .hero { min-height: auto; padding: 80px 0 60px; }
    .hero h1 { font-size: 2.2rem; line-height: 1.2; }
    .process-timeline::before { left: 20px; }
    .step-number { width: 40px; height: 40px; font-size: 1.2rem; box-shadow: 0 0 0 5px var(--light-gray); }
    .process-step { gap: 15px; }
    
    .section-padding { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 2rem; }
    
    .highlights-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .logo img {
        transform: scale(1.1); /* Slightly smaller scale on mobile */
    }
}

@media (max-width: 576px) {
    .brands-grid, .industries-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { text-align: center; width: 100%; }
    .stats-grid { flex-direction: column; gap: 40px; }
}
