.recommendedCategory-card {
  position: relative;
}

.recommendedCategory-image {
  position: relative;
  width: 100%;
  height: 300px; /* Adjust height as needed */
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  color: #fff; /* Text color */
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease;
  border-radius: 8%;
}

.recommendedCategory-card:hover .overlay {
  opacity: 1; /* Show overlay on hover */
}

.lp-recommended-title,
.lp-recommended-description {
  margin: 0;
  padding: 20px; /* Adjust padding as needed */
}

.main_HeroSection{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    outline: none;
    box-shadow: none;
}

/* Ensure equal heights for hero columns */
.lpHero_left,
.lpHero_right {
    height: 80vh;
    min-height: 80vh;
    max-height: 80vh;
    display: flex;
    align-items: center;
}

.lpHero_section {
    width: 100%;
    margin: 0 !important;
    height: 80vh;
    display: flex;
    align-items: stretch;
    padding: 0 !important;
    gap: 0;
    border: none;
    outline: none;
}

.lpHero_section .row {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    gap: 0 !important;
}

.lpHero_section [class*="col-"] {
  padding: 0 !important;
  margin: 0 !important;
  height: 100%;
  display: flex;
  border: none;
  outline: none;
}
.lp-service {
  display: inline-block;
  width: 180px;
  height: 170px;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  margin: auto;
  padding: 20px 30px 20px 30px;
  text-align: center;
  background: #484848;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.lp-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #3a7ea3;
}

h3.lp-heading {
  text-align: center;
  color: #2c3e50;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
}

