@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}
ul {
  padding: 0px;
  margin: 0px;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  padding: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
  padding: 0px;
}
a:hover {
  text-decoration: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield; /* Modern standard */
}
.custom_container {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}
/***** Header Section *********/
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff; /* Optional: background for visibility */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optional: shadow on scroll */
}

#navbar_body {
  background: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.heaader_body {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.navbar_logo {
  width: 125px;
  height: auto;
}
#navbarSupportedContent {
  flex-basis: auto;
  justify-content: space-between;
  align-items: center;
}
#navbar_menu_lists {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

#navbar_menu_lists li {
  margin: 0px 10px;
  position: relative;
  cursor: pointer;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
#navbar_menu_lists li a {
  color: #374151;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
#navbar_menu_lists li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #224a85;
  left: 6px;
  bottom: 2px;
  transition: width 0.3s ease-in-out;
}
#navbar_menu_lists li a:hover::after {
  width: 85%;
}
#navbar_menu_lists li a:hover {
  color: #224a85;
}
.header_search_body {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 2px solid #d1d5db;
  padding: 6px 20px;
  border-radius: 35px;
  width: 280px;
}
.header_search_input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  font-weight: 300;
}
.header_search_input:focus {
  outline: none;
  box-shadow: none;
  background: transparent;
}
.header_search_btn {
  border: none;
  background: transparent;
}
.header_search_btn i {
  color: #374151;
}
/***** End Header Section *********/

/**** Banner Section ********/
.banner_section {
  background-image: url('../images/hero/hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 115px 20px 115px 20px;
  position: relative;
}
.banner_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
#banner_body {
  position: relative;
  z-index: 1;
}
.banner_title_body {
  text-align: center;
  margin-bottom: 25px;
}
.banner_title {
  font-size: 50px;
  font-weight: bold;
  color: white;
}

