﻿/* Base Variables and Global Styles */
:root {
    --primary: #003a6b;
    --primary-dark: #002547;
    --secondary: #2c5282;
    --secondary-light: #4c7abb;
    --accent: #0f62fe;
    --dark: #1a202c;
    --light: #f7fafc;
    --light-gray: #e2e8f0;
    --text: #4a5568;
    --white: #ffffff;
    --success: #2e7d32;
    --warning: #f59e0b;
    --danger: #b91c1c;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --section-spacing: 80px;
    --content-spacing: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: var(--content-spacing);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--content-spacing);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
    font-weight: 600;
}

.cta a {
    color: var(--secondary-light);
    font-weight: bold;
    transition: var(--transition);
}

    .cta a:hover {
        color: var(--white);
        opacity: 0.9;
    }




    a:hover {
        color: var(--primary-dark);
    }

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: var(--content-spacing);
}

li {
    margin-bottom: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-spacing) 0;
}

.section-light {
    background-color: var(--light);
}

.section-dark {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-description {
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 2rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 2rem;
}

/* Button Component */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

    .btn-primary:hover {
        background-color: var(--primary-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

    .btn-secondary:hover {
        background-color: var(--secondary-light);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

/* CTA Section Specific Button Styles */
.cta .btn-accent {
    background-color: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    font-weight: 600;
}

    .cta .btn-accent:hover {
        background-color: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.cta .btn-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
}

    .cta .btn-white:hover {
        background-color: rgba(255,255,255,0.2);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

/* Ensure other button types maintain their original styling */
.btn-accent:not(.cta .btn-accent) {
    background-color: var(--accent);
    color: var(--white);
}

    .btn-accent:not(.cta .btn-accent):hover {
        background-color: #0d56e0;
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

    .btn-outline:hover {
        background-color: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.btn-white {
    background-color: var(--white);
    color: var(--primary);
}

    .btn-white:hover {
        background-color: var(--light-gray);
        color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0, 58, 107, 0.1);
    }

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Card Component */
.card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

    .header.scrolled {
        box-shadow: var(--shadow);
    }

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        height: 40px;
    }

    .logo h1 {
        font-size: 1.5rem;
        margin-left: 10px;
        margin-bottom: 0;
        color: var(--primary);
    }

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 5px 0;
    transition: var(--transition);
}

    .nav-link:hover {
        color: var(--primary);
    }

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 10;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin-bottom: 0;
}

.dropdown-menu .nav-link {
    display: block;
    padding: 8px 20px;
}

    .dropdown-menu .nav-link:hover {
        background-color: var(--light);
    }

.header-buttons {
    display: flex;
    gap: 10px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Page Hero Sections */
.page-hero {
    background: linear-gradient(rgba(0, 58, 107, 0.9), rgba(0, 58, 107, 0.8)), url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
}

    .page-hero a:not(.btn),
    .hero a:not(.btn) {
        color: #87CEEB; /* Light sky blue - visible against dark blue background */
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
    }

        .page-hero a:not(.btn):hover,
        .hero a:not(.btn):hover {
            color: #B0E0E6; /* Powder blue - lighter on hover */
            opacity: 0.9;
        }

.page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 58, 107, 0.9), rgba(0, 58, 107, 0.8)), url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-content {
    max-width: 650px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Main Features */
.main-features {
    background-color: var(--white);
    padding: 60px 0;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-card {
    flex: 1;
    background-color: var(--light);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .feature-card i {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

/* Feature Highlights */
.features-highlight {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

    .feature-highlight.reverse {
        direction: rtl;
    }

        .feature-highlight.reverse .feature-highlight-content {
            direction: ltr;
        }

.feature-highlight-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-highlight-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-list {
    margin: 25px 0;
    list-style: none;
}

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .feature-list i {
        color: var(--success);
    }

/* Travel Tracking Section */
.travel-tracking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tracking-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tracking-method h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.tracking-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Risk Management Section */
.risk-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.risk-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.risk-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 58, 107, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

    .risk-card-icon i {
        font-size: 1.5rem;
        color: var(--primary);
    }

.risk-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Client Success Section */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

    .testimonial-content::before {
        content: '\201C';
        position: absolute;
        top: -20px;
        left: -10px;
        font-size: 3rem;
        color: rgba(0, 58, 107, 0.2);
        font-family: serif;
    }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

    .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 58, 107, 0.9), rgba(0, 58, 107, 0.8)), url('/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

    .cta a:not(.btn) {
        color: #87CEEB; /* Light sky blue */
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
    }

        .cta a:not(.btn):hover {
            color: #B0E0E6; /* Powder blue */
            opacity: 0.9;
        }

    /* Fix button text colors in blue sections */
    .page-hero .btn-white,
    .hero .btn-white,
    .cta .btn-white {
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--white);
        font-weight: 600;
    }

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

    .contact-method i {
        font-size: 1.5rem;
        color: var(--primary);
    }

.contact-form {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

/* About Page Styles */
.about-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}

    .about-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .about-section.reverse {
        direction: rtl;
    }

        .about-section.reverse .about-text {
            direction: ltr;
        }

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

    .about-text p:last-child {
        margin-bottom: 0;
    }

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.mission-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

    .mission-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .mission-card i {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .mission-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--primary);
    }

.sustainability-list {
    list-style: none;
    margin: 20px 0;
}

    .sustainability-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 12px;
    }

    .sustainability-list i {
        color: var(--success);
        font-size: 1.2rem;
    }

/* Privacy Policy Styles */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    text-align: right;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text);
}

.privacy-section {
    margin-bottom: 40px;
}

    .privacy-section h2 {
        font-size: 1.75rem;
        color: var(--primary);
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--light-gray);
    }

    .privacy-section p {
        margin-bottom: 15px;
        line-height: 1.7;
    }

        .privacy-section p:last-child {
            margin-bottom: 0;
        }

    .privacy-section a {
        color: var(--primary);
        text-decoration: underline;
        transition: var(--transition);
    }

        .privacy-section a:hover {
            color: var(--primary-dark);
        }

