* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fafafa;
    color: #1a1a1a;
    line-height: 1.8;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -60px;
    left: 20px;
    background: #9b59b6;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    z-index: 2000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 20px;
}

/* Header */
.header {
    background: #0f1419;
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px; /* Default height, adjust as needed */
    max-width: 200px; /* Prevent logo from getting too wide */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.contact-info p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.contact-info i {
    color: #9b59b6;
    margin-right: 12px;
}

/* Hero */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a2f5f 100%);
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.hero .subheading {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 50px;
}

.hero-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.form-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-form input {
    flex: 1;
    padding: 20px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.hero .highlight {
    font-size: 24px;
    margin-top: 35px;
    color: #9b59b6;
    font-weight: 600;
}

/* Button */
.btn {
    background: #9b59b6;
    color: #fff;
    padding: 20px 45px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn i {
    margin-left: 15px;
}

.btn:hover {
    background: #7d3c98;
    transform: scale(1.05);
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
}

.popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: auto;
}

.popup-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.popup-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.popup-content input,
.popup-content textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.popup-content textarea {
    height: 100px;
    resize: none;
}

.popup-content .btn {
    width: 100%;
    justify-content: center;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #9b59b6;
}

/* Sections */
.section {
    padding: 120px 0;
    background: #fff;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 5px;
    background: #9b59b6;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Process Boxes */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.process-box {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-box:hover {
    transform: translateY(-10px);
}

.process-box i {
    font-size: 50px;
    color: #9b59b6;
    margin-bottom: 25px;
}

.process-box h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-box p {
    font-size: 18px;
    color: #555;
}

/* Comparison Boxes */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-box {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-box h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.comparison-box ul {
    list-style: none;
    font-size: 18px;
}

.comparison-box li {
    margin: 15px 0;
    display: flex;
    align-items: center;
}

.comparison-box i {
    font-size: 24px;
    color: #9b59b6;
    margin-right: 15px;
}

/* Reasons Boxes */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.reason-box {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.reason-box:hover {
    transform: translateY(-10px);
}

.reason-box i {
    font-size: 50px;
    color: #9b59b6;
    margin-bottom: 25px;
}

.reason-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.reason-box p {
    font-size: 16px;
    color: #555;
}

/* Coverage */
.coverage {
    background: #f4f4f9;
}

.coverage-text {
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

/* Footer */
.footer {
    background: #0f1419;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-contact h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-contact input,
.footer-contact textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.footer-contact textarea {
    height: 100px;
    resize: none;
}

.footer-info p {
    font-size: 18px;
    margin: 10px 0;
}

.footer-info i {
    margin-right: 12px;
    color: #9b59b6;
}

.copyright {
    font-size: 18px;
}

.copyright a {
    color: #9b59b6;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: #7d3c98;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .comparison-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero .subheading {
        font-size: 22px;
    }

    .form-group {
        flex-direction: column;
        gap: 20px;
    }

    .hero-form input, .btn {
        width: 100%;
    }

    .section-title {
        font-size: 36px;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        height: 40px; /* Smaller logo on mobile */
        max-width: 150px;
    }
}