/* ==========================================================================
   SUZUTECH Premium Styling - CSS Design System
   ========================================================================== */

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

/* --- Root Variables (Design Tokens) --- */
:root {
  --primary-dark: #07162C;
  --primary-dark-rgb: 7, 22, 44;
  --accent-gold: #C28E54;
  --accent-gold-hover: #AB773E;
  --accent-gold-light: rgba(194, 142, 84, 0.15);
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --border-light: #E2E8F0;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 20px 35px rgba(0, 0, 0, 0.18);

  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1280px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

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

input,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition-fast);
}

/* --- Common Components --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-subtitle {
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
  font-family: var(--font-heading);
}

.section-title {
  font-size: 2.25rem;
  color: var(--primary-dark);
  margin-bottom: 24px;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--font-heading);
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background-color: rgba(7, 22, 44, 0.05);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-white-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--bg-white);
}

.btn-white-outline:hover {
  border-color: var(--bg-white);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* --- Floating Widgets --- */
.floating-widgets {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  color: var(--bg-white);
  font-size: 1.5rem;
  position: relative;
  transition: var(--transition-normal);
}

.floating-btn .tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.floating-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 64px;
}

.floating-btn.whatsapp {
  background-color: #25D366;
}

.floating-btn.whatsapp:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

.floating-btn.call {
  background-color: #0070F3;
}

.floating-btn.call:hover {
  background-color: #0050B3;
  transform: scale(1.1);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ==========================================================================
   1. HEADER & TOP BAR
   ========================================================================== */

.top-bar {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

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

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

.top-bar-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar-social a:hover {
  color: var(--accent-gold);
}

.top-bar-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.header {

  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .08);

}

.header-wrapper {

  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 95px;

}

.header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
}

.logo img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  letter-spacing: 1px;
}


.logo-sub-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.logo-sub {
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-line {
  flex: 1;
  height: 2px;
  background: var(--accent-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-gold);
}

.nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link.dropdown-toggle svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: var(--transition-fast);
}

.nav-link.dropdown-toggle:hover svg {
  transform: rotate(180deg);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  height: 18px;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   2. HERO SLIDER BANNER SECTION
   ========================================================================== */

.hero-slider-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--primary-dark);
}

.hero-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 350;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  width: 33.33333%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary-dark);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  z-index: 10;
  outline: none;
}

.slider-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-white);
  transform: translateY(-50%) scale(1.05);
}

.prev-btn {
  left: 24px;
}

.next-btn {
  right: 24px;
}

/* Slider Dots indicators */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slide-dot.active {
  background: var(--accent-gold);
  width: 28px;
  border-radius: 6px;
}

/* Media Queries for Hero Slider Section */
@media (max-width: 1024px) {
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .prev-btn { left: 16px; }
  .next-btn { right: 16px; }
}

@media (max-width: 600px) {
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
  .slider-dots {
    bottom: 12px;
    gap: 8px;
  }
  .slide-dot {
    width: 8px;
    height: 8px;
  }
  .slide-dot.active {
    width: 20px;
  }
}

/* ==========================================================================
   3. ABOUT SECTION (Factory, Stats & Lead Capture Form)
   ========================================================================== */

.about {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.about .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}

/* About Left - Building Image */
.about-building {
  position: relative;
  height: auto;
}

.about-building-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}

.about-building-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background-color: var(--primary-dark);
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  z-index: 10;
}

.about-badge .badge-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge .badge-icon svg {
  width: 32px;
  height: 32px;
}

.about-badge .badge-text span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.8px;
  display: block;
}

/* About Center - Story & Metrics */
.about-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story p.description {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 12px;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.stat-item:hover .stat-icon-circle {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  box-shadow: var(--shadow-md);
}

.stat-icon-circle svg {
  width: 22px;
  height: 22px;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  margin-bottom: 6px;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* About Right - Lead Capture Form */
.about-form-container {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 36px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-form-container h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--accent-gold);
  font-weight: 700;
}

.about-form-container p.form-subtitle {
  color: var(--bg-white);
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.form-group {
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 16px;
  color: #333333;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: #777777;
}

.form-input:focus {
  border-color: var(--accent-gold);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(194, 142, 84, 0.25);
  color: #333333;
}

textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

.form-btn {
  width: 100%;
  margin-top: 8px;
  background-color: var(--accent-gold);
  color: var(--bg-white);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-normal);
}

.form-btn:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
}

.form-privacy svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

.form-message {
  margin-top: 12px;
  font-size: 0.85rem;
  text-align: center;
  padding: 8px;
  border-radius: 4px;
  display: none;
}

