*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#hero {
  background-color: black;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 8px;
}
body {
  padding-top: 100px;
  margin: 0;
  font-family: "K2D", sans-serif;
}

.nav {
  background-color: #063382;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.nav_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 80px;
  width: 80px;
  background-position: center;
  background-size: cover;
}

.nav_main .nav_list {
  display: flex;
  gap: 45px;
  align-items: center;
}

.nav_items {
  color: white;
  font-size: 20px;

  cursor: pointer;
  text-decoration: none;
}

.nav_items:hover {
  border-bottom: 3px solid #f3f8ff80;
  border-radius: 2px;
  padding-bottom: 5px; /* Improves hover effect visibility */
}

.nav_items a {
  color: white;
  text-decoration: none;
}

/* Keep your existing mobile menu styles (hamburger, sidebar, overlay) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

.mobile_menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background-color: #063382;
  padding: 100px 20px 20px;
  transition: left 0.4s ease;
  z-index: 999;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile_menu.open {
  left: 0;
}

.mobile_menu .nav_list {
  flex-direction: column;
  gap: 30px;
}

.mobile_menu .nav_items {
  font-size: 24px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  body {
    padding-top: 80px; /* Smaller offset on mobile */
  }

  .hamburger {
    display: flex;
  }

  .nav_main .nav_list {
    display: none; /* Hide desktop menu on mobile */
  }

  .logo {
    height: 60px;
    width: 60px;
  }
}
/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
}
.hamburger span {
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Mobile menu styles */
.mobile_menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background-color: #063382;
  padding: 100px 20px 20px;
  transition: left 0.4s ease;
  z-index: 999;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}
.mobile_menu.open {
  left: 0;
}
.mobile_menu .nav_list {
  flex-direction: column;
  gap: 30px;
}
.mobile_menu .nav_items {
  font-size: 24px;
  padding: 10px 0;
}

