:root {
  --theme-color: #7b57ff; /* Base theme color */
  --theme-gradient: linear-gradient(135deg, #4a90e2, #9013fe); /* Reusable gradient */
}

/* -------------------- TAB SECTIONS -------------------- */
.tab-section {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-section.active {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* -------------------- FOOTER NAV -------------------- */
.mobile-footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--theme-color), #9d7bff);
  padding: 8px 0;
  z-index: 999;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

.mobile-footer-nav ul {
  display: flex;
  justify-content: space-around;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-footer-nav li {
  flex: 1;
  text-align: center;
}

.mobile-footer-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #eee;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.mobile-footer-nav a i {
  font-size: 20px;
  margin-bottom: 3px;
}

.mobile-footer-nav a.active,
.mobile-footer-nav a:hover {
  color: #fff;
  transform: scale(1.1);
}


.quote-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: var(--theme-gradient);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}



/* Tabs */
.portfolio-mobile-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 15px;
  padding: 15px 0;
}
.tab-btn {
  flex: none;
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  background: #eee;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.tab-btn.active {
  background: linear-gradient(135deg, #4a90e2, #9013fe);
  color: #fff;
}

/* Portfolio Cards */
.portfolio-card {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.portfolio-card i {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--theme-color);
}
.portfolio-card h4 {
  font-size: 14px;
  margin-bottom: 8px;
}
.portfolio-card .read-more {
  font-size: 12px;
  color: #4a90e2;
}

/* Highlight Cards */
.ishita-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}
.ishita-service-card i {
  font-size: 30px;
  margin-bottom: 8px;
  color: var(--theme-color);
}

