* {
    padding: 0;
    margin: 0;
}

body,
html {
    width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

/* -----------------header-------------------- */

header {
  position: fixed;
  top: 0%;
  z-index: 2;
  width: 100%;
}

.navbar {
  height: 100px;
  background-color: #ffffff;
  z-index: 1;
  width: 100%;
  padding: 0% !important;
}

.container-fluid {
  margin: 0px 40px;
}

.navbar-brand {
  padding-top: 0px;
}

.nav-logo {
  height: 100px;
  width: 100px;
  margin-left: 20px;
}

.logo {
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  mix-blend-mode: multiply;
}
.navbar-nav {
  margin: 0px;
  width: 100%;
  display: flex;
  justify-content: end;
  gap: 40px;
}

.nav-item a {
  display: flex;
  justify-content: center;
  margin: 0px 10px;
  font-size: 15px;
  color: #1a3f5a;
  font-weight: bold;
}

.navbar-icons {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 35px;
  z-index: 2;
}

a.nav-link {
  margin: 0;
}

.nav-icon {
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.nav-icon:hover i {
  color: rgb(255, 187, 0);
}

.ab {
  display: flex;
  justify-content: center;
}

.ab span {
  display: flex;
  align-items: center;
  color: #1a3f5a;
  font-weight: bold;
}

@media (max-width: 576px) {
  .container-fluid {
    margin: 0px;
  }

  .navbar-nav {
    margin: 0px;
    gap: 15px;
  }

  .img-1 img {
    height: 250px;
  }

  .fixed-video {
    height: 35vh;
  }
}

/* -----------------faq-------------------- */

.container {
  /* width: 100%; */
  /* margin: 0px 90px; */
  padding: 0;
}

.faq-section {
  width: 100%;
}

.faq-main {
  margin-top: 30px;
}

.heading h1 {
  text-align: center;
  font-size: 33px;
  color: #2b3a4a;
}

.menu-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  margin: 0;
  margin-top: 50px;
}

.menu {
  display: flex;
  flex-direction: column;
}

.dropdown {
  position: relative;
}

.menu-btn {
  background-color: #2b3a4a;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s;
  width: 180px;
}

.menu-btn h6 {
  margin: 0;
}

.menu-btn:hover {
  background-color: #1a2330;
}

.dropdown-arrow {
  margin-left: 10px;
  font-size: 12px;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  background-color: white;
  width: 180px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  z-index: 1000;
}

.dropdown-item {
  padding: 12px 20px;
  color: #2b3a4a;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: left;
}

.dropdown-item:hover {
  background-color: #ecf0f1;
}

/* Search Section */
.search {
  display: flex;
}

.search-input {
  display: flex;
  align-items: center;
  background-color: #d1d3d4;
  border-radius: 8px;
  padding: 0px;
  width: 450px;
}

.search-input i {
  margin: 0px 8px;
  color: black;
}

.search-input input {
  border: none;
  background: none;
  outline: none;
  font-size: 16px;
  width: 100%;
  color: #4a4a4a;
}

.search-btn {
  background-color: #2b3a4a;
  color: white;
  border: none;
  padding: 15px 50px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: #1f2a38;
}

.dropdown-content {
  padding: 0;
}

.container-1 {
  max-width: 100%;
  margin: 40px 95px;
  padding: 10px;
}

/* FAQ Content Layout */
.faq-content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.faq-image {
  width: 50%;
  /* height: 50%; */
}

/* Image Styling */
.faq-image img {
  width: 100%;
  height: 580px;
  border-radius: 8px;
  object-fit: cover;
  background-color: #f0f0f0;
}

/* FAQ Items Styling */
.faq-questions {
  flex: 1;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: black;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

/* .faq-item {
        margin-bottom: 5px;
        padding-bottom: 10px;
    }

    .faq-item h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: color 0.3s;
        background-color: #2b3a4a;
        padding: 10px;
        border-radius: 10px;
    } */

/* Icon Styling */
.toggle-icon {
  transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
  /* Rotates the plus icon to a cross */
}

/* Hidden Answer by Default */
.faq-item p {
  display: none;
  font-size: 1rem;
  color: #333;
  padding-top: 8px;
  line-height: 1.6;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive Design */

@media (max-width: 1024px) {
  .container-1 {
    margin: 40px 35px;
    padding: 0;
  }

  .faq-image {
    width: 53%;
    /* height: 50%; */
  }

  /* Image Styling */
  .faq-image img {
    width: 100%;
    height: 490px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
  }

  .faq-item {
    margin-bottom: 8px;
  }

  .faq-content {
    margin-top: 50px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0;
  }

  .heading h1 {
    font-size: 25px;
  }

  .menu-main {
    flex-direction: row;
  }

  .search-input {
    width: 100%;
  }

  .container-1 {
    width: 100%;
    margin: 20px 0px;
  }

  .faq-image {
    width: 50%;
    /* height: 50%; */
  }

  /* Image Styling */
  .faq-image img {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
  }

  .faq-content {
    gap: 20px;
  }
}

/* @media (max-width: 768px) {
        .faq-content {
            flex-direction: column;
            align-items: center;
        }

        .faq-image img {
            width: 100%;
            max-width: 350px;
        }
    } */

@media (max-width: 576px) {
  .container {
    padding: 0;
  }

  .heading h1 {
    font-size: 25px;
  }

  .menu-main {
    flex-direction: column-reverse;

    gap: 15px;
  }

  .search-input {
    width: 100%;
  }

  .container-1 {
    width: 100%;
    margin: 20px 0px;
  }

  .faq-image {
    width: 100%;
    /* height: 50%; */
  }

  .faq-image img {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
  }

  .faq-content {
    flex-direction: column;
    padding: 10px;
  }

  .faq-questions {
    width: 100%;
  }
}

@media (min-width: 430px) and (max-width: 435px) {
  .container-1 {
    width: 100%;
    margin: 20px 0px;
  }

  .faq-image {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (width: 360px) {
  .search-input {
    margin: 10px;
  }
}

@media (width: 344px) {
  .search-input {
    margin: 10px;
  }
}

/* -------------------footer-section --------------*/

footer {
  margin-top: 20px;
  background-color: #b2ebf2;
  padding: 50px 100px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  /* border-radius: 30px 30px 0 0; */
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 110px;
  height: 110px;
  /* border-radius: 50%; */
  margin-bottom: 20px;
  mix-blend-mode: multiply;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons a img {
  width: 30px;
  height: 30px;
}

.social-icons a:hover img {
  filter: none;
}

.footer-column {
  color: #333;
  max-width: 300px;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
  background-color: #023b5d;
  padding: 10px 20px;
  border-radius: 15px;
  display: inline-block;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #023b5d;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
  line-height: 1.6;
}

.contact-info p img {
  width: 27px;
  height: 23px;
  margin-right: 10px;
}

.contact-info p svg {
  margin-right: 15px;
}

/* Media Query for Responsiveness */

@media (max-width: 1200px) {
  footer {
    padding: 40px 80px;
    flex-direction: row;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: start;
  }
}

@media (max-width: 992px) {
  footer {
    padding: 30px 40px;
    flex-direction: row;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: start;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 40px 30px;
    flex-direction: row;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: start;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 50px 40px;
    flex-direction: column;
    display: flex;
    gap: 20px;
    /* justify-content: space-around; */
    align-items: start;
  }

  .footer-logo,
  .footer-column {
    text-align: start;
    margin-bottom: 30px;
  }

  .footer-logo .social-icons {
    display: flex;
    gap: 20px;
  }
}
