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

:root {
    --primary-blue: #1A4D8F;
    --accent-blue: #3B82F6;
    --dark-navy: #0F2847;
    --light-bg: #F8FAFC;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: var(--dark-navy);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

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

/* Typography Utils */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.mt-4 { margin-top: 40px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-navy);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dark-navy);
}

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

.nav-links a {
    font-weight: 600;
    color: var(--dark-navy);
    padding: 8px 12px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-blue);
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    background-image: url('../images/hero_bg_1781974112355.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 40, 71, 0.7); /* Deep navy overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Stats Strip */
.stats-strip {
    background-color: var(--dark-navy);
    padding: 60px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
}

.about-image img {
    box-shadow: 8px 8px 0 var(--primary-blue);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-top: 4px solid var(--primary-blue);
    transition: transform 0.3s;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.product-category-title {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-blue);
    padding-left: 15px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid #E2E8F0;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Why Choose Us */
.why-us {
    background-color: var(--dark-navy);
    padding: 80px 0;
    color: var(--white);
}

.why-us .section-header h2 {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 25px;
    border-left: 3px solid var(--accent-blue);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    opacity: 0.5;
    margin-bottom: 15px;
}

.why-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.why-card p {
    color: #CBD5E1; /* Light gray for readability */
}

/* Founder Section */
.founder {
    padding: 80px 0;
    background-color: var(--white);
}

.founder-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: var(--light-bg);
    padding: 40px;
}

.founder-image {
    flex: 0 0 350px;
}

.founder-image img {
    width: 100%;
    box-shadow: -8px 8px 0 var(--primary-blue);
}

.founder-content {
    flex: 1;
}

.founder-content h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.founder-name {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.founder-title {
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* How We Work */
.how-we-work {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    z-index: 1;
}

.timeline-item {
    width: 23%;
    position: relative;
    z-index: 2;
}

.timeline-badge {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 30px;
    border: 5px solid var(--light-bg);
}

.timeline-content {
    background-color: var(--white);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 3px solid var(--dark-navy);
}

.timeline-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #F59E0B;
    margin-bottom: 20px;
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.author strong {
    display: block;
    color: var(--dark-navy);
    font-size: 1.1rem;
}

.author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Global Reach */
.global-reach {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.reach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.reach-card {
    background-color: var(--dark-navy);
    padding: 30px 20px;
    text-align: center;
    color: var(--white);
    border-bottom: 4px solid var(--accent-blue);
}

.reach-card h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.reach-card p {
    color: #E2E8F0; /* Near white */
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-container {
    display: flex;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background-color: var(--white);
}

.contact-info-card {
    flex: 1;
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-blue);
    opacity: 0.2;
    transform: rotate(45deg);
}

.contact-info-card h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info-card p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #CBD5E1;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item a, .contact-item span {
    color: #CBD5E1;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-blue);
}

.contact-form {
    flex: 1.5;
    background-color: var(--white);
    padding: 60px 50px;
}

.form-header {
    margin-bottom: 35px;
    border-left: 5px solid var(--accent-blue);
    padding-left: 15px;
}

.contact-form h3 {
    font-size: 2.2rem;
    color: var(--dark-navy);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: #F1F5F9;
    border: 1px solid #E2E8F0;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 0; /* Sharp corners requirement */
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

#submitBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.form-note {
    margin-top: 20px;
    color: var(--text-light);
    text-align: center;
}

.form-success {
    display: none;
    background-color: #10B981;
    color: var(--white);
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #CBD5E1;
    margin-top: 15px;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #CBD5E1;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: #CBD5E1;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #CBD5E1;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    background-color: #0B1D36; /* Darker navy */
    padding: 20px 0;
    text-align: center;
    color: #94A3B8;
    font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    font-size: 30px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    border-radius: 50%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid, .reach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-container {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline {
        flex-direction: column;
        padding-top: 0;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .timeline-badge {
        margin: 0 20px 0 0;
    }
    
    .timeline-content {
        flex: 1;
        text-align: left;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-card, .contact-form {
        padding: 40px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid, .reach-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-badge {
        margin: 0 auto 20px;
    }
    
    .timeline-content {
        text-align: center;
    }
}