.banner_title span {
  background-color: #3d6bae;
  margin-left: 8px;
  margin-right: 8px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 12px;
  color: white;
  font-size: 50px;
  font-weight: bold;
}
.banner_animation_body {
  text-align: center;
  margin-bottom: 25px;
}
.animation_div {
  display: none;
  transition: opacity 0.5s ease;
}
.animation_div.active {
  display: block;
}
.animation_content {
  font-size: 45px;
  font-weight: bold;
  color: white;
}
.animation_content span {
  background-color: #3d6bae;
  margin-left: 8px;
  margin-right: 8px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 12px;
  color: white;
  font-size: 45px;
  font-weight: bold;
}
.banner_text {
  font-size: 18px;
  line-height: 28px;
  color: white;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 500;
}
.banner_btn_body {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.banner_btn_same {
  margin: 0px 15px;
}
.banner_btn_explore {
  padding: 16px 36px;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, #224a85, #3a7cdf);
  border-radius: 9999px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
  cursor: pointer;
}
.banner_btn_explore:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #224a85, #3a7cdf);
}
.banner_btn_get {
  padding: 16px 36px;
  font-weight: 600;
  color: #15803d;
  background: transparent;
  border: 2px solid #15803d;
  border-radius: 9999px;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out,
    border 0.3s ease-in-out;
  cursor: pointer;
}
.banner_btn_get:hover {
  background: linear-gradient(to right, #22c55e, #15803d);
  color: white;
  border: 2px solid transparent;
}
/**** End Banner Section ********/

/****** About Section **********/
.about_section {
  padding: 80px 0px;
}
.about_flex_style {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.company_about_text_body {
  padding-right: 3%;
}
.company_about_text_body,
.company_about_img_body {
  width: 50%;
}
.company_about_img_body {
  padding-left: 3%;
  display: inline-block;
  animation: floatUpDown 3s infinite ease-in-out;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  } /* Moves up */
  100% {
    transform: translateY(0);
  } /* Back to original */
}
.company_about_img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  border: 3px solid #fff;
  margin-top: 10px;
}
.gradient_style {
  background-image: linear-gradient(
    90deg,
    #224a85 0,
    #3a7cdf 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.company_about_title {
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.company_about_title_sm {
  font-size: 45px;
  margin-bottom: 2rem;
  font-weight: 700;
}
.company_about_text {
  text-align: justify;
  font-size: 18px;
  line-height: 1.8;
  color: #292828;
}
.company_about_text span {
  font-weight: 700;
}
/***********/
.company_about_bottom {
  margin-top: 10%;
}
.company_about_bottom_title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
}
.company_about_title_bottom_sm {
  font-size: 60px;
  margin: 2rem 0;
  font-weight: 700;
}
.company_about_bottom_text {
  text-align: justify;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  color: #292828;
}
/*********/
.slider_body {
  margin-top: 70px;
  padding: 40px;
  background: #fff8;
  box-shadow: 0 3px 10px 1px rgba(45, 45, 45, 0.08);
  border-radius: 15px;
  backdrop-filter: blur(0.5rem);
}
.slider_title,
.work_title {
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.slider_item {
  width: 95%;
  height: 100px;
  border-radius: 5px;
  padding: 0.5rem;
  margin: 1rem 0;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #0bdc59;
  box-shadow: var(--shadow-one);
}
.slider_item img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
/***********/
.work_body {
  margin-top: 70px;
  padding: 40px;
  background: #fff8;
  box-shadow: 0 3px 10px 1px rgba(45, 45, 45, 0.08);
  border-radius: 15px;
  backdrop-filter: blur(0.5rem);
}
.work_items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}
.work_item {
  position: relative;
  box-shadow: 0 3px 10px 1px rgba(45, 45, 45, 0.08);
  padding: 1rem;
  border: 1px solid #ddd;
  min-height: 300px;
  border-radius: 15px;
  background: #f4f9ff;
  backdrop-filter: blur(2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.work_item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #256afa;
  z-index: -1;
  border-radius: 50%;
  overflow: hidden;
  transform: scale(1.5);
  opacity: 0.6;
  transition: all 0.2s ease-in-out;
}
.work_item:hover::after {
  width: 100%;
  height: 100%;
  transform: scale(1);
  border-radius: 15px;
  opacity: 0.8;
}
.work_item_num_body span {
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px 1px rgba(45, 45, 45, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #256afa;
  border: 2px solid #256afa;
  font-size: 1.4rem;
  font-weight: 900;
}
.work_item_img {
  background: #fff8;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.work_item_img img {
  height: 50px;
}
.work_item:hover .work_item_img {
  background: #fff;
  transform: scale(0.8);
}
.work_item_title {
  color: #292828;
  font-size: 15px;
  font-weight: 700;
  margin: 10px 0px;
}
.work_item:hover .work_item_title,
.work_item:hover .work_item_text {
  color: #fff;
}
.work_item_text {
  font-size: 16px;
}
/********/
.widget_main_body {
  margin-top: 70px;
  padding: 40px;
  background: #fff8;
  box-shadow: 0 3px 10px 1px rgba(45, 45, 45, 0.08);
  border-radius: 15px;
  backdrop-filter: blur(0.5rem);
}
.widget_body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.widget_title {
  background-image: linear-gradient(
    90deg,
    #224a85 0,
    #3a7cdf 47%,
    #3a7cdf 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  margin-bottom: 50px;
}
.widget_item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 35px;
}
.widget_item_num {
  margin-right: 15px;
}
.widget_item_num p {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #0d6efd;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
.widget_item_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.widget_item_text {
  font-size: 15px;
}
.widget_right {
  padding-left: 30px;
}
.code-container {
  position: relative;
  background-color: #2d2d2d;
  color: #f8f8f2;
  border-radius: 10px;
  padding: 1rem;
  width: fit-content;
  overflow: auto;
  font-family: Consolas, monospace;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  max-height: 345px;
}

.copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background-color 0.3s;
}

.copy-btn:hover {
  background-color: #0056b3;
}

.code-block {
  white-space: pre;
}
/******/
.gaming_sevice_body {
  margin-top: 70px;
}
.gaming_service_top_title {
  font-size: 30px;
  margin-bottom: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #292828;
}
.gaming_service_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.gaming_service_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  min-height: 200px;
  padding: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #fff8;
}

.item_one {
  background: #9a2ddf;
}
.item_two {
  background: #dd207f;
}
.item_three {
  background: #187ce3;
}
.item_four {
  background: #ff8957;
}
.item_five {
  background: #f74646;
}
.item_six {
  background: #6688ff;
}
.gaming_service_item_img {
  position: relative;
  background: #fff1;
  border: 5px solid #fff1;
  border-radius: 50%;
  backdrop-filter: blur(1rem);
  box-shadow: 0 3px 10px 1px rgba(45, 45, 45, 0.08);
}
.gaming_service_item_img img {
  height: 110px;
  transform: scale(0.7);
  width: 110px;
  object-fit: contain;
}
.gaming_service_title {
  color: #fff;
  font-weight: 600;
  font-size: 28px;
  margin: 10px 0px 20px 0px;
}
.gaming_service_text {
  font-size: 16px;
  color: #fff;
}
/*******/
.education_game {
  margin-top: 40px;
}
.educational_games {
  position: relative;
  background: url(../images/service/educational-background.png);
  background-size: cover;
  padding: 5rem 0;
  background-position: center right;
  height: 400px;
}

.servicebox {
  min-height: 200px;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 15px;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #fff8;
}
.educational_games::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    to left,
    rgba(5, 89, 199, 0.2),
    rgb(129, 7, 211) 50%
  );
  opacity: 0.9;
}
.educational_games .service_content h2 span {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  display: block;
  font-weight: 900;
  color: #fff;
}
.educational_games .service_content {
  position: absolute;
  top: 3rem;
  left: 5rem;
  max-width: 700px;
}

