body {
   
  font-family: 'Inter', sans-serif;
    }


.top-bar {
    background:white;
    color: black;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: top 0.3s;
    border-bottom: 2px solid rgb(219, 218, 218); /* Added border-bottom */

}
.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
/* Contact Icons (Phone & Email) */
.contact-icons {
    display: flex;
}

.contact-icons a {
    font-size: 14px;
    color:black;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact-icons a i {
    margin-right: 5px;
    font-size: 14px;
    color: rgb(4, 4, 77);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.contact-icons a:hover {
    color: gray;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    font-size: 14px;
    color:rgb(4, 4, 77);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.social-icons a:hover {
    color: gray;
}
@media (max-width: 768px) {
    .top-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .contact-icons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px; /* Adds spacing between phone and email */
    }

    .social-icons {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .contact-icons a,
    .social-icons a {
        font-size: 12px; /* Adjusts font size for better readability */
    }
    .contact-icons a:nth-child(2) { /* Hide the email on small screens */
        display: none;
    }
}
@media (max-width: 576px) {
    .top-bar {
        flex-direction: row; /* Keeps left and right sections separate */
        align-items: center;
        justify-content: space-between;
    }

    .contact-icons {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-icons {
        justify-content: flex-end;
    }
}
/* Hide Free Quote button and Search icon on small screens */
@media (max-width: 768px) {
    .search-icon,
    .for-more-btn {
        display: none !important;
    }
}



/*navbar*/
   .navbar {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position:sticky;
    padding-top: 70px;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s;
    padding:7px ;
    font-size: 15px;
}

    .navbar-brand img {
      height: 40px;
    }

    .nav-link {
      color: #000;
    }

    .nav-link.active {
      color: #021b6f;
      border-bottom: 2px solid #021b6f;
    }
    .navbar .btn-primary{
        background-color: #021b6f;
    }
    .hero {
      text-align: center;
      padding: 2rem 2rem 4rem;
      z-index: 1;
      position: relative;
      color: #000;
      justify-content: center;
      align-items: center;
    }
 /*whatsapp floating */
.whatsapp-button {
    position: fixed;
    left: 20px; /* Positioned on the left */
    bottom: 20px; /* Stays at the bottom */
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 15px;
    font-size: 24px;
    text-decoration: none;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    z-index: 9999; /* Ensures it's above other elements */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.whatsapp-button:hover {
    background-color: #1ebe57;
    text-decoration: none;
}
   
.main-section{
    scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;            /* Matches the clean readable size */
  line-height: 1.8;             /* Gives comfortable spacing */
  color: #1e2532;               /* Same deep gray/charcoal text color */
  background-color: #fff;       /* Optional: white background for clarity */
  margin: 0;
  padding: 0;
}

.p {
  margin-bottom: 1.2rem;
  color: #22222292;
  text-align: justify;
}
h1{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #1e2532;
}
h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #1e2532;
}
ul{
  color:#595959 ;
}
a {
  color: #1e2532;
  text-decoration: underline;
  transition: color 0.2s ease;
  text-decoration: none;
}

a:hover {
  color: #0d6efd; /* Bootstrap primary blue */
}

.sidebar{
  background-color: rgba(241, 241, 241, 0.466);
}
   .blog-banner {
      padding: 10px 20px;
      color: rgb(0, 0, 0);
    }

    .breadcrumb a {
      color: rgb(0, 0, 0);
      text-decoration: underline;
      font-size: 25px;
    }
    .breadcrumb-item{
        font-size: 18px;
    }

    .content-sections {
      display: flex;
      align-items: center;
      padding: 50px 20px;
      gap: 40px;
    }

    .content-sections img {
      max-width: 450px; /* Increased size */
      height: auto;
      border-radius: 5px;
    }

    .title-sections h1 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #1e2532;
    }

    .author-box {
      background-color: #b5ec92;
      display: inline-block;
      padding: 10px 20px;
      margin-top: 20px;
      font-weight: 500;
    }

    .author-box a {
      color: #1e2532;
      text-decoration: underline;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .content-sections {
        flex-direction: column;
        text-align: center;
      }

      .content-sections img {
        max-width: 300px;
      }

      .title-section h1 {
        font-size: 2rem;
      }
    }

    .section-nav .nav-link {
      padding: 8px 12px;
      border-left: 3px solid transparent;
      color: #333;
      transition: all 0.3s ease;
      font-size: 12px;
    }


    .section-nav .nav-link.active {
      font-weight: bold;
      border-color: #0d6efd;
      background-color: #f0f8ff;
      color: #0d6efd !important;
      
    }

    .sticky-sidebar {
      position: sticky;
      top: 40px;
      max-height: calc(120vh - 120px);
      overflow-y: auto;
    }
.sticky-right {
  position: sticky;
  top: 70px; /* Adjust for how far from top it should stick */
  z-index: 150;
}
.breadcrumb-nav {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: #8f8f8f;
  font-weight: 500;
  text-decoration: none;
  
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}


@media (max-width: 767px) {
  .sticky-right {
    position: static;
    margin-top: 20px;
  }
}


    .content-section {
      margin-bottom: 20px;
      color: #828282;
    }

.content-section p {
      text-align: justify;
      color: #595959;

    }
    .content-section a {
      color: #3b61c7;

    }
    .content-section img {
      max-width: 100%;
      border-radius: 10px;
      margin-top: 15px;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 767px) {
      .sticky-sidebar {
        position: static;
        max-height: none;
        margin-bottom: 20px;
      }
    }
    .sideimg{
      height:160px;
      width: 250px;
    }
    .right-side{
      background-color: #f3f6f8b9;
    }
.blog-header {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.blog-header p{
  font-size: 16px;
}
.blog-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.breadcrumb a {
  font-size: 14px;
}
.read-more-btn {
  position: relative;
  padding: 5px 10px;
  color: #fff;
  background-color: #020844;
  border:1px;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
  font-size: 14px;
  align-items:left;
}

.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-color: #000000;
  color: #060365;
  border:1px;
  background-color: #e6eaf6; 
  transition: left 0.4s ease;
  z-index: -1;
}

.read-more-btn:hover::before {
  left: 0;
}

.read-more-btn:hover {
  color: #000000;
}
.animate-box h1{
  text-align:20px ;
}
.ul{
    color: #3a3a3a;
}
   
   











.blog-container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
  }

  header {
    text-align: center;
    margin-bottom: 2rem;
  }

  header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #111;
  }

  header p {
    color: #666;
    font-size: 1.1rem;
  }

  .featured-post {
    display: flex;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-bottom: 3rem;
    align-items: left;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
  }

  .featured-post.show {
    opacity: 1;
    transform: translateY(0);
  }

  .featured-post img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    transition: transform 0.5s ease;
  }

  .featured-post:hover img {
    transform: scale(1.05);
  }

  .featured-content {
    flex: 1;
    text-align:left;
  }
  
  

  .featured-content .tag {
    color: #a7a8a8;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
  }

  .featured-content h2 {
    font-size: 2rem;
    margin-top: 0.5rem;
  }

  .featured-content p {
    margin: 1rem 0;
    color: #555;
    text-align: justify;
  }

  .featured-content .btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #03284f;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }

  .featured-content .btn:hover {
    background-color: #014894;
  }

  .latest-heading {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .latest-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
  }

  .card.show {
    opacity: 1;
    transform: translateY(0);
  }

  .card:hover {
    background-color: #f0f8ff;
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .card img {
    width: 100%;
    height: 200px;
    display: block;
    transition: transform 0.5s ease;
  }

  .card:hover img {
    transform: scale(1.1);
  }

  .card-content {
    padding: 1rem;
  }

  .card-content .category {
    font-size: 0.85rem;
    color: #6e6e6e;
    text-transform: uppercase;
  }

  .card-content h3 {
    font-size: 1.3rem;
    margin: 0.5rem 0;
    color: #111;
  }

  .card-content p {
    font-size: 0.95rem;
    color: #555;
  }

  .card-content a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #626262;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .card-content a:hover {
    color: #bbbbbb;
  }

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .featured-post {
      flex-direction: column;
      text-align: center;
    }

    .featured-content {
      width: 100%;
    }

    .featured-post img {
      max-width: 100%;
    }
  }
   

  .right-section-card {
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

   /*footer*/
    .light-footer {
  background-color: #f8f9fa;
  color: #212529;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px;
  border-top: 1px solid #dee2e6;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #111;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0128c5;
}

.footer-col.company .logo {
  max-width: 120px;
  margin-bottom: 12px;
}

.footer-col.company p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #333;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #021fae;
}

.contact-info i {
  margin-right: 8px;
  color: #0216ae;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 10px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  color: #060365;
}




    .faq-container {
      max-width: 800px;
      margin: auto;
    }

    .faq-container h2 {
      text-align: left;
      font-size: 24px;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .faq-item {
      background: #091e51;
      border-radius: 5px;
      margin-bottom: 8px;
      overflow: hidden;
      transition: all 0.3s ease;
      color: white;
    }

    .faq-item input {
      display: none;
    }

    .faq-item label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 15px;
      cursor: pointer;
      font-weight: 500;
      font-size: 14px;
      transition: background 0.3s;
    }

    .faq-item:hover {
      background: #183a75;
    }

    .faq-item .answer {
      max-height: 0;
      overflow: hidden;
      background: #fff;
      padding: 0 10px;
      font-size: 15px;
      line-height: 1.6;
      transition: all 0.3s ease;
      color: black;
    }

    .faq-item input:checked ~ .answer {
      max-height: 200px;
      padding: 12px 20px 20px;
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .faq-item input:checked + label .arrow {
      transform: rotate(180deg);
    }

    svg {
      width: 20px;
      height: 20px;
      fill: rgb(255, 255, 255);
    }