@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0066cc;
    --secondary-color: #134e95;
    --dark-blue: #002147;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Arial', sans-serif;
}

h2{
    font-family: "Jost", Sans-serif;
    font-size: 42px;
    color: #134e95;
    font-weight: 600;
    line-height: 1.4em; 
}
h3{
     
    color: #134e95;
    font-family: "Jost", Sans-serif;
    font-size: 30px;
    font-weight: 500;
}

.policy-page h3{
 font-weight: 600;
 font-size: 26px;
}
h4{
    font-family: "Jost", Sans-serif;
    font-size: 20px;
    color: #134e95;
    font-weight: 500;
    line-height: 1.2em;
}
h5{
    color: #134e95;
    font-family: "Jost", Sans-serif;
    font-size: 26px;
    font-weight: 500;
}
a{
    text-decoration: none;
}
p{
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.7em;
}
/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--dark-blue) !important;
    font-weight: 500;
    margin: 0 10px;
    font-family: "Poppins", Sans-serif;

}

.btn-get-quote {
    background-color: var(--secondary-color);
    color: white !important;
    border-radius: 25px;
    padding: 8px 20px;
    border: none;
}

.btn-get-quote:hover {
    background-color: #1864c0; 
    
}

/* Hero Section */
.hero-section {
    padding: 7rem 0px 42px;
    background-color: white;
}

.hero-section h1 {
    color: #134e95;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.hero-section img{
    max-width: 300px;
}

.insurance-img img{
    max-width: 500px;
}
.zip-search {
    max-width: 450px;
    display: grid;
    gap: 20px;
    align-items: center;
}

.zip-search select {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    appearance: none;
    background-color: white;
    color: #05264e;
}

.zip-search input {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
}

.zip-search button {
    border-radius: 20px;
    background-color: #134e95;
    border: none;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    min-width: 150px;
}
.zip-search button:hover{
    background-color: #1864c0; 
}
/* #1864c0; */
/* Partners Section */
 

.partners-section {
    padding-bottom: 80px;
}

.partners-section h2 {
    font-weight: bold;
    color: #134e95;
}

.partners-section p {
    color: #475569;
    font-size: 18px;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partners-logos img {
    max-height: 50px;
    object-fit: contain;
}


/* insurance stress */
.insurance-section {
    padding: 50px 0;
    /* text-align: center; */
}

.insurance-section h2 {
    font-weight: bold;
    color: #134e95;
}

.insurance-section p {
    color: #475569;
    font-size: 18px; 
}

.steps {
    text-align: left;
    /* margin-bottom: 30px; */
}

.step {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #134e95;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text h5 {
    font-weight: bold;
    color: #134e95;
    margin-bottom: 5px;
}

.cta-button {
    background-color: #f87171;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #1864c0;
}

.circle-image {
    position: relative;
    max-width: 100%;
}

.circle-image img {
    max-width: 340px; 
}
.circle-imagee img {
    max-width: 440px; 
}


/* Insurance Types Section */
.insurance-types {
    padding: 4rem 0;
    background-color:#134e95;
    color: white;
}

.insurance-type {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s;
}

.insurance-type:hover {
    transform: translateY(-10px);
}

.insurance-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: white;
}

.process-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
}

 

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 1rem 0;
}

.stars {
    color: #ffd700;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

/* CTA Section */
 
.cta-button {
    background-color: #134e95;
    color: white;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: bold;
    border: none;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .container {
        overflow-x: hidden;
    }
}

.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.form-container {
    max-width: 630px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.form-container h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}
.btn-custom {
    background-color: #007bff;
    border: none;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}
.btn-custom:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.social-icons a {
    color: white;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.footer-links h5 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-p p{
    color: #ffffff;
    font-family: Jost, sans-serif;
    font-size: 14px;
}
.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-family: "Poppins", Sans-serif;
    color: #ffffff80;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}


.footer-bottom {
    background-color: #002a5c;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  .footer-bottom ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-bottom ul li {
    margin: 0 20px;
  }
  
  .footer-bottom ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-bottom ul li a:hover {
    color: #ccc;
  }

.form-label {
   font-family: "Poppins", Sans-serif;
   
}
.form-check-label{
      font-family: "Poppins", Sans-serif;
      font-size: 14px;
}
  
@media (max-width: 769px) {
    .hero-section h1 { 
        font-size: 2.3rem; 
    }
    .hero-section img {
        max-width: 170px;
    }
    .partners-section h2 { 
        font-size: 30px; 
    }
    .insurance-section h2 {
        font-size: 30px; 
    }
    .step-text h5 {
        font-size: 20px; 
    }
    h3 {
      
        font-size: 24px; 
    }
    h2 { 
        font-size: 30px;
    }
    .insurance-img img{
        max-width: 240px;
    }
    .circle-imagee img {
        max-width: 100%;
    }
    .insurance-icons img {
        max-width: 100px;
    }
    .footer-bottom ul li {
        margin: 3px 20px;
    }
}
