* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #2144a5 0%, #2563EB 100%);
    min-height: 100vh;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero .description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px auto 0;
    max-width: 800px;
}

.stat {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    background: white;
    position: relative;
    z-index: 10;
}

.content-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Lead Magnet Section */
.lead-magnet {
    background: linear-gradient(135deg, #f8fbff, #e8f4fd);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lead-magnet::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    z-index: 1;
    overflow-y: hidden;
}

.lead-magnet-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.checklist-preview {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.checklist-header {
    background: #2563EB;
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.checklist-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.checklist-items {
    list-style: none;
}

.checklist-items li {
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    align-items: center;
    font-weight: 500;
}


.form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.form-benefits li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.form-benefits li::before {
    content: "";
    display: inline-block;
    width: 1.2em;
    /* Adjust to your SVG's aspect ratio */
    height: 1.2em;
    margin-right: 15px;
    vertical-align: middle;
    background-image: url('./assets/images/target-points.svg');
    background-size: contain;
    background-repeat: no-repeat;
}


.signup-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5aa0;
}

.submit-btn {
    width: 100%;
    background: #2563EB;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}

.privacy-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
}

/* Benefits Section */
.benefits {
    background: #f8f9fa;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Trust Indicators */
.trust-section {
    padding: 60px 0;
    background: white;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 20px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563EB;
    display: block;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 0.95rem;
    color: #7f8c8d;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #95a5a6;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    display: none;
}

.success-message h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.download-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: white;
    color: #27ae60;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .header-content {
        gap: 15px;
    }


}

@media (max-width: 664px) {
    .header-content .logo img {
        width: 120px;
        /* Adjust the size as needed */
        height: auto;
    }
}

@media (max-width: 464px) {
    .header-cta {
        padding: 10px 18px;
        border-radius: 22px;

    }
}

@media (max-width: 345px) {

    /* Ensure body and html do not allow horizontal scroll */
    html,
    body {
        overflow-x: hidden;
    }

    /* Cap the container width to viewport */
    .container {
        padding-left: 10px;
        /* reduce horizontal padding */
        padding-right: 10px;
    }

    /* Prevent header-content or other flex containers from overflowing */
    .header-content,
    .lead-magnet-content,
    .benefits-grid,
    .trust-indicators,
    .footer-content {
        overflow-x: hidden;
        flex-wrap: wrap;
        /* allow wrapping in flex layouts */
    }

    /* Make sure images and logos do not overflow */
    .header-content .logo img {
        max-width: 100%;
        height: auto;
    }

    * {
        box-sizing: border-box;
    }

    .floating-shapes {
        display: none;
    }
}

/* From Aagati website */

.footer-location-grid {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    padding-top: 40px;
}

@media(max-width:435px) {
    .footer-location-grid {
        gap: 4px;
    }
}

.highlighted {
    margin-right: 20px;
}

nav ul li a {
    background: 0 0;
    color: #475569;
    font-size: 18px;
}


.highlighted a {
    padding-inline: 10px !important;
    padding-block: 5px !important;
    margin-top: 5px;
    background: #fff;
    color: #475569;
    border-radius: 17px;
    border: 1px solid #2563EB;
}

.contact-us a:hover,
.contact-us a:visited:hover {
    background: #2563EB;
    color: #fff;
    border-radius: 50px;
    width: fit-content;
}

.contact-us {
    background: #2563EB;
    color: #fff;
    border-radius: 50px;
    width: fit-content;
}

.contact-us a {
    color: #fff;
}

@media(max-width:1099px) {
    .highlighted {
        margin-bottom: 0px;
        margin-left: 15px;
    }

    .navbar-dropdown {
        box-shadow: none !important;
    }

    .contact-us {
        background: none;
        color: #475569;
        border-radius: 50px;
        width: fit-content;
        margin-left: 0px;
        margin-bottom: 10px;
    }

    .contact-us a {
        color: #475569;
    }
}

.nav-mobile,
.navbar-dropdown {
    position: absolute;
    display: none
}

.nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

nav ul li {
    float: left
}

nav ul li a,
nav ul li a:visited {
    display: flex;
    white-space: nowrap;
    padding: 10px 20px;
    text-decoration: none
}

@media(min-width:1100px) and (max-width:1300px) {

    nav ul li a,
    nav ul li a:visited {
        padding: 10px
    }
}

nav ul li a {
    background: 0 0;
    color: #fff;
    font-size: 18px
}

nav ul li a:hover,
nav ul li a:visited:hover {
    background: #fff;
    color: #1758b8
}


nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
    content: ' \025BE'
}

nav ul li ul li {
    min-width: 190px
}

nav ul li ul li a {
    padding: 15px;
    line-height: 20px
}

.nav-mobile {
    top: 0;
    right: 0;
    background: 0 0;
    height: 55px;
    width: 70px
}

@media only screen and (max-width:1099px) {
    .nav-mobile {
        display: block
    }

    nav {
        width: 100%;
        padding: 55px 0 15px
    }

    nav ul {
        display: none
    }

    nav ul li {
        float: none
    }

    nav ul li a {
        padding: 15px;
        line-height: 20px;
        background: #1758b8
    }

    nav ul li ul li a {
        padding-left: 30px
    }

    .navbar-dropdown {
        position: static
    }
}

@media screen and (min-width:1100px) {
    .nav-list {
        display: block !important
    }
}

@media(max-width:1099px) {
    .nav-list {
        z-index: 2;
        background-color: #EEF2FF;
        white-space: nowrap;
    }

    .navbar-dropdown {
        box-shadow: none !important;
    }
}

#navbar-toggle {
    position: absolute;
    left: 18px;
    top: 15px;
    cursor: pointer;
    padding: 10px 35px 16px 0
}

#navbar-toggle span,
#navbar-toggle span:after,
#navbar-toggle span:before {
    cursor: pointer;
    border-radius: 1px;
    height: 3px;
    width: 30px;
    background: #fff;
    position: absolute;
    display: block;
    content: '';
    transition: .3s ease-in-out
}

#navbar-toggle.active span,
.landing-button:hover,
.navigation.transparent {
    background-color: transparent;
}

#navbar-toggle span:before {
    top: -10px
}

#navbar-toggle span:after {
    bottom: -10px
}

#navbar-toggle.active span:after,
#navbar-toggle.active span:before {
    top: 0
}

#navbar-toggle.active span:before {
    transform: rotate(45deg)
}

#navbar-toggle.active span:after {
    transform: rotate(-45deg)
}

@media(min-width:1100px) {
    .brand {
        align-items: center
    }

    .nav-container {
        margin-top: -10px
    }
}

.brand,
nav ul li {
    position: relative
}

.brand {
    display: flex;
    flex-direction: row;
    justify-content: center
}

.center-align-nav {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    justify-content: end
}

:root {
    --container-inline-padding: 80px;
    --container-padding-block: 60px
}

@media (max-width:2700px) {
    :root {
        --container-padding-inline: 150px;
        --container-padding-block: 50px
    }
}

@media (max-width:1470px) {
    :root {
        --container-padding-inline: 65px;
        --container-padding-block: 40px
    }
}

@media (max-width:1175px) {
    :root {
        --container-padding-inline: 45px;
        --container-padding-block: 30px
    }
}

@media (max-width:768px) {
    :root {
        --container-padding-inline: 60px;
        --container-padding-block: 30px
    }
}

@media (max-width:600px) {
    :root {
        --container-padding-inline: 20px;
        --container-padding-block: 25px
    }
}

.container,
.container-topPadding {
    width: 100%;
    margin-inline: auto;
    padding-inline: var(--container-padding-inline)
}

.container-topPadding {
    padding-block: var(--container-padding-block)
}

#navbar-toggle span,
#navbar-toggle span:after,
#navbar-toggle span:before {
    background: #00080E;
}

.navbar-dropdown li a {
    background: #E2E8F0;
    width: 290px;
}

.navbar-dropdown {
    z-index: 2;
    background-color: #1758b8;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, .25);
    white-space: nowrap
}

#checklist-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical centering */
    align-items: center;
    /* horizontal centering */
    height: 70vh;
    /* full viewport height */
    text-align: center;
    /* optional, for text inside */
}

.select-field,
input[type="text"],
input[type="email"] {
    height: 53px !important;
}