/* General Font */
body {
    font-family: 'Inter', sans-serif;
}

/* Top Bar */
.top-bar {
    background: white;
    color: black;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgb(219, 218, 218);
}

.top-bar a {
    color: black;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

/* Contact Icons */
.contact-icons {
    display: flex;
}

.contact-icons a i {
    margin-right: 5px;
    color: rgb(4, 4, 77);
}

.contact-icons a:hover {
    color: gray;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: rgb(4, 4, 77);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: gray;
}

/* Top Bar Responsive */
@media (max-width: 768px) {
    .top-bar {
        flex-wrap: wrap;
        padding: 10px 15px;
    }
    .contact-icons {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .contact-icons a:nth-child(2) {
        display: none;
    }
    .social-icons {
        justify-content: flex-end;
    }
}

/* Hide search and quote on small screens */
@media (max-width: 768px) {
    .search-icon,
    .for-more-btn {
        display: none !important;
    }
}

.navbar {
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s;
  padding: 5px 10px; /* Reduced padding */
  font-size: 14px;   /* Slightly smaller font */
}

/* Smaller logo */
.navbar-logo,
.navbar itmg {
  height: 60px; /* Reduced from 70px or 90px */
  max-width: 100%;
  object-fit: contain;
}

/* Responsive adjustments (optional) */
@media (max-width: 992px) {
  .navbar img {
    height: 45px; /* Smaller for tablets */
  }
}

@media (max-width: 768px) {
  .navbar img {
    height: 50px; /* Smaller for mobile */
  }
}


.nav-link {
    color: rgb(32, 31, 31) !important;
    font-weight: 600;
}

.navbar-nav .nav-item .nav-link:hover {
    color: rgb(4, 4, 77);
    border-bottom: 2px solid rgb(4, 4, 77);
}

.nav-item:hover .dropdown-menu {
    display: block;
    border-radius: 0;
    padding: 20px;
}

.dropdown-item {
    color: #adadad;
}

.dropdown-icon {
    font-size: 14px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.navbar-toggler {
    background-color: white;
    border: none;
    padding: 5px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-item.dropdown.show .dropdown-icon {
    transform: rotate(180deg);
}

.nav-link.dropdown-toggle::after {
    display: none !important;
}

.for-more-btn {
    background: rgb(4, 4, 77);
    color: white;
    padding: 5px 10px;
    text-decoration: none;
}

.for-more-btn:hover {
    background-color: #001F5B;
}

/* Responsive Logo */
@media (max-width: 992px) {
    .navbar img {
        height: 50px;
    }
}
@media (max-width: 768px) {
    .navbar img {
        height: 60px;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px;
    font-size: 24px;
    border-radius: 50%;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #1ebe57;
    text-decoration: none;
}

/* Blog Page */
.blog-container {
    margin-top: 30px;
}

.blog-meta {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-align: justify;
}

.title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-img img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}

.content p{
    margin-bottom: 16px;
    text-align: justify;
    color: #656565;
}
.content a{
    text-decoration: none;
    color: #4e77ce;
}
.content li {
    margin-bottom: 16px;
    color: #656565;

}
blockquote {
    font-style: italic;
    background-color: #f9f9f9;
    padding: 14px 20px;
    border-left: 4px solid #ccc;
    margin: 20px 0;
}

h2 {
    font-size: 1.4rem;
    margin: 28px 0 10px;
    color: #111;
    font-weight: 600;
}
h3 {
    font-size: 1.1rem;
    margin: 28px 0 10px;
    color: #111;
    font-weight: 600;
}
/* TOC Styles */
.toc {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.toc h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  border-left: 4px solid #d22;
  padding-left: 10px;
  color: #111;
  transition: all 0.3s ease;
}

.toc h4:hover {
  color: #d22;
  transform: scale(1.05);
}

.toc-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #666;
  position: relative;
  padding-left: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.toc-list li a {
  color: inherit;
  text-decoration: none !important; /* Remove underline always */
  display: inline-block;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.toc-list li a::after {
  content: none; /* Completely disable underline animation */
}

.toc-list li:hover a {
  color: #d22;
  transform: translateX(3px);
  font-weight: 600;
}

.toc-list li.active {
  color: #d22;
  font-weight: 600;
}

.toc-list li.active a {
  transform: translateX(5px);
}

/* FAQ Styles */
.faq-item {
    background: #091e51;
    color: white;
    border-radius: 5px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item input {
    display: none;
}

.faq-item label {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

.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;
}

.faq-item input:checked + label .arrow {
    transform: rotate(180deg);
}


  .note-section {
    background-color: #f9e3e3; /* Soft light blue */
    border-left: 4px solid #890202; /* Bootstrap primary blue */
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a1a;
    margin-top: 20px;
  }

  .note-section a {
    color: #7a0101;
    font-weight: 600;
    text-decoration: none;
  }

  .note-section a:hover {
    text-decoration: underline;
  }

/*Footer*/
.footer {
    padding-top: 30px;
    padding-left: 40px;
    padding-right: 30px;
    color: black;
    position: relative;
    padding-bottom: 50px;
    background-color: rgb(239, 244, 249);
}
.footer-logo {
    max-width: 180px;
    height: auto;
}
.footer a {
    color: rgb(92, 91, 91);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}
.footer a:hover {
    color: #5c85dc;
}
.address-main {
    font-weight: 600;
    color: (92, 91, 91);
}
.add-text{
    color: rgb(92, 91, 91) ;
    text-align: justify;
    font-size: 13px;
}
.footer h5 {
    border-bottom: 7px double rgb(31, 25, 125);
    display: inline-block; /* Ensures the underline only spans the text width */
    padding-bottom: 5px;
    margin-bottom: 15px;
    color: black;
    padding-top: 20px;
}

.social-icons a {
    font-size: 18px;
    margin-right: 12px;
    color: rgb(20, 15, 81);
    transition: transform 0.3s ease, color 0.3s ease;
    
}
.social-icons a:hover {
    color: black;
    transform: scale(1.2);
}
.info-section {
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 14px;
}

.info-title {
    font-weight: bold;
    margin-top: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: left;
    margin-bottom: 10px;
}

.social-links a {
    display: inline-block;
    color: rgb(21, 17, 97);
    text-align: center;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.social-links a:hover {
    color: black;
    transform: scale(1.2);
}

.footer-container {
    max-width: 1200px;
}
.list-unstyled {
    padding-top: 20px;
}
.list-unstyled a {
    gap: 20px;
}
@media (max-width: 767px) {
    .footer {
        text-align: left; /* Ensures the container itself is left-aligned */
        padding: 20px;
    }
    .footer-logo {
        max-width: 150px;
    }
    .footer h5 {
        display: inline-block; /* Ensures the underline is only under the text */
        border-bottom: 7px double rgb(31, 25, 125);
        color: black;
        font-size: 18px;
        text-align: left; /* Ensures text inside is left-aligned */
        width: auto; /* Prevents stretching */
    }
    .social-icons {
        text-align: left;
        margin-top: 15px;
    }
    .footer, 
    .footer h5, 
    .footer a, 
    .social-icons, 
    .list-unstyled {
        text-align: left !important;
    }
}