h3.lp-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3a7ea3, #62261e);
  margin: 15px auto 0;
  border-radius: 2px;
}
.lp-heading-des {
  margin-bottom: 40px !important;
  text-align: center;
  color: #6c757d;
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

h6.lp-category-title {
  color: #FFFFFF;
  line-height: 1.4;
  font-family: Jost;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;

}

/* Category icon styling */
.lp-service img {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.lp-service:hover img {
  transform: scale(1.1);
}

.lp-slider {
  margin-bottom: 50px;
}

.lp-slider {
  margin: auto;
  width: 50%;
  text-align: center;
}
/* Modern Compact Category Slider */
.recommended-slider-container {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.recommended-categories-slider {
  overflow: visible !important;
  padding: 0 60px;
}

.recommended-categories-slider .swiper-wrapper {
  overflow: visible !important;
}

.recommended-categories-slider .swiper-slide {
  overflow: visible !important;
}

/* Compact Category Cards */
.recommended-category-card {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  background: linear-gradient(135deg, var(--category-bg, #3a7ea3) 0%, rgba(58, 126, 163, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  margin: 10px 0;
}

.recommended-category-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.recommended-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.recommended-category-card:hover::before {
  opacity: 1;
}

/* Category Icon */
.category-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.recommended-category-card:hover .category-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.category-icon img {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.recommended-category-card:hover .category-icon img {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Category Title */
.category-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  margin: 0;
  z-index: 2;
  transition: all 0.3s ease;
  position: relative;
}

.recommended-category-card:hover .category-title {
  transform: translateY(-3px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* View Services Overlay */
.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  z-index: 3;
}

.recommended-category-card:hover .category-overlay {
  opacity: 1;
}

.view-text {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.recommended-category-card:hover .view-text {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

/* Section Header Styling */
.lp-heading {
  font-family: "Nunito", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.lp-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3a7ea3, #62261e);
  border-radius: 2px;
}

.lp-heading-des {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #6c757d;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Modern Slider Navigation */
.recommended-next,
.recommended-prev {
  background: rgba(255, 255, 255, 0.95) !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(58, 126, 163, 0.1);
  position: relative;
  z-index: 10;
}

.recommended-next:hover,
.recommended-prev:hover {
  background: #3a7ea3 !important;
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 12px 35px rgba(58, 126, 163, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.recommended-next::after,
.recommended-prev::after {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  color: #3a7ea3 !important;
  transition: all 0.3s ease;
}

.recommended-next:hover::after,
.recommended-prev:hover::after {
  color: white !important;
  transform: scale(1.1);
}

.recommended-next::after {
  content: "\f054" !important;
}

.recommended-prev::after {
  content: "\f053" !important;
}

.recommended-next {
  right: 20px !important;
}

.recommended-prev {
  left: 20px !important;
}

/* Pagination Styling */
.recommended-pagination {
  position: relative !important;
  margin-top: 30px;
}

.recommended-pagination .swiper-pagination-bullet {
  background: #3a7ea3;
  opacity: 0.3;
  transition: all 0.3s ease;
  width: 12px;
  height: 12px;
}

.recommended-pagination .swiper-pagination-bullet-active {
  background: #3a7ea3;
  opacity: 1;
  transform: scale(1.2);
}

/* Color Variations for Categories */
.recommended-category-card[style*="#3a7ea3"] {
  --category-bg: #3a7ea3;
  background: linear-gradient(135deg, #3a7ea3 0%, #2c5f7a 100%);
}

.recommended-category-card[style*="#62261e"] {
  --category-bg: #62261e;
  background: linear-gradient(135deg, #62261e 0%, #4a1f17 100%);
}

.recommended-category-card[style*="#e74c3c"] {
  --category-bg: #e74c3c;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.recommended-category-card[style*="#27ae60"] {
  --category-bg: #27ae60;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.recommended-category-card[style*="#f39c12"] {
  --category-bg: #f39c12;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.recommended-category-card[style*="#9b59b6"] {
  --category-bg: #9b59b6;
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.recommended-category-card[style*="#34495e"] {
  --category-bg: #34495e;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.recommended-category-card[style*="#16a085"] {
  --category-bg: #16a085;
  background: linear-gradient(135deg, #16a085 0%, #138d75 100%);
}

.recommended-category-card[style*="#f1c40f"] {
  --category-bg: #f1c40f;
  background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
}

.recommended-category-card[style*="#e67e22"] {
  --category-bg: #e67e22;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}
/* Responsive Design for Slider */
@media only screen and (max-width: 1200px) {
  .recommended-slider-container {
    padding: 35px 0;
  }
  
  .recommended-categories-slider {
    padding: 0 50px;
  }
  
  .recommended-category-card {
    height: 170px;
    padding: 18px;
  }
  
  .category-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 12px;
  }
  
  .category-icon img {
    width: 35px !important;
    height: 35px !important;
  }
  
  .category-title {
    font-size: 15px;
  }
  
  .lp-heading {
    font-size: 42px;
  }
}

@media only screen and (max-width: 768px) {
  .recommended-slider-container {
    padding: 30px 0;
  }
  
  .recommended-categories-slider {
    padding: 0 40px;
  }
  
  .recommended-category-card {
    height: 160px;
    padding: 15px;
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  
  .category-icon img {
    width: 32px !important;
    height: 32px !important;
  }
  
  .category-title {
    font-size: 14px;
  }
  
  .view-text {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  .lp-heading {
    font-size: 36px;
  }
  
  .lp-heading-des {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .recommended-next,
  .recommended-prev {
    width: 50px !important;
    height: 50px !important;
  }
  
  .recommended-next::after,
  .recommended-prev::after {
    font-size: 16px !important;
  }
  
  .recommended-next {
    right: 15px !important;
  }
  
  .recommended-prev {
    left: 15px !important;
  }
}

@media only screen and (max-width: 426px) {
  .recommended-slider-container {
    padding: 25px 0;
  }
  
  .recommended-categories-slider {
    padding: 0 20px;
  }
  
  .recommended-category-card {
    height: 140px;
    padding: 12px;
    border-radius: 15px;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }
  
  .category-icon img {
    width: 28px !important;
    height: 28px !important;
  }
  
  .category-title {
    font-size: 13px;
  }
  
  .view-text {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .lp-heading {
    font-size: 28px;
  }
  
  .lp-heading-des {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .recommended-next,
  .recommended-prev {
    width: 45px !important;
    height: 45px !important;
  }
  
  .recommended-next::after,
  .recommended-prev::after {
    font-size: 14px !important;
  }
  
  .recommended-next {
    right: 10px !important;
  }
  
  .recommended-prev {
    left: 10px !important;
  }
  
  .recommended-pagination {
    margin-top: 20px;
  }
}
.lpHero_right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  outline: none;
  position: relative;
  box-shadow: none;
}

.hero_image_container {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: none;
  outline: none;
  box-shadow: none;
}

.hero_main_image {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  object-fit: cover;
  object-position: center;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  outline: none;
  display: block;
}

.lpHero_slide img {
  width: 400px !important;
  height: 400px !important;
}
.lpHero_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #030303;
  height: 100%;
  padding: 60px 40px;
  margin: 0;
  border: none;
  outline: none;
  position: relative;
  box-shadow: none;
}

.hero_text_content {
  text-align: center;
  max-width: 500px;
  width: 100%;
  padding: 0 20px;
}

.hero_main_title {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 61px;
  font-weight: 700;
  line-height: 61px;
  color: #ffffff;
  margin: 0;
  text-align: center;
}



.hero_underline {
  width: 200px;
  height: 2px;
  background-color: #3a7ea3;
  margin: 20px auto;
  border: none;
  display: block;
}

.hero_subtitle {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 20px 0 0 0;
  text-align: center;
  line-height: 1.5;
}
.heroHeading_color {
  color: #3a7ea3 !important;
}
/* Responsive Design */
@media only screen and (max-width: 1025px){
  .hero_main_title {
    font-size: 64px !important; 
    line-height: 70px;
  }
  
  .lpHero_left {
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 768px){
  .lpHero_section {
    flex-direction: column;
    height: 80vh;
    min-height: 80vh;
    border: none;
    gap: 0;
  }
  
  .lpHero_left {
    height: 40vh;
    min-height: 40vh;
    max-height: 40vh;
    padding: 30px 20px;
    border: none;
    box-shadow: none;
  }
  
  .lpHero_right {
    height: 40vh;
    min-height: 40vh;
    max-height: 40vh;
    border: none;
    box-shadow: none;
  }
  
  .hero_image_container {
    height: 100%;
    min-height: 40vh;
    border: none;
    box-shadow: none;
  }
  
  .hero_main_title {
    font-size: 48px !important;
    line-height: 55px;
  }
  
  .hero_subtitle {
    font-size: 14px;
  }
}

@media only screen and (max-width: 426px){
  .lpHero_section {
    height: 70vh;
    min-height: 70vh;
  }
  
  .lpHero_left {
    height: 35vh;
    min-height: 35vh;
    max-height: 35vh;
    padding: 30px 15px;
  }
  
  .lpHero_right {
    height: 35vh;
    min-height: 35vh;
    max-height: 35vh;
  }
  
  .hero_image_container {
    min-height: 35vh;
  }
  
  .hero_main_title {
    font-size: 36px !important;
    line-height: 42px;
  }
  
  .hero_underline {
    width: 150px;
  }
  
  .hero_subtitle {
    font-size: 13px;
  }
}
.lpHero_slide img {
  width: 400px !important;
  height: 375px !important;
}
.choose_title {
  padding-top: 20px;
  font-family: "Poppins";
  font-weight: bold !important;
  font-size: 25px;
  margin-bottom: 20px;
}
.choose_description {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 20px !important;
}
.choose_items {
  font-family: "Poppins";
  /* font-weight: bold; */
  font-size: 13px;
  line-height: 30px;
}
.sultan_app {
  /* margin: auto;
        width: 80%; */
  margin: 0;
  background-color: white;
}
img.fone {
  width: 350px;
  height: 557px;
}
img.gp,
img.as {
  width: 137px;
  height: 40px;
}
img.qr {
  width: 200px;
  height: 200px;
}
form.hero_search{
  max-width: 500px;
  padding-top: 20px;
}
form.hero_search input{
  padding: 20px;
  width: 80%;
  border: 1px solid transparent;
  border-radius: 15px 0 0 15px;
}
form.hero_search button{
  float: right;
  width: 20%;
  padding: 23px;
  background: #3a7ea3;
  border: 1px solid transparent;
  border-radius: 0 15px 15px 0;
}
form.hero_search i{
  color: #fff;
  size: 40px;
}
.feature-container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Feature Services - Elegant Modern Design */
.feature-service{
  width: 320px;
  height: 280px;
  background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.feature-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3a7ea3 0%, #62261e 50%, #3a7ea3 100%);
  border-radius: 20px 20px 0 0;
}

.feature-service:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: linear-gradient(145deg, #333333 0%, #2a2a2a 100%);
  border-color: rgba(58, 126, 163, 0.3);
}
.featureS-img{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  margin-bottom: 20px;
  position: relative;
}

.featureS-img::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(58, 126, 163, 0.1) 0%, rgba(98, 38, 30, 0.1) 100%);
  border-radius: 50%;
  z-index: 1;
}

.featureS-img img{
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.feature-service:hover .featureS-img img {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}
.feature-service h5{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 25px 0;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: capitalize;
}
.f-service-des{
  padding: 10px 10px 0 0;
  font-family: sans-serif;
  margin: 15px 0 10px 0;
  text-align: center;
}
.profile img{
  width: 35px !important;
  height: 35px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.user_profile p{
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #b8b8b8;
  display: inline;
  margin: 0;
}

.user_profile i{
  display: block;
  color: #ffffff;
}

.user_profile{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.user_section{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 0 0;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.f-service-price p{
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  color: #ffffff;
  background: linear-gradient(135deg, #484848 0%, #666666 100%);
  padding: 8px 15px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.f-service-price p::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-service:hover .f-service-price p::before {
  left: 100%;
}

/* Featured Services Grid Layout */
.feature-container .row {
  margin: 0 -10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-container .row > [class*="col-"] {
  padding: 0 10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* View All Button Styling */
.view-all-services {
  text-align: center;
  margin-top: 40px;
}

.view-all-services .btn {
  background: #3a7ea3;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
}

.view-all-services .btn:hover {
  background: #2c5f7a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(58, 126, 163, 0.3);
}
.dev_profilesCard{
  background-color: white;
  border-radius: 10px;
  border: 1px solid #e1d5d5;
}
.user_img{
  display: block;
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  margin: auto;
  text-align: center;
}
.U_name{
  padding-top: 20px;
  text-align: center;
}
.user_location{
  width: 18px !important;
  height: 18px !important;
  border-radius: 50%;
  object-fit: cover;
}
.dev_bio{
  padding: 20px 20px 10px 20px;
  border-radius: 20px 20px 0 0;
}
.user_rating{
  padding-top: 20px;
}
div.user_projects{
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}
.top_user{
  padding: 0 20px 12px 20px;
}

.delievery_days{
  padding: 0 0 10px 10px;
}
.user_bio{
  font-size: 15px;
    font-weight: 700;
    color: black;
}
.topU_services{
  /* margin-top: 10px; */
  margin: 10px;
}
.topU_services span{
  background-color: #dce0eb;
  padding: 7px;
  border-radius: 5px;
}
#verified_user{
  width: 20px !important;
  height: 20px !important;
  margin-top: 12px;
}
.verify_user{
  display: flex;
  justify-content: center;
  align-items: center;
}
.user_experience{
  font-size: 15px;
  font-weight: 500;
}

/* Remove margin-top from wrapper class specifically for landing page */
.wrapper {
  margin-top: 0 !important;
}

/* Dropdown link styling */
.dropdown-item-link {
  color: #333 !important;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.dropdown-item-link:hover {
  color: #3a7ea3 !important;
  text-decoration: none;
}

/* Consistent spacing between sections */
.container[style*="margin-top: 60px"],
.featured-jobs[style*="margin-top: 60px"],
.chooseUS_section[style*="margin-top: 60px"],
.sultan_app[style*="margin-top: 60px"] {
  margin-top: 60px !important;
}

/* Remove extra br spacing */
br + br + br {
  display: none;
}

/* Featured Jobs Section Styling - Figma Design */
.featured-jobs {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-section {
  margin: 0 -10px;
}

.featured-section .row {
  margin: 0 -10px;
}

.featured-section > [class*="col-"] {
  padding: 0 10px;
  margin-bottom: 40px;
}

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #3a7ea3;
}

.feature_tag {
  position: absolute;
  top: 15px;
  right: 0;
  z-index: 2;
}

  .feature_status {
    background: #FF6B35 !important;
    color: white !important;
    padding: 6px 14px !important;
    border-radius: 20px 0 0 20px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif !important;
    text-transform: lowercase !important;
    white-space: nowrap !important;
    min-width: 60px !important;
  }

.f_top {
  padding: 20px 20px 15px 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}

.f_top img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f8f9fa;
}

.f_title {
  flex: 1;
}

.f_title span {
  font-size: 16px;
  color: #2c3e50;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.f_title h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  line-height: 1.3;
}

.f_description {
  padding: 0 20px 15px 20px;
  flex: 1;
  overflow: hidden;
}

.f_description p {
  font-size: 14px;
  color: #6c757d;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jobs_tags {
  padding: 0 20px 15px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 50px;
  overflow: hidden;
}



.jobs_tags span {
  background: #f8f9fa;
  color: #6c757d;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  border: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.jobs_tags i {
  font-size: 11px;
  flex-shrink: 0;
}

.f_bottom {
  padding: 15px 20px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  height: 60px;
  flex-shrink: 0;
}

.f_bottom h5 {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}

.feature_action {
  background: linear-gradient(135deg, #A799FE 0%, #8870FD 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.feature_action:hover {
  background: linear-gradient(135deg, #8870FD 0%, #A799FE 100%);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

/* View All Featured Jobs Button */
.view-all-jobs {
  margin-top: 40px;
  margin-bottom: 20px;
}

  .view-all-jobs .btn {
  background: #484848 !important;
  color: #ffffff !important;
  width: 206px;
  padding: 15px 20px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  }

.view-all-jobs .btn:hover {
  background: #333333;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Top Users Section - Black & Grey Elegant Design */
.top-user-card {
  background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 100%);
  border-radius: 20px;
  padding: 25px 20px;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 380px;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.top-user-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #484848 0%, #666666 50%, #484848 100%);
  border-radius: 20px 20px 0 0;
}

.top-user-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: linear-gradient(145deg, #333333 0%, #2a2a2a 100%);
}

.user-profile-section {
  text-align: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
}

.user-profile-img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.top-user-card:hover .user-profile-img {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.user-name-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.user-name {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.verified-icon {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.user-experience {
  color: #b8b8b8;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin: 0 0 8px 0;
  font-weight: 500;
}

.experience-text {
  font-weight: 600;
  color: #ffffff;
}

.user-location {
  color: #a0a0a0;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 500;
}

.user-location i {
  color: #ffffff;
  font-size: 14px;
}

.user-services-section {
  margin-bottom: 15px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 100%;
}

.service-tag {
  background: linear-gradient(135deg, #484848 0%, #666666 100%);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #666666 0%, #888888 100%);
}

.user-price-section {
  margin-top: auto;
  text-align: center;
  flex-shrink: 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-range {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #484848 0%, #666666 100%);
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.price-range::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.top-user-card:hover .price-range::before {
  left: 100%;
}

/* View All Top Users Button - Elegant Design */
.view-all-users {
  margin-top: 50px;
  margin-bottom: 30px;
}

.view-all-users .btn {
  background: #484848 !important;
  color: #ffffff !important;
  width: 220px;
  padding: 16px 25px;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 20px rgba(58, 126, 163, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-all-users .btn:hover {
  background: #484848 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(58, 126, 163, 0.4);
}

/* Override any other hover styles that might be causing blue color */
.view-all-users .btn.btn-dark:hover {
  background: #484848 !important;
  color: #ffffff !important;
  border-color: #484848 !important;
}

.view-all-users .btn.btn-lg:hover {
  background: #484848 !important;
  color: #ffffff !important;
}

/* Override any Bootstrap or framework styles */
.view-all-users a.btn:hover,
.view-all-users a.btn:focus,
.view-all-users a.btn:active {
  background: #484848 !important;
  color: #ffffff !important;
  border-color: #484848 !important;
  outline: none !important;
}

/* Ensure no blue color from any source */
.view-all-users .btn:hover,
.view-all-users .btn:focus,
.view-all-users .btn:active,
.view-all-users .btn:visited {
  background: #484848 !important;
  color: #ffffff !important;
  border-color: #484848 !important;
}

.view-all-users .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.view-all-users .btn:hover {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%) !important;
  color: #ffffff !important;
  text-decoration: none;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(58, 126, 163, 0.4);
}

.view-all-users .btn:hover::before {
  left: 100%;
}

/* Why Choose Us Section - New Design */
.why-choose-us-section {
  padding: 60px 0;
}

.why-choose-image {
  text-align: center;
  margin-bottom: 30px;
}

.why-choose-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-choose-content {
  padding: 0 20px;
}

.why-choose-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-choose-description {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 40px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 15px;
  padding: 0;
}

.feature-item strong {
  font-weight: 600;
  color: #2c3e50;
}

/* Responsive Design for Why Choose Us */
@media (max-width: 768px) {
  .why-choose-title {
    font-size: 28px;
  }
  
  .why-choose-description {
    font-size: 14px;
  }
  
  .feature-item {
    padding: 15px;
    gap: 15px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon i {
    font-size: 16px;
  }
  
  .feature-content h4 {
    font-size: 16px;
  }
  
  .feature-content p {
    font-size: 13px;
  }
}

/* Download App Section - New Design */
.download-app-section {
  padding: 80px 0;
  max-width: 1336px;
  height: 528px;
  border-radius: 16px;
  background: linear-gradient(373deg, #828282, #000000);
}

.app-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.phone-mockup {
  position: absolute;
  transition: all 0.3s ease;
}

.phone-1 {
  z-index: 2;
  transform: rotate(12deg) translateX(30px);
}

.phone-2 {
  z-index: 1;
  transform: rotate(-12deg) translateX(-30px);
}

.phone-img {
  width: 377;
  height: 400;
  opacity: 1;
  left: 111px;
  
}

.app-content {
  padding: 0 40px;
}

.app-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 62px;
  line-height: 64px;
  color: #fff;
  margin-bottom: 20px;
}

.app-description {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 22px;
  max-width: 409px;
  margin-top: 26px;
  
}

.download-btn {
  display: block;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-img {
  width: 137;
  height: 40.40999984741211;
  opacity: 1;
  top: -12.27px;
  
}

.qr-section {
  text-align: left;
}

.qr-code {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Download App Section */
@media (max-width: 768px) {
  .download-app-section {
    padding: 60px 0;
  }
  
  .app-phones {
    height: 300px;
    margin-bottom: 40px;
  }
  
  .phone-img {
    width: 140px;
  }
  
  .phone-1 {
    transform: rotate(8deg) translateX(8px);
  }
  
  .phone-2 {
    transform: rotate(-8deg) translateX(-8px);
  }
  
  .app-content {
    padding: 0 20px;
    text-align: center;
  }
  
  .app-title {
    font-size: 32px;
  }
  
  .app-description {
    font-size: 16px;
  }
  
  .download-buttons {
    max-width: 350px;
    margin: 0 auto 30px auto;
    flex-direction: row;
  }
  
  .btn-img {
    height: 50px;
  }
  
  .qr-section {
    text-align: center;
  }
  
  .qr-code {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .app-title {
    font-size: 28px;
  }
  
  .app-description {
    font-size: 14px;
  }
  
  .download-buttons {
    max-width: 300px;
    flex-direction: row;
  }
  
  .btn-img {
    height: 45px;
  }
}