.privacy-list {
    list-style: disc;
    margin: 15px 0 15px 20px;
}

    .privacy-list li {
        margin-bottom: 8px;
        line-height: 1.6;
    }

address {
    font-style: normal;
    margin: 15px 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-col h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--primary);
    }

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

    .social-link:hover {
        background-color: var(--primary);
        transform: translateY(-3px);
    }

.footer-links {
    list-style: none;
    margin-left: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: var(--light);
        opacity: 0.8;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--white);
            opacity: 1;
            padding-left: 5px;
        }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .footer-bottom-links a {
        color: var(--light);
    }

        .footer-bottom-links a:hover {
            color: var(--white);
        }

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1, .page-hero-content h1 {
        font-size: 2.5rem;
    }

    h2, .section-title {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero-image {
        width: 40%;
    }

    .travel-tracking-grid,
    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

        .about-section.reverse,
        .feature-highlight.reverse {
            direction: ltr;
        }

    .feature-highlight {
        grid-template-columns: 1fr;
    }

    .features-grid {
        flex-direction: column;
    }

    .about-section {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: var(--white);
        width: 80%;
        height: calc(100vh - 70px);
        padding: 20px;
        box-shadow: var(--shadow);
        transition: 0.3s;
        flex-direction: column;
    }

        .nav-menu.active {
            left: 0;
        }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

        .nav-list li {
            margin-bottom: 5px;
        }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .hero {
        padding: 8rem 0 4rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        display: none;
    }

    h1, .page-hero-content h1 {
        font-size: 2rem;
    }

    h2, .section-title, .hero h2 {
        font-size: 1.8rem;
    }

    .about-text h2, .privacy-section h2 {
        font-size: 1.6rem;
    }

    .feature-card h3, .mission-card h3 {
        font-size: 1.4rem;
    }

    .about-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

        .footer-bottom-links a {
            margin-bottom: 10px;
        }

    .cta-buttons, .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

        .cta-buttons .btn, .hero-buttons .btn {
            width: 100%;
            margin-bottom: 10px;
        }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 100px 0 40px;
    }

    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    .page-hero-content p {
        font-size: 1rem;
    }

    .contact-form, .card, .feature-card {
        padding: 20px;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}


.landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 2.5rem 0;
}

.landing-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

    .landing-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px) scale(1.02);
    }

    .landing-card img {
        max-width: 80px;
        margin-bottom: 1.2rem;
        border-radius: 8px;
    }

    .landing-card h3 {
        margin-top: 0;
        margin-bottom: 0.7rem;
        font-size: 1.25rem;
        color: var(--primary);
    }

    .landing-card p {
        margin-bottom: 1.3rem;
        color: var(--text);
        opacity: 0.9;
        font-size: 1.05rem;
    }

    .landing-card .btn {
        margin-top: auto;
    }

.about-section.single {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}

    .about-section.single .about-text {
        width: 100%;
    }



/* Multi-level Dropdown Styles - Add to site.css */

/* Base dropdown positioning */
.dropdown-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 220px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    z-index: 20;
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Submenu title styling */
.submenu-title {
    font-weight: 600;
    color: var(--primary) !important;
    position: relative;
    padding-right: 30px !important;
}

    .submenu-title::after {
        content: '▶';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.8rem;
        color: var(--primary);
    }

/* Ensure submenu items are properly spaced */
.submenu li {
    padding: 0;
    margin-bottom: 0;
}

.submenu .nav-link {
    display: block;
    padding: 8px 20px;
    font-weight: 400;
    color: var(--text);
}

    .submenu .nav-link:hover {
        background-color: var(--light);
        color: var(--primary);
    }

/* Adjust main dropdown menu width */
.dropdown-menu {
    width: 280px;
    padding: 15px 0;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .submenu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        background-color: var(--light);
        margin-top: 5px;
        border-radius: 4px;
    }

    .dropdown-submenu.active .submenu {
        display: block;
    }

    .submenu-title::after {
        content: '▼';
        transition: transform 0.3s ease;
    }

    .dropdown-submenu.active .submenu-title::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .submenu .nav-link {
        padding: 8px 30px;
        font-size: 0.9rem;
    }
}