/* Highlight search match */
mark {
  background: #ffeb3b;
  padding: 0 2px;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 576px) {
  .col-6 { flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
}

/* contact us */
    /* ===== Contact Form ===== */
.contact-form .form-control {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.btn-submit {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #4a90e2, #9013fe);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-submit:hover { opacity: 0.9; }

/* ===== Contact Info Cards ===== */
.contact-info-grid .info-card {
  position: relative;
  overflow: hidden; /* ripple */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 24px;
  border-radius: 15px;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);

  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-decoration: none;
  color: inherit;
  height: 100%;
  cursor: pointer;
}

.contact-info-grid .info-card:hover {
  transform: translateY(-5px);
  background: #f1f1f1;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.contact-info-grid .info-card i {
  font-size: 34px;
  padding: 14px;
  border-radius: 50%;
  margin-bottom: 12px;
  background: #fff;
}

/* Icon Colors */
.info-card .fa-phone { color: #4a90e2; animation: pulse 2s infinite ease-in-out; }
.info-card .fa-whatsapp { color: #25d366; animation: pulse 2s infinite ease-in-out; animation-delay: 1s; }
.info-card .fa-envelope { color: #e74c3c; }
.info-card .fa-facebook-f { color: #f39c12; }

/* Bold Text */
.contact-info-grid .info-card p {
  font-size: 16px;
  margin: 0;
  color: #333;
  font-weight: 700;
}

/* ===== Ripple Effect ===== */
.info-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background: rgba(0,0,0,0.15);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.info-card:active::after { animation: ripple 0.6s linear; }

@keyframes ripple {
  from { transform: scale(0); opacity: 0.5; }
  to { transform: scale(20); opacity: 0; }
}

/* ===== Pulse Animation ===== */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(0,0,0,0); }
  50% { transform: scale(1.15); box-shadow: 0 0 12px currentColor; }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(0,0,0,0); }
}


/* JS Ripple element */
.ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}
@keyframes rippleEffect {
  to { transform: scale(20); opacity: 0; }
}
/* header  */
/* Header styling */
.site-header {
  width: 100%;
  padding: 15px 0;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.site-header .logo img {
  max-height: 50px;
  width: auto;
}

/* Get a Quote Button */
.site-header .btn-quote {
  padding: 10px 25px;
  border-radius: 25px;
  background: linear-gradient(135deg, #4a90e2, #9013fe);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.site-header .btn-quote:hover {
  opacity: 0.9;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
  }
  .site-header .btn-quote {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/*  search box */
/*  */
.search-box {
  position: relative;
  max-width: 100%;
}

.search-box input {
  width: 100%;
  padding: 12px 45px 12px 20px;
  border: 2px solid var(--theme, #007bff);
  border-radius: 50px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease-in-out;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.search-box input:focus {
  border-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.search-box::after {
  content: "\f002"; /* FontAwesome search icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 18px;
  pointer-events: none;
}

/*  mobile small card*/
.ishita-services-small-cards {
  /* remove browser’s default margin */
  margin-bottom: 0;       /* no space after section */
  margin-top: 0;          /* optional: also remove top margin */
  
  /* adjust inner padding */
  padding: 100px 20px 10px 20px; /* top right bottom left — reduced bottom */
  
  background: #f9f9f9;
  overflow-x: auto;
}

.ishita-services-container {
  display: flex;               /* horizontal layout */
  flex-wrap: nowrap;           /* do not wrap to next line */
  gap: 12px;                   /* space between cards */
  justify-content: flex-start; /* left align */
}

.ishita-service-card {
  flex: 0 0 85px; /* fixed width per card */
  height: 85px;   /* fixed height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.8); /* soft white border */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: #000; /* black text */
  background-clip: padding-box;
}

.ishita-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.ishita-service-card i {
  font-size: 18px;
  margin-bottom: 4px;
  color: #000; /* black icon */
}

.ishita-service-card p {
  font-size: 10px;
  margin: 0;
  color: #000; /* black text */
  font-weight: bold; /* bold text */
  width: 100%;
  white-space: nowrap;       /* keep on one line */
  overflow: hidden;          /* hide overflow */
  text-overflow: ellipsis;   /* show ... */
}

.ishita-search-section {
  background: #f9f9f9;       /* same background as cards section */
  padding: 20px 0;           /* no side padding */
}

.ishita-search-wrapper {
  display: flex;
  width: 100%;
  max-width: 350px;          /* limit max width */
  margin: 0 auto;            /* <— center horizontally */
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.ishita-search-wrapper input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  font-size: 14px;
  border-radius: 30px 0 0 30px;
  color: black;
}

.ishita-search-wrapper button {
  background: linear-gradient(135deg, rgba(67,206,162,0.2), rgba(24,90,157,0.2));
  color: #000; /* black text */
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 0 30px 30px 0;
  transition: all 0.3s ease;
}

.ishita-search-wrapper button i {
  font-size: 16px;
  color: #000;
}

.ishita-search-wrapper button:hover {
  background: linear-gradient(135deg, rgba(67,206,162,0.35), rgba(24,90,157,0.35));
}


/* --------- Services Section --------- */
.services-section {
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers vertically */
  align-items: center;     /* centers horizontally */
  padding: 20px;
  background: #f0f0f3;
  text-align: center;
}

/* Define header + footer height variables */
:root {
  --header-height: 70px;   /* change as per your header */
  --footer-height: 60px;   /* change as per your footer */
}


.services-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Neumorphic Card */
.service-card {
  background: #f0f0f3;
  border-radius: 20px;
  padding: 25px 18px;
  text-align: center;
  box-shadow: 8px 8px 16px #d1d1d4,
              -8px -8px 16px #ffffff;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 6px 6px 12px #d1d1d4,
              inset -6px -6px 12px #ffffff;
}

/* Circular Icon Box */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 6px 6px 12px rgba(0,0,0,0.1),
              -6px -6px 12px rgba(255,255,255,0.6);
}

/* Gradient styles for each icon */
.gradient-1 { background: linear-gradient(135deg, #4a90e2, #9013fe); }
.gradient-2 { background: linear-gradient(135deg, #ff512f, #dd2476); }
.gradient-3 { background: linear-gradient(135deg, #25d366, #128c7e); }
.gradient-4 { background: linear-gradient(135deg, #f7971e, #ffd200); }

/* Titles */
.service-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

/* Price */
.price {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #555;
}

/* Neumorphic Button */
.service-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  background: #f0f0f3;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 4px 4px 8px #d1d1d4,
              -4px -4px 8px #ffffff;
  transition: all 0.3s ease;
}

.service-btn:hover {
  box-shadow: inset 3px 3px 6px #d1d1d4,
              inset -3px -3px 6px #ffffff;
}

/* slider */

