body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

/* home page hero section start */
.homeSliderSectionWithDynamicSlides {
  position: relative;
  height: 500px;
  overflow: hidden;
  background-color: #f0f4f8;
  width: 100%;
}
.slideContainerForDynamicTransitions {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.individualSlideWithAnimatedContent {
  min-width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigationButtonForSlideControl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2em;
  padding: 05px 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.navigationButtonForSlideControl:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}
#previousSlideNavigationButton {
  left: 20px;
}
#nextSlideNavigationButton {
  right: 20px;
}
.dotIndicatorContainerForSlides {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dotIndicatorForSlideSelection {
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.dotIndicatorForSlideSelection.active {
  background-color: #00a1b5;
  transform: scale(1.3);
}
.dotIndicatorForSlideSelection:hover {
  background-color: #00a1b5;
  transform: scale(1.3);
}
@media (max-width: 640px) {
  .homeSliderSectionWithDynamicSlides {
    height: 200px;
  }
  .individualSlideWithAnimatedContent {
    font-size: 1.5em;
  }
  .navigationButtonForSlideControl {
    font-size: 1.5em;
    padding: 8px 15px;
  }
  .dotIndicatorForSlideSelection {
    width: 10px;
    height: 10px;
  }
}

/* home page hero section end */
/* home about section start */
.home-about-section {
  padding: 2rem 1rem;
  max-width: 1300px;
  margin: auto;
  background-color: #ffffff;
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
}

.home-about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.home-about-image-wrapper {
  flex: 1 1 400px;
  position: relative;
}

.home-about-image-wrapper img {
  width: 100%;
  height: 500px;
  display: block;
}

.home-about-price-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  background: rgba(255, 255, 255, 0.7);
  padding: 0 10px;
}

.home-about-text-content {
  flex: 1 1 600px;
}

.home-about-welcome {
  font-size: 1rem;
  color: rgb(255, 27, 27);
}

.home-about-title {
  font-size: 1.9rem;
  color: #337ab7;
  font-weight: 800;
}

.home-about-line {
  width: 120px;
  height: 3px;
  background-color: #337ab7;
  margin: 20px auto;
}

.home-about-paragraph {
  margin-bottom: 1rem;
  text-align: justify;
  font-size: 17px;
}

.home-about-button {
  display: inline-block;
  background: #337ab7;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 20px;
}

.home-about-button span {
  margin-left: 5px;
  color: #db0e0e;
}

@media (max-width: 768px) {
  .home-about-container {
    flex-direction: column;
  }

  .home-about-image-wrapper img {
    display: none;
  }
  .home-about-image-wrapper,
  .home-about-text-content {
    flex: 1 1 100%;
  }

  .home-about-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .home-about-price-tag {
    font-size: 1.5rem;
  }
  .product-name {
    font-size: 1rem;
  }
}
/* 
  home about section end  */

/* development preocess section start  */
.agile_wrapper_2025 {
  background: #e5e5e5;
  padding: 50px 20px;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.agile_title_2025 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.agile_title_2025 span {
  color: #d71920;
  font-weight: bold;
}

.agile_process_container_2025 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.agile_gear_2025 {
  width: 130px;
  height: 130px;
  background: #222;
  color: white;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 0 0 10px #aaa inset;
}

.agile_gear_2025.orange {
  background: #e65100;
}

.agile_gear_icon_2025 {
  font-size: 24px;
  margin-bottom: 5px;
}

.agile_label_2025 {
  font-weight: bold;
}

.agile_arrow_2025 {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.agile_arrow_2025 svg {
  height: 30px;
}

@media (max-width: 768px) {
  .agile_title_2025 {
    font-size: 1.8rem;
  }
  .agile_gear_2025 {
    width: 100px;
    height: 100px;
    font-size: 12px;
    box-shadow: 0 0 0 8px #aaa inset;
  }
  .agile_gear_icon_2025 {
    font-size: 18px;
  }
}

/* development process section endd */
/* 
website with full ownership section start */
.ownership_section_2025 {
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.ownership_content_wrapper_2025 {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.ownership_left_text_2025 {
  flex: 1 1 450px;
  padding: 20px;
}

.ownership_left_text_2025 h5 {
  color: #f24b59;
  font-size: 1rem;
  margin-bottom: 15px;
}

.ownership_left_text_2025 h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ownership_left_text_2025 p {
  color: #aaa;
  font-size: 1rem;
}

.ownership_features_2025 {
  flex: 1 1 500px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ownership_feature_box_2025 {
  border: 1px solid #321751;
  background-color: #2c0a4b;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  font-size: 1rem;
  transition: 0.3s;
}

.ownership_feature_box_2025:hover {
  background-color: #3c1366;
}

.ownership_feature_box_2025 i {
  color: #ff2e53;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .ownership_content_wrapper_2025 {
    flex-direction: column;
  }
  .ownership_left_text_2025 h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .ownership_features_2025 {
    grid-template-columns: 1fr;
  }
}
/* 
website with full ownership section end */

/* why choose section start  */

.choose_us_wrapper_2025 {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Segoe UI", sans-serif;
}

.choose_us_wrapper_2025 h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.choose_us_wrapper_2025 .sub_heading_2025 {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 30px;
}

.choose_grid_container_2025 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.choose_item_2025 {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 25px;
}

.choose_item_2025 img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
  border-radius: 0;
  flex-shrink: 0;
  border: 1px solid rgb(91, 153, 229);
}

.choose_item_2025 h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #000;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  display: inline-block;
  padding-bottom: 5px;
}

.choose_item_2025 p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
}

.choose_item_2025:hover h3 {
  color: #d10000;
  border-bottom: 2px solid #d10000;
}

.choose_item_2025:hover img {
  border-radius: 50%;
  border: 2px solid #d10000;
  padding: 5px;
}

@media (max-width: 600px) {
  .choose_grid_container_2025 {
    grid-template-columns: 1fr;
  }

  .choose_item_2025 {
    flex-direction: row;
    align-items: flex-start;
  }
  .ownership_left_text_2025 {
    flex: 1 1 290px;
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .choose_grid_container_2025 {
    grid-template-columns: 1fr;
  }

  .choose_item_2025 {
    flex-direction: column;
    align-items: center;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  }

  .choose_item_2025 img {
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
  }

  .choose_item_2025 h3,
  .choose_item_2025 p {
    text-align: center;
  }
}

/* why choose section end  */

/* technology services section start  */
.tech_wrapper_2025 {
  max-width: 1300px;
  margin: auto;
  padding: 50px 20px;
  font-family: "Segoe UI", sans-serif;
}

.tech_wrapper_2025 h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.tech_tabs_2025 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tech_tabs_2025 button {
  background: none;
  border: none;
  font-size: 1rem;
  padding: 10px 16px;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  color: #555;
  transition: all 0.3s ease;
}

.tech_tabs_2025 button::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: background 0.3s ease, border 0.3s ease;
}

.tech_tabs_2025 button.active {
  color: #e60000;
}

.tech_tabs_2025 button.active::before {
  background: #e60000;
  border-color: #e60000;
}

.tech_grid_2025 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 25px;
  justify-items: center;
}

.tech_item_2025 {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.tech_item_2025:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.tech_item_2025 img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 600px) {
  .tech_wrapper_2025 h2 {
    font-size: 1.5rem;
  }
  .tech_tabs_2025 button {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}

/* technology services section end  */

/* arrow */

.scroll-top {
  z-index: 10000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  /* background: #e10d25;
  color: white; */
  /* border: none;
  border-radius: 50%; */
  font-size: 24px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
/* 
.scroll-top:hover {
  background: #0056b3;
} */

.scroll-top.show {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* icons */
/* Floating Icons Styling */
.floating-icons {
  position: fixed;
  right: 15px;
  top: 70%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

/* Common icon style */
.floating-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

.phone-icon {
  background-color: #4285f4;
}

.whatsapp-icon {
  background-color: #25d366;
}

/* Responsive visibility */
@media (min-width: 768px) {
  .phone-icon {
    display: none;
  }
}

a .fab.fa-whatsapp {
  color: #ffffff;
  font-size: 24px;
}
