body{
  font-family:'Times New Roman', Times, serif !important;
}
*{
  margin:0px;
  padding:0px;
}
/* ------------------ Navbar Styling ------------------ */
.navbar {
  padding: 15px 0;
  background-color:white !important;
  transition: all 0.3s ease;
  z-index: 999;
  
}

.navbar-brand img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  border-radius: 50%;
}

.navbar-nav .nav-link {
  margin: 0 10px;
  color: #333 !important;
  transition: color 0.3s ease;
  font-size: 23px;
  font-weight: 400 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0072C6 !important; 
}

.navbar .btn-primary {
  background-color: #0072C6;
  border: none;
  font-weight: 600;
  font-size: 18px;
}
.navbar .dropdown-menu,
.dropdown-menu {
  position: absolute !important;
  overflow: visible !important;
  z-index: 1060 !important;
}
.dropdown-menu.mega-dropdown {
  width: 200px;
  border-radius: 8px;
  font-size: 18px;
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .sub-dropdown {
  top: 0;
  left: 100%;
  margin-top: -1px;
  border-radius: 8px;
  min-width: 240px;
  white-space: normal;
  word-break: break-word;
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  z-index: 1001;
  font-size: 17px;
}
.dropdown-submenu:hover > .sub-dropdown {
  display: block;
}
.dropdown-item {
  white-space: normal;
  font-weight: 500;
  color: #333;
}
.dropdown-item:hover {
  background-color: #e6f0ff;
  color: #007bff;
}
.dropdown-submenu > .dropdown-item::after {
  content: "›";
  float: right;
  font-size: 16px;
  margin-right: 5px;
}

/* ------------------ Responsive Dropdown ------------------ */
@media (max-width: 991px) {
  .dropdown-submenu {
    position: static;
  }

  .dropdown-submenu > .sub-dropdown {
    position: static !important;
    display: none;
    margin-left: 1rem;
    padding-left: 10px;
    background-color: #f9f9f9;
    box-shadow: none;
  }

  .dropdown-submenu.show-sub > .sub-dropdown {
    display: block !important;
  }

  .dropdown-submenu > .dropdown-item::after {
    content: "▼";
    float: right;
    font-size: 12px;
    transition: transform 0.2s;
  }

  .dropdown-submenu.show-sub > .dropdown-item::after {
    transform: rotate(180deg);
  }
}

body.no-scroll {
  overflow: hidden;
}

.scroll-lock {
  overflow: hidden;
}

.custom-divider {
  width: 100%;
  height: 1px;
  background-color: #726e6e;  
}
/* Main Dropdown */
.dropdown-menu.mega-dropdown {
  width: 300px;
  border-radius: 8px;
  font-size: 18px;
  width: 200px;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .sub-dropdown {
  top: 0;
  left: 100%;
  margin-top: -1px;
  border-radius: 8px;
  min-width: 240px;
  white-space: normal;
  word-break: break-word;
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  z-index: 1001;
  font-size: 17px;
}


.dropdown-submenu:hover > .sub-dropdown {
  display: block;
}

.dropdown-item {
  white-space: normal;
  font-weight: 500;
  color: #333;
}

.dropdown-item:hover {
  background-color: #e6f0ff; 
  color: #007bff; 
}


.dropdown-submenu > .dropdown-item::after {
  content: "›";
  float: right;
  font-size: 16px;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .dropdown-submenu {
    position: static;
  }

  .dropdown-submenu > .sub-dropdown {
    position: static !important;
    display: none;
    margin-left: 1rem;
    box-shadow: none;
    padding-left: 10px;
    background-color: #f9f9f9;
  }

  .dropdown-submenu.show-sub > .sub-dropdown {
    display: block !important;
  }

  .dropdown-submenu > .dropdown-item::after {
    content: "▼";
    float: right;
    font-size: 12px;
    transition: transform 0.2s;
  }

  .dropdown-submenu.show-sub > .dropdown-item::after {
    transform: rotate(180deg);
  }
}

/* ------------------ Toggler Button (Mobile) ------------------ */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%230072C6' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 114, 198, 0.9)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.gradient-line {
  height: 3px;
  border: none;
  background: rgb(0, 0, 255);
  margin: 0;
}

/* index.html */

  /* {% comment %} Banner section {% endcomment %} */

  .hero-img-wrapper {
    position: relative;
    height: 100%;
  }

  .hero-img {
    position: absolute;
    top: 50%;
    left: 150px;
    transform: translate(-30%, -50%);
    height: 500px;
    object-fit: contain;
    z-index: 1;
  }

  .text-content {
    z-index: 2;
    position: relative;
    color: white;
    padding: 20px;
  }

  /* Mobile View Styles */
  @media (max-width: 768px) {
    .hero-section {
      background-color: #4390b9;
      flex-direction: column;
      background-image: none !important;  
      text-align: center;
      min-height: auto;
      padding: 40px 20px;
    }

    .text-content {
      color: black !important;  
    }

    .hero-img {
      position: relative;
      transform: none;
      height: auto;
      max-width: 90%;
      margin: 0 auto 20px;
      display: none; 
    }

    .hero-img-wrapper {
      height: auto;
    }
  }
/* {% comment %} why choose section {% endcomment %} */
.why-choose-us {
  background: #f9f9fb;
  padding: 60px 20px;
}

.section-title-why {
  text-align: center;
  font-size: 32px;
  color: black;
  margin-bottom: 40px;
  font-weight: bold;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s ease;
  border-top: 4px solid #4c8bf5;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.feature-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2b2b2b;
}

.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* how it works section */

.how-it-works {
      color: #2f2e41;
    }
    
    .subtitle {
      font-size: 18px;
      letter-spacing: 1px;
      color: #ff6584;
    }
    
    .line-decorator {
      width: 100px;
      height: 4px;
      background: #6c63ff;
      border-radius: 2px;
      margin-top: 8px;
    }
    
    .subtitle {
      font-size: 18px;
      letter-spacing: 1px;
    }
    .section-title-works {
      font-size: 32px;
      color: black;
    }
    .svg-wrapper {
      width: 100%;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .svg-img {
      width: 500px;
      height: 400px;
      object-fit: contain;
    }
    
    .content-box {
      padding: 20px;
      
      border-radius: 16px;
    }

@media (max-width: 768px) {
  .svg-img {
    max-width: 90%;
    height: auto; 
  }
}

.footer {
  background: white;
  color: black;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer h5 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer a {
  text-decoration: none;
  color: black;
  font-size: 1.2rem;
}

.footer a:hover {
  color: #2063c9;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-contact-item i {
  margin-top: 2px;
  color: #555;
}

.footer-contact-item p {
  margin: 0;
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #ccc;
  margin-top: 20px;
}