/* Dark overlay when menu is open */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 998;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  /* Hide only desktop menu */
  .nav_main .nav_list {
    display: none;
  }

  .logo {
    height: 60px;
    width: 60px;
  }
}
/* Banner */
.Banner {
  height: 500px;
  width: 100%;
  padding: 43px 0 0 0;
  background-image: url("./assets/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.heading-text {
  text-align: center;
  color: white;
  font-family: "Salsa", cursive;
  font-size: 60px;
}
.serice_section {
  padding: 65px 0 0 0;
}
.serive_button {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}
.button_1 {
  padding: 10px 20px; /* Added horizontal padding for better touch targets */
  border-radius: 10px;
  outline: none;
  border: none;
  cursor: pointer;
  color: black;
  font-size: 20px;
  font-weight: 500;
  border: 2px solid white;
  background-color: white;
  transition: 0.3s;
  text-align: center;
}
.button_1:hover {
  background-color: transparent;
  color: white;
}
.service_cards {
  padding: 40px 0px 0 0px;
  display: flex;
  gap: 40px;
  align-items: stretch;
}
.service_card {
  background-color: #031226;
  padding: 20px;
  border-radius: 20px 0 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1 1 0;
  min-width: 0;
  box-sizing: border-box;
  word-break: break-word;
}
.icon_box {
  height: 90px;
  width: 90px;
  background-color: #fffaeb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.icon_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card_title {
  padding: 20px 0 10px 0;
  color: white;
  font-size: 25px;
  font-weight: 500;
}
.card_des {
  color: white;

  font-size: 18px;
  font-weight: 400;
  padding-bottom: 20px;
  line-height: 30px;
}

/* ====================== RESPONSIVE STYLES ====================== */

@media (max-width: 1024px) {
  .heading-text {
    font-size: 48px;
  }
  .service_cards {
    padding: 40px 80px 0 80px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .Banner {
    height: auto;
    min-height: 400px;
    padding: 30px 0;
  }
  .heading-text {
    font-size: 40px;
    padding: 0 20px;
  }
  .serice_section {
    padding: 50px 0 0 0;
  }
  .serive_button {
    flex-direction: column;
    gap: 20px;
  }
  .button_1 {
    width: 80%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 18px;
  }
  .service_cards {
    padding: 40px 40px 0 40px;
    flex-direction: column;
    gap: 30px;
  }
  .service_card {
    align-items: center;
    text-align: center;
  }
  .icon_box {
    height: 80px;
    width: 80px;
  }
  .card_title {
    font-size: 23px;
  }
  .card_des {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .heading-text {
    font-size: 32px;
  }
  .service_cards {
    padding: 30px 20px 0 20px;
  }
  .button_1 {
    width: 90%;
    font-size: 17px;
  }
  .icon_box {
    height: 70px;
    width: 70px;
  }
  .card_title {
    font-size: 21px;
  }
}

/* about */
.about_section {
  margin-top: 230px;
  padding: 60px 0 0 0px;
}

.section_title {
  text-align: center;
  font-family: "Salsa", cursive;
  font-size: 36px;
  margin: 0 0 40px 0;
  color: #031226;
  font-weight: 400;
}

.section_des {
  text-align: left;

  font-size: 20px;
  color: #031226;
  line-height: 1.6;
}

.content_box {
  text-align: center;
  margin: 0 auto 80px auto;
}

.info_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 80px;
}

.info_text {
  flex: 1;
  min-width: 300px;
}

.info_text .section_title {
  text-align: left;
  margin-bottom: 20px;
}

.info_text .section_des {
  text-align: left;
}

.info_img {
  flex: 1;
  min-width: 300px;
}

.info_img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  object-fit: cover;
}

/* ====================== RESPONSIVE STYLES ====================== */

@media (max-width: 992px) {
  .about_section {
    margin-top: 120px;
    padding: 0px 20px;
  }

  .section_title {
    font-size: 32px;
  }

  .section_des {
    font-size: 18px;
  }

  .info_row {
    gap: 30px;
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .about_section {
    margin-top: 50px;
  }

  .content_box {
    margin-bottom: 60px;
  }

  .info_row {
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
  }

  .info_text .section_title,
  .info_text .section_des {
    text-align: left;
  }

  .info_row:nth-child(2) {
    flex-direction: column;
  }

  .info_row:nth-child(3) {
    flex-direction: column-reverse;
  }

  .info_text,
  .info_img {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .section_title {
    font-size: 28px;
  }

  .section_des {
    text-align: left !important;
    padding: 0 10px; /* optional: small side padding */
    margin: 0 auto 30px; /* optional: keep some breathing room */
    max-width: 100%; /* ensure it uses full width */
  }

  .info_row {
    gap: 30px;
  }

  .info_img img {
    border-radius: 10px;
  }
}

/* about_wave */
.abour_wave {
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
}

.wave_track {
  display: flex;
  gap: 20px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.wave_container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.wave_button {
  padding: 12px 24px;
  border-radius: 30px;
  outline: none;
  border: 2px solid white;
  cursor: pointer;
  color: white;

  font-size: 16px;
  font-weight: 500;
  background-color: #5699f0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.wave_button:hover {
  background-color: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ball_1 {
  height: 24px;
  width: 24px;
  background-color: #5699f0;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Seamless infinite marquee */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.abour_wave:hover .wave_track {
  animation-play-state: paused;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 992px) {
  .wave_button {
    padding: 10px 18px;
    font-size: 15px;
  }
  .ball_1 {
    height: 20px;
    width: 20px;
  }
  .wave_track {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .abour_wave {
    padding: 25px 0;
  }
  .wave_button {
    padding: 10px 16px;
    font-size: 14px;
    border-width: 1.5px;
  }
  .ball_1 {
    height: 18px;
    width: 18px;
  }
}

@media (max-width: 480px) {
  .wave_button {
    font-size: 13px;
    padding: 8px 14px;
  }
  .wave_track {
    animation-duration: 10s;
  }
}

/* About description */

.about_des {
  margin: 50px 0;
}

.service_main,
.service_main_1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
  gap: 80px;
  flex-wrap: wrap;
}

.service_main_1 {
  align-items: center;
}

.service_left {
  flex: 1;
  text-align: start;
}

.service_right {
  flex: 1;
  min-width: 300px;
}

.service_right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Service lists */
.service_list,
.service_list_1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 40px;
}

.service_list_1 {
  gap: 30px;
}

.service_item {
  color: black;
  font-size: 18px;

  list-style: disc;
}

.service_title {
  font-family: "Salsa", cursive;
  font-size: 36px;
  color: #031226;
  font-weight: 400;
  margin: 20px 0;
}

.service_des {
  font-size: 20px;
  color: #031226;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
}

/* CTA Button */
.cta_button {
  display: inline-flex;
  align-items: center;
  background-color: #5699f0;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: background-color 0.3s;
}

.cta_button:hover {
  background-color: #0056b3;
}

.cta_button .phone {
  margin-right: 12px;
  font-size: 24px;
}

.service_1,
.service_4 {
  margin: 60px 0;
}

.service_4 {
  margin-top: 60px;
}

.devider {
  padding: 36px 0;

  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

.section_title {
  text-align: center;
  font-family: "Salsa", cursive;
  font-size: 36px;
  color: #031226;
  margin-bottom: 20px;
}

.section_des {
  text-align: center;

  font-size: 20px;
  color: #031226;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .service_main,
  .service_main_1 {
    gap: 50px;
  }

  .section_title,
  .service_title {
    font-size: 32px;
  }

  .section_des,
  .service_des {
    font-size: 18px;
  }

  .service_item {
    font-size: 17px;
  }

  .service_list,
  .service_list_1 {
    margin-left: 30px;
  }
}

@media (max-width: 768px) {
  .service_main,
  .service_main_1 {
    flex-direction: column;
    gap: 40px;
  }

  .service_left,
  .service_right {
    min-width: 100%;
  }

  .service_main > .service_right {
    order: -1;
  }

  .service_main_1 > .service_right {
    order: -1;
  }

  .service_list,
  .service_list_1 {
    margin-left: 20px;
    gap: 20px;
  }

  .service_list_1 {
    gap: 25px;
  }

  .cta_button {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    font-size: 15px;
    padding: 16px 28px;
  }

  .section_title,
  .service_title {
    font-size: 28px;
    text-align: center;
  }

  .service_des {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .devider {
    text-align: center;
    padding: 30px 0;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .section_title,
  .service_title {
    font-size: 26px;
  }

  .section_des,
  .service_des {
    font-size: 17px;
  }

  .service_item {
    font-size: 16px;
  }

  .service_list,
  .service_list_1 {
    margin-left: 15px;
  }

  .cta_button {
    font-size: 18px;
    padding: 14px 14px;
  }
}

/* footer */
.main-footer {
  background: #5699f0;
  color: white;
  padding: 30px 0 20px;
}

.footer-container {
  max-width: 1171px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1280px) {
  .footer-container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* TOP */
.main-footer {
  background-color: #5699f0;
  color: white;
  padding: 50px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.footer-contact {
  text-align: right;
}

.footer-phone {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-cards-text {
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-cards {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-cards img {
  width: 45px;
  height: 28px;
  background: white;
  padding: 3px 6px;
  border-radius: 4px;
  object-fit: contain;
}

/* TITLE */
.footer-big-title {
  font-size: 26px;
  font-weight: 700;
  margin: 10px 0 12px;
  color: white;
}

.footer-divider {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
}

/* CENTER TEXT */
.footer-center {
  text-align: center;
}

.footer-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 22px;
  width: 70%;
  margin: 0 auto 22px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-line-text {
  font-size: 13px;
  line-height: 2;
  opacity: 0.95;
  margin: 6px 0;
  cursor: pointer;
}

.footer-url {
  margin-top: 10px;
  text-decoration: underline;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.footer-copy {
  font-size: 13px;
  opacity: 0.95;
}

.footer-social {
  display: flex;
  gap: 14px;
  font-size: 18px;
}

.footer-social a {
  color: white;
  text-decoration: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ====================== RESPONSIVE STYLES ====================== */
@media (max-width: 850px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-cards {
    justify-content: center;
  }

  .footer-big-title {
    text-align: center;
    font-size: 24px;
  }

  .footer-links {
    width: 100%;
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-social {
    order: -1;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 40px 0 25px;
  }

  .footer-logo img {
    width: 70px;
    height: 70px;
  }

  .footer-big-title {
    font-size: 22px;
  }

  .footer-subtitle {
    font-size: 15px;
  }

  .footer-phone {
    font-size: 15px;
  }

  .footer-cards img {
    width: 40px;
    height: 25px;
  }

  .footer-links {
    font-size: 13px;
    line-height: 2.2;
  }

  .footer-links a {
    display: block;
    padding: 4px 0;
  }

  .footer-line-text,
  .footer-copy {
    font-size: 12px;
  }

  .footer-social {
    gap: 12px;
    font-size: 17px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }
}

.mtcta {
  margin-top: 30px;
}


html {
  scroll-behavior: smooth;
}