/* =============================================
   MUKESH ELECTRONICS - MAIN STYLESHEET
   ============================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #162546;
  --primary-dark: #0e1a33;
  --primary-light: #1e3360;
  --accent: #43C3EA;
  --accent-dark: #27aacc;
  --accent-light: #6fd4f0;
  --dark: #0e1a33;
  --darker: #090f1d;
  --text-dark: #1a2640;
  --text-muted: #6c757d;
  --bg-white: #ffffff;
  --bg-light: #f4f7fb;
  --bg-section: #eef3f9;
  --border-color: #dbe5f0;
  --shadow: 0 4px 20px rgba(22, 37, 70, 0.08);
  --shadow-hover: 0 8px 30px rgba(22, 37, 70, 0.15);
  --shadow-card: 0 2px 15px rgba(22, 37, 70, 0.07);
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
  --radius: 10px;
  --radius-sm: 6px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-pad {
  padding: 80px 0;
}

/* --- Section Heading --- */
.section-heading {
  margin-bottom: 50px;
}

.section-heading .badge-label {
  display: inline-block;
  background: #e8f7fd;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  border: 1px solid #b3e7f7;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--primary);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-heading h2 span {
  color: var(--accent-dark);
}

.section-heading p {
  color: var(--text-muted);
  font-size: 0.97rem;
  max-width: 560px;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center p {
  margin: 0 auto;
}

/* Divider */
.sec-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 14px 0 0;
  border-radius: 2px;
}

.center .sec-divider {
  margin: 14px auto 0;
}

/* === TOP BAR === */
#topbar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 2px solid var(--accent);
}

#topbar a {
  color: rgba(255, 255, 255, 0.85);
}

#topbar a:hover {
  color: var(--accent);
}

#topbar .top-info i {
  color: var(--accent);
  margin-right: 5px;
}

#topbar .top-social a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-left: 5px;
  font-size: 0.72rem;
  transition: var(--transition);
}

#topbar .top-social a:hover {
  background: var(--accent);
  color: var(--primary);
}

/* === HEADER / NAVBAR === */
#mainNav {
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 15px rgba(22, 37, 70, 0.10);
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: var(--transition);
}

#mainNav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.brand-logo-box {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  box-shadow: 0 3px 10px rgba(22, 37, 70, 0.25);
  flex-shrink: 0;
}

.brand-name-wrap .brand-main {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-name-wrap .brand-main span {
  color: var(--accent-dark);
}

.brand-name-wrap .brand-tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

#mainNav .nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark) !important;
  padding: 8px 13px !important;
  letter-spacing: 0.4px;
  position: relative;
  transition: var(--transition);
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 13px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  width: calc(100% - 26px);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: #fff !important;
}

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23162546' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.btn-quote {
  background: var(--primary);
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 18px !important;
  font-size: 0.85rem !important;
  transition: var(--transition);
  border: 2px solid var(--primary);
  white-space: nowrap;
}

.btn-quote:hover {
  background: var(--accent);
  color: var(--primary) !important;
  border-color: var(--accent);
}

.btn-quote::after {
  display: none !important;
}

/* === HERO CAROUSEL === */
#heroCarousel {
  width: 100%;
  overflow: hidden;
}

#heroCarousel .carousel-inner {
  width: 100%;
}

.hero-slide {
  min-height: 560px;
  display: flex !important;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Gradient + Overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Content above overlay */
.hero-slide .container {
  position: relative;
  z-index: 2;
}

/* Slide 1 (Blue Theme) */
.hero-slide-1 {
  background-image: url('../images/b1.jpg');
}

.hero-slide-1::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.795));
}

/* Slide 2 (Purple/Blue Theme) */
.hero-slide-2 {
  background-image: url('../images/b2.jpg');
}

.hero-slide-2::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.781));
}

/* Slide 3 (Dark Tech Theme) */
.hero-slide-3 {
  background-image: url('../images/b3.jpg');
}

.hero-slide-3::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.795));
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(67, 195, 234, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(67, 195, 234, 0.08) 0%, transparent 40%);
  z-index: 0;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-grid-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(67, 195, 234, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 195, 234, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(67, 195, 234, 0.12);
  border: 1px solid rgba(67, 195, 234, 0.35);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero-tag span {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-title .ht-accent {
  color: var(--accent);
  display: block;
}

.hero-title .ht-light {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  display: block;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  margin-bottom: 4px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-hero-primary {
  background: var(--accent);
  color: var(--primary);
  padding: 13px 28px;
  border-radius: 7px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--accent);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 7px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(67, 195, 234, 0.08);
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-stat .num span {
  color: var(--accent);
}

.hero-stat .lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(67, 195, 234, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-icon-display {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  background: rgba(67, 195, 234, 0.06);
  border: 1px solid rgba(67, 195, 234, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.hero-float-badge {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 3;
}

.hero-float-badge .hfb-icon {
  font-size: 1.2rem;
  color: var(--primary);
}

.hero-float-badge .hfb-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
}

.hfb-1 {
  bottom: 10%;
  left: -10%;
}

.hfb-2 {
  top: 10%;
  right: -5%;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 46px;
  height: 46px;
  background: rgba(67, 195, 234, 0.12);
  border: 1px solid rgba(67, 195, 234, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: var(--transition);
}

#heroCarousel .carousel-control-prev {
  left: 15px;
}

#heroCarousel .carousel-control-next {
  right: 15px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  width: 16px;
  height: 16px;
}

#heroCarousel .carousel-indicators {
  bottom: 20px;
  gap: 6px;
  margin: 0;
}

#heroCarousel .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
  opacity: 1;
}

#heroCarousel .carousel-indicators button.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* === ABOUT === */

.about-main-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  min-height: 320px;
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover zoom effect */
.about-main-img:hover img {
  transform: scale(1.05);
}

#about {
  background: var(--bg-white);
}

.about-img-wrap {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 40px rgba(22, 37, 70, 0.12);
}

.about-img-wrap .about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(22, 37, 70, 0.3);
  border: 2px solid var(--accent);
}

.about-exp-badge .exp-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
}

.about-exp-badge .exp-txt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.93rem;
  color: var(--text-dark);
}

.about-check-list li i {
  color: var(--accent-dark);
  margin-top: 3px;
  flex-shrink: 0;
}

.about-cert-strip {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cert-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

.cert-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* === SERVICES === */

.TVV {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  margin-bottom: 20px;
}

#services {
  background: var(--bg-section);
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  transition: var(--transition);
  border-radius: 0 0 3px 0;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-color: transparent;
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #e8f7fd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--accent);
}

.service-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.service-button {
  background: #162546;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid #162546;
  transition: var(--transition);
  align-items: center;
  gap: 8px;
  margin-top: 14px;

}
/* brand */
/* === BRANDS SECTION === */

#brands {
  background: #fff;
  padding: 60px 0;
}

/* WRAPPER */
.brand-track-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* LEFT RIGHT FADE EFFECT */
.brand-track-wrap::before,
.brand-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.brand-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.brand-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* MAIN TRACK (IMPORTANT) */
.brand-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: scroll-brands 25s linear infinite;
}

/* HOVER STOP */
.brand-track:hover {
  animation-play-state: paused;
}

/* ANIMATION */
@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* BRAND ITEM */
.brand-item {
  min-width: 150px;
  height: 80px;
  flex-shrink: 0;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: 0.3s;
}

/* IMAGE */
.brand-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}

/* HOVER EFFECT */
.brand-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.brand-item:hover {
  border-color: #0d6efd;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* === WHY CHOOSE US === */
#why {
  background: var(--bg-section);
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #e8f7fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--accent);
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* === COUNTER === */
#counter {
  background: linear-gradient(135deg, var(--primary) 0%, #0d1e40 60%, #162546 100%);
  position: relative;
  overflow: hidden;
}

#counter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(67, 195, 234, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(67, 195, 234, 0.08) 0%, transparent 50%);
}

.counter-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px 10px;
}

.counter-card .counter-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.counter-card .counter-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.counter-card .counter-num span {
  color: var(--accent);
}

.counter-card .counter-lbl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.counter-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

/* === HOW IT WORKS === */
#howworks {
  background: #fff;
}

.step-line-wrap {
  position: relative;
}

.step-line-wrap::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(50% + 16px);
  right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 10px;
}

.step-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin: 0 auto 18px;
  box-shadow: 0 4px 15px rgba(22, 37, 70, 0.15);
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(67, 195, 234, 0.4);
}

.step-icon-ring {
  width: 50px;
  height: 50px;
  background: #e8f7fd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 auto 12px;
}

.step-card h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === GALLERY === */

#gallery {
  background: #f8f9fb;
}

/* GRID SYSTEM */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Desktop 4 */
  gap: 20px;
}

/* Tablet */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Mobile 2 */
  }
}

/* ITEM */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid #e0e0e0;
  transition: 0.3s;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER ZOOM */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 37, 70, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

/* ICON */
.gallery-overlay i {
  font-size: 2rem;
  color: #fff;
}

/* HOVER EFFECT */
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

/* === TESTIMONIALS === */
#testimonials {
  background: #fff;
}

.testi-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testi-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.testi-card .quote-icon {
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.5;
}

.testi-card p {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-stars {
  color: #f59e0b;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-info .name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
}

.testi-info .role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === FAQ === */
#faq {
  background: var(--bg-section);
}

#faq .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

#faq .accordion-button {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  background: #fff;
  padding: 18px 22px;
  box-shadow: none !important;
}

#faq .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: #e8f7fd;
}

#faq .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23162546'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#faq .accordion-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 16px 22px 20px;
  background: #fff;
  line-height: 1.7;
}

/* === CONTACT === */
#contact {
  background: #fff;
}

.contact-info-card {
  background: var(--primary);
  border-radius: 14px;
  padding: 40px 32px;
  color: #fff;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(67, 195, 234, 0.12);
  border-radius: 50%;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: rgba(67, 195, 234, 0.07);
  border-radius: 50%;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-info-card h3 span {
  color: var(--accent);
}

.contact-info-card .lead-txt {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-detail-item .ci-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(67, 195, 234, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
}

.contact-detail-item .ci-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-detail-item .ci-val {
  font-size: 0.92rem;
  color: #fff;
  font-weight: 600;
}

.contact-detail-item a.ci-val {
  color: #fff;
}

.contact-detail-item a.ci-val:hover {
  color: var(--accent);
}

.contact-social-row {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.contact-social-row a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}

.contact-social-row a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 40px 32px;
  border: 1px solid var(--border-color);
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--primary);
}

.contact-form-wrap h3 span {
  color: var(--accent-dark);
}

.contact-form-wrap .sub-txt {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  transition: var(--transition);
  outline: none;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  background: #fff;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.btn-submit {
  background: var(--primary);
  color: var(--accent);
  border: none;
  padding: 13px 32px;
  border-radius: 7px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Map embed */
.map-embed {
  border-radius: 14px;
  overflow: hidden;
  margin-top: 50px;
  border: 1px solid var(--border-color);
}

/* === FOOTER === */
#footer {
  background: var(--darker);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 60px;
}

.footer-brand .brand-logo-box {
  background: var(--primary);
  color: var(--accent);
}

.footer-brand .brand-main {
  color: #fff;
}

.footer-brand .brand-main span {
  color: var(--accent);
}

.footer-brand .brand-tag {
  color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 16px 0 20px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.footer-heading {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--accent);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  margin-top: 40px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* === BACK TO TOP === */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(22, 37, 70, 0.35);
  cursor: pointer;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--accent);
  color: var(--primary);
}

/* === UTILITIES === */
.bg-red-soft {
  background: #e8f7fd;
}

.text-primary-me {
  color: var(--primary);
}

.fw-800 {
  font-weight: 800;
}

/* === ANIMATIONS === */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* === RESPONSIVE === */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 60px 0;
  }

  #mainNav .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 12px 0 16px;
    margin-top: 6px;
  }

  #mainNav .nav-link::after {
    display: none;
  }

  #mainNav .btn-quote {
    margin: 8px 12px 0;
  }

  .hero-img-box {
    margin-top: 40px;
  }

  .hfb-1,
  .hfb-2 {
    display: none;
  }

  .about-img-wrap .about-exp-badge {
    right: 10px;
    bottom: -16px;
  }

  .counter-divider {
    display: none;
  }

  .step-line-wrap::before {
    display: none;
  }

  .contact-info-card {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 50px 0;
  }

  #topbar .top-info {
    display: none !important;
  }

  .hero-slide {
    min-height: 500px;
  }

  .hero-stats {
    gap: 20px;
    justify-content: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-title {
    text-align: center;
  }

  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tag {
    display: none;
  }

  .about-exp-badge {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .contact-form-wrap,
  .contact-info-card {
    padding: 28px 20px;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero-slide {
    min-height: 460px;
  }

  .hero-stats {
    display: none;
  }

  .brand-item {
    width: 120px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  #heroCarousel .carousel-control-prev {
    left: 8px;
  }

  #heroCarousel .carousel-control-next {
    right: 8px;
  }
}
#callme {
        position: fixed;
        right: 10px;
        top: 190px;
        width: 70px;
        height: 70px;
        cursor: pointer;
      
        z-index: 99990;
    }
    #callme #callmeMain {
        -moz-border-radius: 50% !important;
        -webkit-border-radius: 50% !important;
        border-radius: 50% !important;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: rgb(40 167 69);
        width: 60px;
        height: 60px;
        -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
        -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
        animation: zcwmini2 1.5s 0s ease-out infinite;
    }
    #callme #callmeMain:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -6px;
        left: -6px;
        background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-animation: zcwphone2 1.5s linear infinite;
        -moz-animation: zcwphone2 1.5s linear infinite;
        animation: zcwphone2 1.5s linear infinite;
    }
    @-webkit-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-webkit-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
@media(max-width:374px)
{
	#mainNav .navbar-brand{
		margin-RIGHT:0px;
		gap: 9px;
	}
}