.service_content {
  position: relative;
  color: #fff;
  z-index: 10;
}
.educational_games .service_content h2 {
  text-align: left;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
}
.educational_games .service_content p {
  text-align: left;
  font-size: 20px;
  font-weight: 300;
  padding: 0;
  color: #fff;
}
/****** End About Section **********/

/******** Buy Game *********/
.buy_game_section {
  background: white;
  padding: 80px 0px;
}
.buy_game_title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 4rem;
  background-image: linear-gradient(
    90deg,
    #224a85 0,
    #3a7cdf 47%,
    #3a7cdf 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.buy_game_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
}
.buy_game_item {
  text-align: center;
  position: relative;
  background: #fff8;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  min-height: 345px;
  margin-bottom: 1.5rem;
}
.buy_game_img {
  position: relative;
  height: 215px;
  width: 100%;
  max-width: 100%;
  filter: saturate(1.2);
}
.buy_game_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.buy_game_item_title {
  font-size: 19px;
  font-weight: 600;
  color: #292828;
  margin: 20px 0px;
}
.buy_game_btn {
  background: #256afa;
  padding: 0.6rem 1.8rem;
  font-size: 1.2rem;
  border-radius: 50px;
  border: 2px solid #fff;
  margin: 0px auto 30px auto;
  display: block;
  text-align: center;
  width: 180px;
  color: #fff;
  box-shadow: 0 3px 10px 1px rgba(45, 45, 45, 0.08);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.buy_game_btn:hover {
  background: transparent;
  color: #158639;
  border-color: #319b35;
}
/******** End Buy Game *********/

/******** recognized_section ******/
.recognized_section {
  background: white;
  padding: 80px 0px;
}
.recognized_top_title {
  font-size: 45px;
  margin-bottom: 40px;
  background-image: linear-gradient(
    90deg,
    #224a85 0,
    #3a7cdf 47%,
    #3a7cdf 100%
  );
  text-align: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.recognized_top_img img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.recognized_same_text p {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 30px;
}
.recognized_same_text p span {
  font-weight: 700;
}
.recognized_same_text p a {
  color: #339966;
  font-weight: 700;
}
.recognized_same_mid_title {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 30px;
}
.recognized_multi_img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.recognized_multi_img a {
  margin: 0px 10px;
}
.recognized_multi_img img {
  width: 100%;
  height: auto;
}
.recognized_same_sm_title {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 10px;
}
.recognized_same_ex_sm_title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}
/******** End recognized_section ******/

/****** At a Glance ********/
.glance_section {
  background: #ffffff;
  padding: 80px 0px;
}
.glace_title_body {
  margin-bottom: 12%;
}
.glance_title {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
}
.honeycomb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.img_row {
  display: flex;
  gap: 0;
  margin: -4.5% 0 0 9.5%;
}

.img_row.offset {
  margin-left: 113px;
}

.hex {
  width: 225px;
  height: 225px;
  clip-path: polygon(51% 0%, 100% 20%, 102% 79%, 52% 100%, 3% 80%, 3% 20%);
  overflow: hidden;
  background: #eee;
  transition: transform 0.3s;
}

.hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.hex:hover img {
  transform: scale(1.1);
}

/****** End At a Glance ********/

/******* FAQ Section ***********/
.faq_section {
  background: white;
  padding: 80px 0px;
}
.faq_title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
}
.faq_item {
  background-color: #fff1;
  color: #111;
  margin: 0.5rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 3px 10px 1px rgba(61, 33, 33, 0.08);
  backdrop-filter: blur(1rem);
  border: 1px solid #fff1;
}
.accordion {
  background-color: white;
  color: #000000;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 4.5rem;
  line-height: 1.25rem;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.2rem;
}
.faq_section .active,
.accordion:hover {
  background-color: white !important;
}
.accordion:after {
  content: "\02795";
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
  right: 15px;
  position: absolute;
}

