/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ================= TOP HEADER ================= */
.top-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100;

  background: rgba(0, 82, 204, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 25px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  min-height: 40px;
}

/* Left */
.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.top-left a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Center */
.top-center {
  flex: 1;
  text-align: center;
}

.top-center p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0 10px;
}

/* Right */
.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-right a {
  color: #fff;
  font-size: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-right a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    gap: 6px;
    padding: 6px 12px;
    text-align: center;
  }

  .top-left,
  .top-right {
    justify-content: center;
  }

  .top-center p {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .top-center p {
    font-size: 11.5px;
  }
}

:root{
    --primary:#143f9b;      
    --secondary:#1e293b;   
    --accent:#38bdf8;      
    --bg:#f0f6ff;         
    --card:#ffffff;
    --text:#1f2937;
}


*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.9;
}


.page{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

.img {
  display: flex;
  justify-content: center;
  align-items: center;     
 margin-top: 60px;
border-radius: 10px;
 object-fit:cover;
}
.img img{
    border-radius: 10px;
}



.hero{
  
    color:#090909;
    padding:70px 50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 25px 60px rgba(0,0,0,0.25);
    margin-top: 100px;
}
.hero::after{
    margin-top: 20px;
    
}


.hero h1{
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    max-width:900px;
    margin:auto;
}
section{
    margin-top:60px;
}

.section-title{
    font-size:30px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:20px;
    position:relative;
}

.section-title::after{
    content:"";
    width:70px;
    height:4px;
    background:var(--primary);
    display:block;
    margin-top:10px;
    border-radius:4px;
}

.text{
    font-size:16.5px;
    max-width:1000px;
}


.card{
    background:var(--card);
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.10);
    margin-top:25px;
}

ul{
    margin-top:20px;
    padding-left:20px;
}

ul li{
    margin-bottom:12px;
    font-size:16px;
}


.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}


.cta{
    background:linear-gradient(135deg,var(--accent),var(--primary));
    color:#fff;
    padding:50px;
    border-radius:22px;
    box-shadow:0 30px 60px rgba(0,0,0,0.25);
}

.cta h2{
    color:#fff;
}

.cta p{
    color:#fff;
}

.cta a{
    color:#fff;
    font-weight:600;
    text-decoration:none;
}


 .cta .row{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px;
}
    .cta .btn{border-color:rgba(255,255,255,0.25);
        background-color: aliceblue;
        padding: 10px;
        border-radius: 5px;
        color: black;
        
    }
    .cta .btn:hover{
        text-decoration: underline;
    }
    
    .cta .btn:hover{opacity:0.95}
    .blog-share {
  margin-top: 10px;
  padding-left: 12%;
  padding-bottom: 30px;
}

.blog-share p {
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-share a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition:0.3s ease;
}

.blog-share a:hover {
  background-color: #1ebe5b;
}

.material-icons {
  font-size: 20px;
}
.cta .button{
    font-size: 10px;
   
    display: flex;
    justify-content: center;
}
.cta button{
    background-color: #143f9b;
    font-size: 25px;
    border-radius: 5px;
    padding: 10px;
    margin-top: 20px;
}
.cta button:hover{
    background-color: #2a74fd;

}


@media(max-width:768px){
    .hero h1{font-size:30px;}
    .hero{padding:50px 25px;}
    .section-title{font-size:24px;}
}
a{
    text-decoration: none;
}


/* FAQ SECTION */
.faq-section {
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(135deg, #f5f9ff, #eef6ff);
}


.faq-container {
  max-width: 1200px;
  margin: auto;
}


.faq-header h2 {
  font-size: 2rem;
  color: #084FAD;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}


.faq-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg, #084FAD, #00c6a9);
}


.faq-header p {
  max-width: 800px;
  margin: 12px 0px 40px 0px;
  color: black;
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
}

/* FAQ ITEM */
.faq-item {
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #084FAD;
  background: #f0f6ff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e1f0ff;
}

/* ICON */
.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 22px;
  background: #ffffff;
}

.faq-answer p {
  margin: 15px 0;
  color: #444;
  line-height: 1.6;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
  max-height: 500px; /* adjust if needed */
  padding: 15px 22px 22px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* TABLET */
@media (max-width: 992px) {
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-header p {
    font-size: 0.95rem;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .faq-section {
    padding: 70px 16px;
  }

  .faq-header h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}



/* FOOTER */

.footer {
  background: #0c0f1a;
  color: #dcdcdc;
  font-family: 'Poppins', sans-serif;
}

/* ===== STATE QUICK LINKS ===== */
.footer-states {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-states h4 {
  color: #1f4fd8;
  margin-bottom: 20px;
}

.state-links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 30px;
}

.state-links a {
  color: #cccccc;
  font-size: 13px;
  text-decoration: none;
}

.state-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== MAIN GRID ===== */
.footer-grid {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* COMMON */
.footer-col h4 {
  color: #1f4fd8;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #ffffff;
}

/* BRAND */
.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-col h3 {
  color: #1f4fd8;
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #1f4fd8;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  color: #555;
}

.footer-bottom p {
  margin: 0 0 5px 0;
}

.footer-link {
  color: #1a5cff; /* crimson theme */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-link:hover {
  color: #1a5cff;
  text-decoration: underline;
}

.footer-links {
  font-size: 13px;
  color: #555;
}

.footer-links span {
  margin: 0 5px;
}




/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .state-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .state-links {
    grid-template-columns: 1fr;
  }
}
