:root {
  --theme-color: #0d6e8a;
  --theme-color-2: #0a4f66;
  --theme-gradient: linear-gradient(135deg, var(--theme-color), var(--theme-color-2));
}

/* -------------------- 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), var(--theme-color-2));
  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: var(--theme-gradient);
  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: var(--theme-color);
}

/* 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;
}

/* 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: var(--theme-gradient);
  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: var(--theme-color); 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: var(--theme-gradient);
  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, var(--theme-color));
  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: var(--theme-color-2);
  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: var(--theme-gradient); }
.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 */

/* -------------------------------------------------------------------------- */
/* Mobile app shell overrides (frontend home)                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  :root {
    --app-bg: #edf4fa;
    --app-surface: #ffffff;
    --app-text: #15314a;
    --app-muted: #607a90;
    --app-accent: #0d6e8a;
    --app-accent-strong: #0a4f66;
    --app-border: #d7e3ee;
    --app-shadow: 0 10px 22px rgba(15, 39, 64, 0.1);
  }

  html,
  body {
    overflow-x: hidden;
    background: linear-gradient(180deg, #f5f9fd 0%, var(--app-bg) 100%);
  }

  body {
    padding-top: calc(74px + env(safe-area-inset-top));
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
    font-size: 15px;
    color: var(--app-text);
  }

  .mouse-cursor {
    display: none !important;
  }

  section[id] {
    scroll-margin-top: 86px;
  }

  .phase2-mobile-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--app-border);
    box-shadow: 0 8px 22px rgba(15, 39, 64, 0.08);
    padding-top: env(safe-area-inset-top);
  }

  .phase2-mobile-header .container {
    min-height: 68px;
    padding: 10px 14px;
  }

  .phase2-mobile-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .phase2-mobile-logo img {
    height: 34px;
    width: auto;
  }

  .mobile-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
  }

  .mobile-logo-text strong {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--app-text);
  }

  .mobile-logo-text small {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--app-muted);
  }

  .phase2-mobile-header .btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    border-radius: 999px;
    padding: 9px 12px;
    background: linear-gradient(135deg, var(--app-accent), var(--app-accent-strong));
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(10, 79, 102, 0.25);
  }

  .phase2-mobile-header .btn-quote i {
    font-size: 12px;
  }

  .phase2-mobile-header .btn-quote span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  #hero,
  .phase2-about,
  .phase2-services,
  .phase2-benefits,
  .phase2-trust,
  .phase2-process,
  .phase2-pricing,
  .phase2-products,
  .phase2-cta {
    margin: 0 12px 14px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--app-shadow);
  }

  .phase2-about,
  .phase2-services,
  .phase2-benefits,
  .phase2-trust,
  .phase2-process,
  .phase2-products {
    background: var(--app-surface) !important;
  }

  .phase2-pricing {
    background: linear-gradient(155deg, #14334e, #0f5573) !important;
  }

  .phase2-cta {
    padding-bottom: 22px !important;
    background: transparent;
    box-shadow: none;
    margin-bottom: 0;
  }

  .phase2-cta-box {
    border-radius: 20px;
    box-shadow: var(--app-shadow);
  }

  #hero .container,
  .phase2-about .container,
  .phase2-services .container,
  .phase2-benefits .container,
  .phase2-trust .container,
  .phase2-process .container,
  .phase2-pricing .container,
  .phase2-products .container,
  .phase2-cta .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-padding {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .phase2-hero {
    padding: 30px 0 30px !important;
  }

  .phase2-hero h1 {
    font-size: 30px !important;
    line-height: 1.12;
    margin: 10px 0 14px;
  }

  .phase2-hero p {
    font-size: 15px !important;
    line-height: 1.62;
  }

  .phase2-hero-cta {
    margin-top: 18px;
  }

  .phase2-hero-cta .theme-btn {
    width: 100%;
    border-radius: 14px;
    justify-content: center;
    text-align: center;
  }

  .phase2-hero-visual {
    border-radius: 18px;
    padding: 6px;
  }

  .phase2-hero-visual dotlottie-player {
    height: 260px !important;
  }

  .phase2-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
  }

  .phase2-metrics .metric-card:last-child {
    grid-column: span 2;
  }

  .metric-card {
    border-radius: 12px;
    padding: 12px 13px;
  }

  .metric-value {
    font-size: 20px;
  }

  .metric-label {
    font-size: 12px;
  }

  .phase2-services-head {
    gap: 12px;
    margin-bottom: 18px;
  }

  .phase2-services-head .theme-btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    padding: 11px 14px;
  }

  .phase2-service-card,
  .phase2-benefit-card,
  .phase2-trust-box,
  .phase2-trust-list li,
  .phase2-process-step,
  .phase2-price-card,
  .phase2-product-card {
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(15, 39, 64, 0.06);
  }

  .phase2-service-card {
    padding: 14px;
    text-align: left;
  }

  .phase2-service-card dotlottie-player {
    height: 148px !important;
  }

  .phase2-service-card h3 {
    font-size: 18px !important;
    margin: 4px 0 8px;
  }

  .phase2-service-card p {
    font-size: 14px;
  }

  .phase2-benefit-card i {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .phase2-benefits-actions .theme-btn {
    flex: 1 1 100%;
    justify-content: center;
    border-radius: 12px;
  }

  #portfolio-tabs {
    gap: 8px !important;
    padding-bottom: 8px !important;
    margin-bottom: 12px !important;
    scroll-snap-type: x mandatory;
  }

  #portfolio-tabs .project-item-card {
    scroll-snap-align: start;
    padding: 8px 12px !important;
  }

  .phase2-product-icon {
    height: 124px;
  }

  .phase2-product-icon i {
    font-size: 42px;
  }

  .phase2-product-card h3 {
    font-size: 18px;
  }

  .project-slider-2 .swiper-button-prev,
  .project-slider-2 .swiper-button-next {
    display: none !important;
  }

  .mobile-footer-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 1300;
    padding: 6px 8px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border: 1px solid var(--app-border);
    border-radius: 18px;
    box-shadow: 0 16px 26px rgba(15, 39, 64, 0.2);
  }

  .mobile-footer-nav ul {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: transparent !important;
    border: 0 !important;
  }

  .mobile-footer-nav li {
    list-style: none;
  }

  .mobile-footer-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 54px;
    border-radius: 12px;
    padding: 4px 2px;
    text-decoration: none;
    color: #648096 !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
  }

  .mobile-footer-nav a i {
    margin: 0;
    font-size: 16px;
  }

  .mobile-footer-nav a span {
    line-height: 1;
  }

  .mobile-footer-nav a.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--app-accent), var(--app-accent-strong));
    box-shadow: 0 8px 14px rgba(10, 79, 102, 0.28);
    transform: translateY(-1px);
  }

  .mobile-footer-nav a:active {
    transform: scale(0.97);
  }
}

@media (max-width: 390px) {
  .mobile-logo-text {
    display: none;
  }

  .phase2-mobile-header .btn-quote span {
    font-size: 11px;
  }

  .mobile-footer-nav a {
    font-size: 9px;
  }
}