.form-message.success {
  background-color: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.2);
  display: block;
}

.form-message.error {
  background-color: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: block;
}

/* ==========================================================================
   4. PRODUCTS SECTION
   ========================================================================== */

.products {
  padding: 100px 0;
  text-align: center;
}

.products .section-title {
  margin-bottom: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.product-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 30px 20px 24px;
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold-light);
}

.product-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
}

.product-card:hover .product-image-container {
  transform: scale(1.05);
}

.product-image-container img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-info h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.product-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.product-link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: var(--transition-fast);
}

.product-link:hover {
  color: var(--accent-gold);
}

.product-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   5. CLIENTS SECTION (Carousel/Logo Bar)
   ========================================================================== */

.clients {
  padding: 60px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.clients .section-title {
  margin-bottom: 40px;
}

.clients-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 0;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll-right-to-left 35s linear infinite;
}

@keyframes scroll-right-to-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

.logo-track:hover {
  animation-play-state: paused;
}

.client-logo-wrapper {
  background-color: var(--bg-white);
  padding: 1px 20px;
  border-radius: 10px;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.client-logo-wrapper:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(194, 142, 84, 0.3);
  box-shadow: var(--shadow-md);
}

.client-logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(70%);
  transition: var(--transition-fast);
}

.client-logo-wrapper:hover img {
  filter: grayscale(0%) opacity(100%);
}

.carousel-indicators {
  display: none;
}

/* ==========================================================================
   6. TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
  padding: 100px 0;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  text-align: center;
  position: relative;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 10%;
  font-family: var(--font-heading);
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

.testimonials .section-title {
  color: var(--bg-white);
  margin-bottom: 50px;
}

.testimonials-container {
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto 36px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(194, 142, 84, 0.3);
  transform: translateY(-5px);
}

.testimonial-quote-icon {
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.testimonial-quote-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 0.95rem;
  color: var(--bg-white);
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   7. FAQS SECTION (Accordion Style)
   ========================================================================== */

.faqs {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.faqs-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background-color: var(--bg-light);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 600;
  transition: var(--transition-fast);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  color: var(--primary-dark);
  transition: var(--transition-normal);
}

.faq-toggle svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: var(--transition-normal);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-content {
  padding: 0 24px 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid transparent;
}

/* Active State Styles */
.faq-item.active {
  border-color: var(--accent-gold-light);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-white);
}

.faq-item.active .faq-header h4 {
  color: var(--accent-gold);
}

.faq-item.active .faq-toggle {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  transform: rotate(45deg);
  /* rotates the plus icon into an X */
}

.faq-item.active .faq-content {
  border-top-color: var(--border-light);
}

/* ==========================================================================
   8. FOOTER SECTION
   ========================================================================== */

.footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-col p {
  margin: 20px 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

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

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--bg-white);
}

.social-circle svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-circle:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.95rem;
  color: var(--bg-white);
  margin-bottom: 24px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  transition: var(--transition-fast);
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  line-height: 1.4;
}

.footer-actions-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-actions-col h4 {
  margin-bottom: 24px;
}

.footer-actions-col .btn {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

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

/* ==========================================================================
   9. MEDIA QUERIES (Responsive Layouts)
   ========================================================================== */

/* --- 1024px and down (Tablets/Medium Screens) --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

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

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

  .hero-media {
    margin-top: 20px;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-building {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .about-building-img {
    height: 380px;
  }

  .about-badge {
    left: 15px;
    bottom: 20px;
    right: 15px;
    margin: 0 auto;
    width: calc(100% - 30px);
    max-width: 320px;
  }

  .about-story {
    text-align: center;
    align-items: center;
  }

  .about-stats {
    width: 100%;
    max-width: 600px;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .about-form-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }

  .faqs-container {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- 768px and down (Mobile Landscape / Large Phones) --- */
@media (max-width: 768px) {
  .top-bar-info {
    justify-content: center;
    width: 100%;
  }

  .top-bar-social {
    display: none;
    /* Hide social icons on mobile header to save space */
  }

  .nav-menu {
    position: fixed;
    top: 93px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 93px);
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: var(--transition-slow);
    overflow-y: auto;
    align-items: flex-start;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-link {
    font-size: 1.15rem;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
  }

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

  .header-actions {
    display: none;
    /* Hide header button on mobile - keep in main menu or hero */
  }

  .nav-toggle {
    display: flex;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- 480px and down (Smartphones) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    width: 100%;
  }
}




.back-image {
    position: relative;
    padding: 6.5rem 0.5rem !important;
    /*background-image: url(../img/new/pagetop-bg.jpg) !important;*/
    background-size: cover;
    background-repeat: no-repeat;
    color: white; /* Ensures text is visible */
    background-color: #0d0a3e;
}

.back-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
    z-index: 1;
}
.breadcrumb-item a {
    color: #fff;
}