/* Note: For infinite scroll animation to work properly, 
   duplicate the logo set in the HTML */

/* Testimonials Single Row Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.testimonials-carousel-track {
    display: flex;
    gap: 30px;
    overflow: hidden;
    scroll-behavior: smooth;
    transition: transform 0.3s ease;
    flex: 1;
}

    .testimonials-carousel-track .testimonial-card {
        flex: 0 0 auto;
        width: 350px;
        max-width: 350px;
    }

/* Navigation buttons on sides */
.testimonials-btn {
    background: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--primary);
    flex-shrink: 0;
    z-index: 10;
}

    .testimonials-btn:hover {
        background: var(--primary);
        color: var(--white);
        transform: scale(1.1);
    }

    .testimonials-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

        .testimonials-btn:disabled:hover {
            background: var(--white);
            color: var(--primary);
        }

    .testimonials-btn i {
        font-size: 1.2rem;
    }

/* Responsive adjustments */
@media (max-width: 992px) {
    .testimonials-carousel-track .testimonial-card {
        width: 320px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        gap: 1rem;
    }

    .testimonials-btn {
        width: 40px;
        height: 40px;
    }

        .testimonials-btn i {
            font-size: 1rem;
        }

    .testimonials-carousel-track .testimonial-card {
        width: 280px;
        max-width: 280px;
    }

    .testimonials-carousel-track {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonials-carousel-track {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 1rem;
    }

    .testimonials-btn {
        display: none; /* Hide arrows on very small screens */
    }
}

/* Square Customer Logos Section - ADD THIS TO YOUR EXISTING CSS */
/* Customer Logos Section - 2 Row Grid Layout */
/* Customer Logos Section - 2 Row Grid Layout (Subtle Version) */
.customer-logos-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.customer-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

    .customer-logos-row:last-child {
        margin-bottom: 0;
    }

.customer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    padding: 1rem;
    background-color: transparent;
    border-radius: 8px;
    transition: var(--transition);
}

    .customer-logo img {
        max-width: 80px;
        max-height: 80px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%) opacity(0.6);
        transition: var(--transition);
    }

    .customer-logo:hover {
        background-color: rgba(0, 58, 107, 0.04);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 58, 107, 0.1);
    }

        .customer-logo:hover img {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

/* Responsive Design for Customer Logos */
@media (max-width: 1200px) {
    .customer-logos-row {
        gap: 1.5rem;
    }

    .customer-logo {
        width: 110px;
        height: 110px;
        padding: 0.8rem;
    }

        .customer-logo img {
            max-width: 72px;
            max-height: 72px;
        }
}

@media (max-width: 992px) {
    .customer-logos-row {
        gap: 1.2rem;
    }

    .customer-logo {
        width: 100px;
        height: 100px;
        padding: 0.6rem;
    }

        .customer-logo img {
            max-width: 68px;
            max-height: 68px;
        }
}

@media (max-width: 768px) {
    .customer-logos-row {
        gap: 1rem;
        justify-content: space-around;
    }

    .customer-logo {
        width: 90px;
        height: 90px;
        padding: 0.5rem;
    }

        .customer-logo img {
            max-width: 60px;
            max-height: 60px;
        }
}

@media (max-width: 576px) {
    .customer-logos-row {
        gap: 0.8rem;
        justify-content: center;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .customer-logo {
        width: 80px;
        height: 80px;
        padding: 0.4rem;
    }

        .customer-logo img {
            max-width: 56px;
            max-height: 56px;
        }
}

.screenshot-section {
    max-width: 980px; /* slightly wider than the image for spacing */
    margin: 0 auto;
    padding: 40px 0;
}

.screenshot-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 906px;
    width: 100%;
    padding: 1rem;
}

    .screenshot-image-wrapper img {
        width: 100%;
        max-width: 906px;
        height: auto;
        border-radius: 8px;
        display: block;
    }

.screenshot-caption {
    margin-top: 1.25rem;
    color: var(--text);
    font-size: 1.05rem;
    opacity: 0.85;
}

@media (max-width: 992px) {
    .screenshot-section {
        padding: 24px 0;
    }

    .screenshot-image-wrapper {
        max-width: 100%;
        padding: 0.5rem;
    }
}

@media (max-width: 576px) {
    .screenshot-image-wrapper {
        padding: 0.25rem;
    }

    .screenshot-caption {
        font-size: 0.98rem;
    }
}


.cta .btn-white:hover {
    background-color: rgba(255,255,255,0.2);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Ensure accent buttons in blue sections are visible */
.page-hero .btn-accent,
.hero .btn-accent,
.cta .btn-accent {
    background-color: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--white);
    font-weight: 600;
}

    .page-hero .btn-accent:hover,
    .hero .btn-accent:hover,
    .cta .btn-accent:hover {
        background-color: var(--primary);
        color: var(--white);
        border-color: var(--primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }