* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    flex-wrap: wrap;
    position: relative;
    max-width: 1440px;
    margin: auto;
    background-color: #fff;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.logo {
    position: relative;
    flex: 1;
}

.logo img {
    width: 447px;
    max-width: 100%;
    height: auto;
    transition: width 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: 30px;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #007BFF;
}

.quote-btn {
    background-color: #2168BA;
    color: white;
    border: none;
    padding: 15px 22px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    transition: background-color 0.2s ease;
     font-family: 'Jost', sans-serif;
}

.quote-btn:hover {
    background-color: #0056b3;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    color: #000;
}

#menu-toggle {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo img {
        width: 300px;
    }

    .nav-links {
        gap: 15px;
        margin-right: 20px;
    }

    .nav-links a {
        font-size: 18px;
    }

    .quote-btn {
        padding: 12px 18px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .logo img {
        width: 200px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: relative;
        top: 100%;
        left: 0;
        padding: 20px;
        margin: 0;
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    #menu-toggle:checked+.hamburger+.nav-links {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        font-size: 16px;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .quote-btn.desktop {
        display: none;
    }

    .quote-btn.mobile {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 16px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo img {
        width: 150px;
    }

    .hamburger {
        font-size: 20px;
    }

    .nav-links {
        padding: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .quote-btn.mobile {
        font-size: 14px;
        padding: 10px;
    }
}

/* header section */

.hero-section {
    background: #2168BA;
    color: white;
    padding: 40px 0px 20px;
    border-radius: 20px;
    max-width: 1340px;
    margin: auto;
}

.container {
    max-width: 1440px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

.hero-images {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    top: -60px;
    flex-wrap: wrap;
    height: 20px;
    margin-top: 20px;
}

.hero-media {
    display: flex;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    left: 60px;
}

.arrowimages {
    position: relative;
    top: 80px;
    margin-left: 30px;
    width: 110px;
}

.subheading {
    font-size: 22px;
    margin-bottom: 10px;
}

.heading {
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-header {
    display: flex;
    text-align: start;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.quote-form {
    background: white;
    padding: 20px;
    border-radius: 20px;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-control {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-control label {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
}

.form-control select,
.form-control input {
    padding: 10px;
    border-radius: 16px;
    border: 1px solid #ccc;
}

.inputtext {
    padding: 12px 5px;
    border-radius: 14px;
}

.quote-button {
    background-color: #2168BA;
    font-family: 'Jost', sans-serif;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    transition: background 0.3s ease-in-out;
    line-height: 100%;
    height: 59px;
    
}

.quote-button:hover {
    background-color: #153fc0;
}


.custom-select-container {
    width: 200px;
    font-family: sans-serif;
}

.custom-select-wrapper {
    position: relative;
}


select, .custom-select-wrapper input {
    width: 238px;
    padding: 10px 32px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    font-size: 16px;
    height: 48.81px;
}

.select-icon {
    position: absolute;
    right: -20px;
    top: 50%;
    pointer-events: none;
    transform: translateY(-50%);

}

/* Responsive Design */
@media (max-width: 768px) {
    .heading {
        font-size: 2rem;
    }

    .subheading {
        font-size: 1rem;
    }

    .arrowimages {
        display: none;
    }

    .hero-images {
        display: none;
    }

    .hero-media {
        justify-content: center;
        top: 0;
        height: auto;
        left: 0px;
    }

    .form-header {
        font-size: 18px;
    }

    .form-control label {
        font-size: 16px;
    }

    .hero-section {
        margin: 20px;
    }

     .custom-select-container {
        width: 100%;
     }

    select {
         width: 100%;
    }

    .select-icon {
        right: 10px;
    }

    .hero-section {
        max-width: 90%;
    }

    header{
        max-width: 95%;
        margin: auto;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 1.5rem;
    }

    .subheading {
        font-size: 0.9rem;
    }

    .quote-button {
        font-size: 0.9rem;
        padding: 12px;
    }

     .hero-section {
        max-width: 90%;
    }
}