@tailwind base;
@tailwind components;
@tailwind utilities;

/* Your custom CSS imports */
@import url('/css/bootstrap.min.css');
/* ... all other imports */




.custom_nav {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.navbar .nav-link {
  color: white !important;
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
  color: #0d6efd !important;
  /* Bootstrap primary color */
}

.dropdown-menu {
  background: white;
  /* Keep dropdown readable */
  border-radius: 8px;
  border: none;
}

/* Service Card Custom Design */
.service-card-custom {
  background: #FFF5F0;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.service-card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background: #f85d23;
}

.service-card-custom .icon-container {
  margin-bottom: 20px;
  color: #31221c;
  /* Heading color match */
  transition: color 0.3s ease;
}

.service-card-custom:hover .icon-container {
  color: #ffffff;
}

.service-card-custom .icon-container i {
  font-size: 48px;
  line-height: 1;
}

.service-card-custom h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #31221c;
  margin-bottom: 15px;
  font-family: var(--font-heading, "Montserrat", sans-serif);
  transition: color 0.3s ease;
}

.service-card-custom:hover h3 {
  color: #ffffff;
}

.service-card-custom h3 a {
  color: #31221c;
  text-decoration: none;
  transition: color 0.3s;
}

.service-card-custom:hover h3 a {
  color: #ffffff;
}

.service-card-custom h3 a:hover {
  color: #f85d23;
}

.service-card-custom:hover h3 a:hover {
  color: #ffffff !important;
}

.service-card-custom p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.service-card-custom:hover p {
  color: #ffffff;
}

.service-card-custom .btn-service {
  display: inline-block;
  padding: 10px 30px;
  background-color: #f85d23;
  color: #ffffff;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  border: 1px solid transparent;
}

/* Service Card Custom Design */
/* ... (existing service card styles) ... */
.service-card-custom .btn-service:hover {
  background-color: #e04a15;
  color: #ffffff;
}

.service-card-custom:hover .btn-service {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.service-card-custom:hover .btn-service:hover {
  background-color: #ffffff;
  color: #f85d23;
}

/* Team/Blog Section */
.team .team-member {
  background-color: #ffffff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  height: 250px;
  /* Fixed height for landscape look */
}

.team .team-member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensure image covers the area without distortion */
  transition: all 0.3s ease-in-out;
}

.team .team-member:hover .member-img img {
  transform: scale(1.05);
}

.team .team-member .member-info {
  padding: 25px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--heading-color);
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 600;
}

.team .team-navigation {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.team .team-navigation button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.team .team-navigation button:hover {
  background: var(--accent-color);
  color: #fff;
}

.team .team-navigation button i {
  font-size: 18px;
}

/* Force 2 slides per view on larger screens with proper spacing */
@media (min-width: 500px) {
  .team .swiper-slide {
    width: calc(50% - 10px) !important;
    margin-right: 20px;
  }

  .team .swiper-wrapper {
    gap: 0;
  }
}

/* Ensure proper card styling */
.team .team-member {
  margin-bottom: 0;
}

/* WhatsApp Floating Button */
.whtsapp_btn {
  position: fixed;
  right: 10px;
  bottom: 10%;
  z-index: 99999;
}

.whtsapp_btn img {
  width: 50px;
  height: 50px;
  box-shadow: 1px 4px 20px #29a71a7d;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.whtsapp_btn img:hover {
  transform: scale(1.1);
}

/* Feature box link wrapper for clickable service cards */
.feature-box-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-box-link:hover .feature-box {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-box-link .feature-box {
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-box-link .feature-box .core-read-more {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 8px;
}

.feature-box-link:hover .feature-box .core-read-more {
  color: color-mix(in srgb, var(--accent-color), black 10%);
}