.back-image * {
    position: relative;
    z-index: 2;
}


.text-edit-breadc h1{
    font-size: 2rem!important;
    color:#fff;
    font-weight: 500;
    
}
.breadcrumb-item.active, .breadcrumb-item {
    color: #fff;
}

/*sitemap*/
.sitemap-back{
    padding:0.5rem 0.5rem!important;
    border-radius: 10px;
    background-image: url(../img/sitemap-back.jpg)!important;
    background-size: cover;
    background-repeat:no-repeat;
}

.sitemap-back:hover{
    
    background-image: linear-gradient(-45deg,rgb(233 184 122 / 46%), rgb(253 234 197 / 77%)), url(../img/sitemap-back.jpg);
    background-size: cover;
    background-repeat:no-repeat;
    
}
.sitemap-back a{
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(180deg, #c98d4d 0%, #91602c 100%);
    width: 100%;
    display: block;
    padding: 0.5rem;
}

.service-text-contact i {
    font-size: 25px;
    color: var(--primary);
}

.service-item {
    padding: 0.5rem;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/*product inner page*/
.pro-inner-cover{
    margin-top: 3rem;
}
.con-email {
    word-break: break-word;
}

.pro-inner-wrap{
    border: 4px double #e9b87a;
    
}

.myform {
  margin-bottom: 2rem;
}
.proj-box {
    border-radius: 5%;
    background: #fff;
    transform-style: preserve-3d;
    transition: 0.25s ease;
    cursor: pointer;
    background: #1e7db8;
    background-size: 100% 0%;
    transition: .4s;
    padding: 0.5rem;
    border: 1px solid var(--primary);
}
.proj-box:hover{
    background-color: #fff;
}
.pro-view {
	float: left;
}
.pro-view img {
	width: 400px;
    border: 1px solid #e9b87a;
    margin: 0 2rem 0.5rem 0;
}
.proj-info h3 {
    font-size: 20px;
    text-align: center;
}

.pro-wrap a{
    color:#000;
}


.service-text-contact {
    text-align: center;
}
.contact-page{
    margin-top: 2rem;
    margin-bottom:2rem;
}
.img-sty {
    filter: grayscale(1);   
}
.hm-counter {
    margin-bottom: 2.5rem;
}


.card-count {
    background: linear-gradient(180deg, #12B8E3 0%, #0A6BA8 100%);

    padding: 3.5rem 0;
    color: #fff;
}
.card-count-in h6 {
    color: #fff;
    font-size: 18px;
}
.card-count-in h2 {
    font-size: 30px;
    color: #fff;
} 
.card-count-in p {
    color: #fff;
}
#counter {
/*     background: rgba(0, 0, 0, .05);*/
     padding: 0;
/*     width: 800px;*/
/*     max-width: 100%;*/
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     margin-top: 2rem;
}
 #counter li {
     flex: 1;
     text-align: center;
     font-size: 35px;
}
 #counter span.percent:after {
     content: "%";
     display: inline-block;
}
.counter-ul {
    display: flex;
    justify-content: space-between; /* Distributes space evenly between items */
    padding: 0; /* Optional: Remove padding if you want a cleaner edge */
    list-style: none; /* Remove default list styling */
}

.counter-ul li {
    background: #efefff;
    padding: 10px; /* Adds padding inside all li elements */
    margin: 0 10px; /* Equal margin on left and right for all items */
}

/* Remove margins from the first and last items */
.counter-ul li:first-child {
    margin-left: 0;
}

.counter-ul li:last-child {
    margin-right: 0;
}
.counter-ul li:nth-child(1)  {
    color: green; /* Example color for the first li  */
}

.counter-ul li:nth-child(2)  {
    color: #000; /* Example color for the second li  */
}

.counter-ul li:nth-child(3)  {
    color: #12afdd; /* Example color for the third li  */
}
.counter-ul li:nth-child(4)  {
    color: #114856; /* Example color for the third li span */
}
.counter-ul li p {
    font-size: 18px;
}


/* Global css */
.section-entry {
    padding: 5rem 0 5rem;
  }
  .section-entry-top {
    padding-top: 5rem;
  }
  .section-entry-bottom {
    padding-bottom: 5rem;
  }
  .txtct {
    text-align: center;
  }
  .align-c {
    align-items: center;
  }
  .txtbc h1, .txtbc h2,