.faq_section .active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}
.faq_section .active,
.accordion:hover {
  background-color: #ccc;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p {
  padding: 20px 0px;
  font-size: 16px;
}
/******* End FAQ Section ***********/

/******* Contact ********/
.contact_section {
  position: relative;
  box-shadow: 0 3px 10px 1px rgba(45, 45, 45, 0.08);
  background: url(../images/contact/background.jpg);
  background-size: cover;
  z-index: 1;
  padding: 80px 0px;
}
.contact_body {
  padding: 2rem;
  border-radius: 15px;
  margin: 0 auto;
  backdrop-filter: blur(1rem);
  border: 1px solid #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.contact_title {
  color: #fff;
  padding: 0px;
  font-size: 25px;
}
.contact_title a {
  font-size: 25px;
  color: #2569f7;
}
.contact_form_body {
  margin-top: 40px;
}
.contact_form_body label {
  font-size: 17px;
}
.contact_form_body label sup {
  color: red;
  font-size: 17px;
}
.contact_form_body input {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  color: #fff;
}
.contact_form_body select {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  color: #fff;
  width: 100%;
}
.contact_form_body select option {
  color: #000;
}
.contact_form_body textarea {
  color: #fff;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.contact_form_body input:focus,
.contact_form_body select:focus,
.contact_form_body textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: none;
}
.contact_btn {
  padding: 0.8rem 2rem;
  background: linear-gradient(#224a85, #3a7cdf);
  color: #fff;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
  margin: 1rem auto;
  display: block;
}
.contact_btn:hover {
  filter: hue-rotate(118deg);
}
/******* End Contact ********/

/******* Footer Section ************/
.footer_section {
  background: white;
  padding: 50px 0px;
}
.footer_body {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_item_one {
  width: 32%;
}
.footer_item_two {
  width: 18%;
}
.footer_item_three {
  width: 18%;
}
.footer_item_four {
  width: 32%;
}

.footer_mul_img_body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
.footer_logo_body img {
  width: 200px;
  height: auto;
}
.footer_text_body {
  margin-right: 30px;
}
.footer_text {
  color: #000;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: justify;
}
.footer_same_title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
}
.footer_same_link_body ul li {
  margin-bottom: 7px;
}
.footer_same_link_body ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.footer_same_link_body ul li a:hover {
  color: #319b35;
  text-decoration: underline;
}

.footer_mul_img_body img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.footer_mul_img_body img:hover {
  transform: scale(1.03);
  border-color: #00ffb3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.footer_bottom_text {
  color: #999999;
  font-size: 14px;
}
/******* End Footer Section ************/
