body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
  background-color: #f8faff;
}

.navbar-custom {
  background: linear-gradient(90deg, #c1d9ff, #90b9ff);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}


.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #003366;
  letter-spacing: 1.2px;
  user-select: none;
}

.navbar-brand:hover {
  color: #004aad;
  text-decoration: none;
}

/* Nav menu centered */
.navbar-nav {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-link {
  color: #003366 !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 0.35rem;
  transition: background-color 0.3s, color 0.3s;
  user-select: none;
}

.nav-link:hover,
.nav-link:focus {
  color: #ffffff !important;
  background-color: #004aad;
  text-decoration: none;
}

/* Dropdown Menu */
.dropdown-menu {
  min-width: 8rem;
  font-weight: 500;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #90b9ff;
  color: #003366;
}

/* Navbar toggler for mobile */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Search Button Stylish */
.btn-search {
  background: linear-gradient(90deg, #004aad, #3972ff);
  color: #fff;
  font-weight: 600;
  padding: 0.35rem 1.1rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.45rem;
  box-shadow: 0 3px 8px rgba(57, 114, 255, 0.5);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-search:hover,
.btn-search:focus {
  background: linear-gradient(90deg, #3972ff, #004aad);
  box-shadow: 0 5px 12px rgba(0, 74, 173, 0.7);
  color: #e0eaff;
  outline: none;
}

/* Navbar container alignment */
.container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Hero */

#hero {
  background-color: #f9f9f9;
  padding: 80px 0 60px;
  text-align: center;
  margin-bottom: -20px;
}

#hero img {
  max-width: 100%;
  height: auto;
  margin-bottom: -20px;
  
}

#hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #004a8f;
}

#hero p.lead {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #555;
}

#hero .btn-primary,
#hero .btn-outline-primary {
  padding: 10px 25px;
  font-size: 1.2rem;
  border-radius: 8px;
  margin: 0 10px;
  min-width: 60px;
}

/* Responsive */
@media (max-width: 767px) {
  #hero {
    padding: 60px 20px 40px;
  }

  #hero h1 {
    font-size: 2rem;
  }

  #hero p.lead {
    font-size: 1rem;
  }

  #hero img {
    max-height: 260px;
  }

  #hero .btn-primary,
  #hero .btn-outline-primary {
    display: block;
    width: 100%;
    margin: 10px auto;
  }
}
/* end Hero */

/* Footer */
footer {
  background-color: #e8f4fd; /* light blue tone */
  color: #333;
  border-top: 2px solid #cde4f6;
  position: relative;
}

footer h5 {
  font-weight: 700;
  color: #0d6efd;
}

footer p {
  font-size: 15px;
  color: #555;
}

footer a {
  color: #0d6efd;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  text-decoration: underline;
  color: #084298;
}

footer .btn-outline-secondary.active,
footer .btn-outline-secondary:focus {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
}

footer .btn-outline-secondary img {
  vertical-align: middle;
  margin-right: 4px;
}

footer .btn-sm {
  border-radius: 20px;
}

footer .bi {
  transition: transform 0.3s ease;
}

footer .bi:hover {
  transform: scale(1.2);
  color: #0d6efd;
}

/* Back to Top Button */
footer .btn-secondary.rounded-circle {
  background-color: #0d6efd;
  border: none;
  width: 36px;
  height: 36px;
  padding: 0;
}

footer .btn-secondary.rounded-circle:hover {
  background-color: #084298;
}



/* End footer */



/* Counter Section Wrapper */

.counter-box {
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 0.6s ease both;
}
.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.15);
  background-color: #f0faff;
}
.counter-value {
  font-size: 2rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* End Counter */

/* about Section */



.about-section {
  background-color: #f0f8ff; /* light blue */
}

.about-box {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.about-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}



*/ end about */
*/ benefits */

.benefit-item {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  height: 100%;
  align-items: flex-start;
}

.benefit-item .icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  background-color: #0d6efd;
  color: white;
  border-radius: 50%;
  margin-top: 6px; /* Optional slight adjustment */
}

.divider {
  width: 60px;
  height: 3px;
  background-color: #0d6efd;
}


*/ End Benefits */


*/ how to */

.timeline-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
}

.vertical-line {
  position: absolute;
  top: 0;
  left: 30px;
  width: 4px;
  height: 100%;
  background-color: #0d6efd;
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
}

.step-icon {
  width: 50px;
  height: 50px;
  background-color: #0d6efd;
  color: #fff;
  font-size: 1.4rem;
  position: absolute;
  left: 6px;
  top: 0;
  z-index: 2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #f0f9ff;
}


.step-content {
  margin-left: 70px;
  background-color: #fff;
  border-left: 3px solid #e0ecff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.timeline-step:hover .step-content {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}


.divider {
  width: 60px;
  height: 4px;
  background-color: #0d6efd;
  border-radius: 2px;
  margin: 10px auto 0;
}

/* Responsive */
@media (max-width: 575.98px) {
  .timeline-container {
    padding-left: 25px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    left: 0;
  }

  .step-content {
    margin-left: 60px;
    padding: 12px;
  }





*/ 

.cta-section {
  background-color: #eaf5ff;
  position: relative;
  z-index: 1;
}

.custom-shape {
  background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.15), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.cta-telegram-btn {
  transition: all 0.3s ease;
}

.cta-telegram-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}
*/

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



*/ end how to */


*/ cta */
#cta {
  background: linear-gradient(135deg, #a6c9ff, #cde3ff);
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cta h2 {
  color: #003366;
}

#cta p {
  color: #003366;
}

#cta .btn-primary {
  background: linear-gradient(to right, #004aad, #3972ff);
  border: none;
  font-weight: 600;
  transition: 0.3s ease;
}

#cta .btn-primary:hover {
  background: linear-gradient(to right, #3972ff, #004aad);
}




*/ cta */

*/ */
#cookieNotice {
  animation: slideUp 0.5s ease-in-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
*/ */