:root {
    --primary: #0A2342; /* Deep navy blue - main brand color */
    --secondary: #1E3A5F; /* Slightly lighter navy */
    --accent: #FF7D00; /* Orange/Gold accent - from the logo */
    --accent-light: #FFA940; /* Lighter orange for hover states */
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 125, 0, 0.2);
}

/* Header & Navigation - FIXED */
header {
    background-color: var(--primary);
    box-shadow: 0 2px 15px rgba(10, 35, 66, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent);
    margin-left: 6px;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

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

.nav-links a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-links a.active {
    color: var(--accent);
}

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

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

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1002;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 35, 66, 0.9), rgba(30, 58, 95, 0.9)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.6rem;
}

.hero span {
    color: orangered;
}

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

.hero h2 {
    font-size: 1.7em;
    margin: 0;
    padding: 0;
    line-height: 0;
}

/* Key Pillars */
.pillars-section {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    display: inline-block;
    position: relative;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
}

.pillars-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.pillar-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(10, 35, 66, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border-top: 3px solid var(--accent);
}

.pillar-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 35, 66, 0.1);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.pillar-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
}

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

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

.about-text {
    flex: 1;
}

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

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(10, 35, 66, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: white;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(10, 35, 66, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border-top: 3px solid var(--accent);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-10px);
    border-top-color: var(--accent-light);
}

.service-card:hover h3,
.service-card:hover .service-icon,
.service-card:hover p {
    color: white;
}

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

.service-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin-top: 50px;
}

.process-steps:before {
    content: '';
    position: absolute;
    width: 80%;
    height: 3px;
    background-color: var(--accent);
    top: 40px;
    left: 10%;
    z-index: 1;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(255, 125, 0, 0.2);
    border: 3px solid white;
}

.process-step h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: white;
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(10, 35, 66, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border-top: 3px solid var(--accent);
}

.team-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 35, 66, 0.1);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.team-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
}

.team-card .position {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Why Choose Us */
.why-section {
    padding: 100px 0;
    background-color: var(--primary);
    color: white;
}

.why-section .section-title h2 {
    color: white;
}

.why-section .section-title h2:after {
    background-color: var(--accent);
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--accent);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Compliance Section */
.compliance-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.compliance-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.compliance-text {
    flex: 1;
}

.compliance-text h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.compliance-text h3 {
    color: var(--primary);
    margin: 25px 0 15px;
}

.compliance-list {
    list-style: none;
    margin-bottom: 30px;
}

.compliance-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.compliance-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.compliance-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(10, 35, 66, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.compliance-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.compliance-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: white;
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-right: 15px;
    width: 30px;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(10, 35, 66, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 125, 0, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #2f445e;
    color: white;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.social-column {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    color: white;
}

.social-icons a svg {
    transition: transform 0.3s ease;
}

.social-icons a:hover svg {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design - FIXED MOBILE NAVIGATION */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .process-steps:before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation - FIXED */
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 20px 40px;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a.active {
        background-color: rgba(255, 125, 0, 0.1);
        border-radius: 5px;
    }
    
    .nav-links a:after {
        display: none;
    }
    
    /* Hero section */
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    /* About section */
    .about-content,
    .compliance-content {
        flex-direction: column;
    }
    
    /* Adjust header logo */
    .logo img {
        height: 50px;
    }
    
    /* Sections padding */
    .pillars-section,
    .about-section,
    .services-section,
    .process-section,
    .team-section,
    .why-section,
    .compliance-section,
    .contact-section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .pillar-card,
    .service-card,
    .team-card {
        min-width: 100%;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Footer */
    .simple-footer {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    footer {
        padding: 25px 0;
    }
    
    .copyright-column p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
    }
    
    .social-icons a svg {
        width: 18px;
        height: 18px;
    }
    
    .logo img {
        height: 45px;
    }
}

/* Vendor Portal Specific Styles - Mobile fixes */
@media (max-width: 768px) {
    .vendor-portal-section {
        padding: 100px 0 60px !important;
    }
    
    .vendor-portal-header h1 {
        font-size: 2.3rem !important;
    }
    
    .download-card,
    .vendor-instructions,
    .contact-support,
    .vendor-faq {
        padding: 30px 20px !important;
    }
    
    .btn-download {
        width: 100% !important;
        padding: 15px 20px !important;
    }
}


/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 125, 0, 0.3);
    color: white;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--accent);
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

/* Animation for CTA */
.cta-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}