:root {
    --navy: #002B5C;
    --blue: #0099CC;
    --light: #f5f5f5;
    --dark: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
}

nav {
    background: rgba(0, 43, 92, 0.95); /* Semi-transparent navy background */
    padding: 0.75rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px); /* Adds blur effect to the background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.logo-container {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    background: white; /* White background for logo */
    border-radius: 8px; /* Rounded corners */
    padding: 5px; /* Padding around logo */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintains aspect ratio */
}

.company-name {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle text shadow */
}

.header {
    background: linear-gradient(rgba(0,43,92,0.9), rgba(0,43,92,0.9)), url('../images/header-bg.jpg') center/cover;
    color: white;
    padding: 8rem 2rem 6rem;
    text-align: center;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--light);
}

.benefits {
    padding: 4rem 2rem;
    background: var(--light);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--blue);
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.features {
    padding: 4rem 2rem;
    background: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    padding: 1.5rem;
    border-left: 4px solid var(--blue);
    background: var(--light);
    margin: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature i {
    color: var(--blue);
    margin-right: 0.5rem;
}

.stats {
    padding: 4rem 2rem;
    background: var(--navy);
    color: white;
}

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

.stat-card {
    padding: 2rem;
}

.stat-card .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.stat-card .text {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.cta {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta h2 {
    margin-bottom: 2rem;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--navy);
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
}

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

footer {
    background: var(--navy);
    color: white;
    padding: 3rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-info img {
    background: white;
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.footer-info h3 {
    margin: 0.5rem 0;
    color: var(--blue);
    font-size: 1.5rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact {
    padding: 0 1rem;
}

.footer-contact h3 {
    color: var(--blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--blue);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--blue);
}

.contact-text {
    color: white;
    font-size: 1.1rem;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Add to responsive.css */
@media screen and (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-legal {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .footer-contact {
        padding: 0;
    }
    
    .contact-methods {
        align-items: center;
    }
    
    .contact-item {
        width: 100%;
        max-width: 300px;
        justify-content: flex-start;
    }
    
    .footer-legal {
        grid-column: span 1;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .benefits-grid, .features-grid {
        grid-template-columns: 1fr;
    }

    .logo-container {
        width: 40px;
    }
}
.contact-form {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--blue);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(0, 255, 0, 0.1);
    color: white;
}

.form-status.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    color: white;
}

.pricing {
    padding: 4rem 2rem;
    background: var(--light);
}

.pricing h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 3rem;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
}

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

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light);
}

.pricing-header h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    color: var(--navy);
    font-weight: bold;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.pricing-features {
    padding: 2rem 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #444;
}

.pricing-features i {
    color: var(--blue);
    margin-right: 0.5rem;
}

.pricing-cta {
    text-align: center;
    padding-top: 1rem;
}

.pricing-cta .button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--navy);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
    width: 100%;
}

.pricing-cta .button:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

/* Add to the existing media queries in responsive.css */
@media screen and (max-width: 768px) {
    .price {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
}

/* Add styles for when nav is scrolled */
.nav-scrolled {
    background: var(--navy); /* Solid background when scrolled */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Add hover effect for logo container */
.logo-container:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
    nav {
        padding: 0.5rem 1rem;
    }

    .logo-container {
        width: 40px;
        height: 40px;
    }

    .company-name {
        font-size: 1.25rem;
    }
}