@import url("https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@400;500;700;800&family=Tajawal:wght@400;500;700;800&display=swap");
@import url("/css/internal-pages.css");

/* Variables */
:root {
  --color-primary: #000;
  --color-secondary: #2D2F40;
  --color-accent: #ff3c00;
  --color-success: #4CAF50;
  --color-warning: #FFC107;
  --color-error: #F44336;
  --color-light: #f9f9f9;
  --color-dark: #1a1a1a;
  --color-white: #fff;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #eeeeee;
  --color-gray-300: #e0e0e0;
  --color-gray-400: #bdbdbd;
  --color-gray-500: #9e9e9e;
  --color-gray-600: #757575;
  --color-gray-700: #616161;
  --color-gray-800: #424242;
  --color-gray-900: #212121;
  --quick-silver: hsla(0, 0%, 65%, 1);
  --gold-crayola: hsl(38, 61%, 73%);

  --color-blue: #2D3041;
  --color-red: #C9183C;
  --font-size-xs: 1.2rem;
  --font-size-sm: 1.4rem;
  --font-size-md: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2.4rem;
  --font-size-2xl: 3.2rem;
  --font-size-3xl: 4.0rem;
  --font-size-4xl: 4.8rem;
  --font-size-5xl: 6.4rem;
  --space-xs: 0.8rem;
  --space-sm: 1.6rem;
  --space-md: 2.4rem;
  --space-lg: 3.2rem;
  --space-xl: 4.8rem;
  --space-2xl: 6.4rem;
  --border-radius-sm: 0.4rem;
  --border-radius-md: 0.8rem;
  --border-radius-lg: 1.6rem;
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  --header-height: 9.2rem;
  --transition-slide: 0.5s;
  --font-body: "Tajawal", "Segoe UI", Tahoma, sans-serif;
  --font-heading: "Noto Kufi Arabic", "Tajawal", sans-serif;
  --shadow-soft: 0 26px 60px rgba(15, 23, 42, 0.16);
  --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Utility Classes */
.container {
  width: 90%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-title {
   font-family: "Noto Kufi Arabic", Poppins;
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #2D2F40, #2D2F40);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--color-accent);
  margin: 10px auto;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  font-weight: 500;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

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

/* WhatsApp Button */
.whatsapp-button-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-button-image {
  width: 200px;
  height: auto;
}

/* Phone Icon */
.phone-icon {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #28a745;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s, background-color 0.3s;
  text-decoration: none;
}

.phone-icon:hover {
  background-color: #218838;
  transform: scale(1.1);
}

.phone-icon i {
  font-size: 24px;
}

body {
    font-family: 'Poppins', sans-serif;
  }
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
  }

.content{
  font-family: 'Poppins', sans-serif;
}

    
/* Accessibility & Compatibility Fix */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 600;
  background-color: #ffffff;
  transition: all 0.3s;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-height: 70px;
}



/* Container */
.containerr {
  width: 90%;
  max-width: 1600px;
  /* height: 6.5vh; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  padding: 10px 0;
}

/* Logo */
.logo-img {
  height: 90px;
  width: 160px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

.logo-img:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #2D2F40;
  cursor: pointer;
  padding: 10px;
}

/* Navigation */
.nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav__list a {
  text-decoration: none;
  color: #2D2F40;
  font-size: 2.1rem;
  font-weight: 540;
  transition: color 0.3s;
  
}

.nav__list a:hover {
  color: #e84118;
}

/* Right Buttons */
.right-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.right-buttons #eee{
  display: none;
}

.login-link {
  display: flex;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.get-quote {
  background-color: #C8173C;
  color: white;
  padding: 6px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: background-color 0.3s;
}

.get-quote:hover {
  background-color: #C8173C;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 160px;
  z-index: 999;
  padding: 8px 0;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  display: block;
  padding: 8px 16px;
  color: #2D2F40;
  text-decoration: none;
  font-size: 13px;
  transition: background-color 0.1s ease;
}

.dropdown-content a:hover {
  background-color: #f4f4f4;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Book Free Consultation */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.popup {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.7);
  opacity: 0;
}

.popup h2 {
  font-size: 20px;
  color: #2D3041;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popup h2 span {
  text-decoration: underline;
  text-decoration-color: #2D3041;
  text-decoration-thickness: 2px;
}

.popup form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup label {
  text-align: left;
  font-size: 14px;
  color: #2D3041;
  font-weight: 500;
}

.popup input,
.popup select {
  width: 100%;
  padding: 8px;
  border: 1px solid #2D3041;
  border-radius: 5px;
  font-size: 14px;
  color: #2D3041;
  box-sizing: border-box;
}

.popup input:focus,
.popup select:focus {
  outline: none;
  border-color: #C9183C;
}

.popup .submit-btn {
  background-color: #C9183C;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.popup .submit-btn:hover {
  background-color: #a61432;
  transform: translateY(-2px);
}

.thank-you-message {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0;
  background: linear-gradient(135deg, #fff5f5, #ffebeb);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(201, 24, 60, 0.2);
}

.thank-you-message h3 {
  font-size: 18px;
  color: #2D3041;
  margin: 0;
}

.thank-you-message p {
  font-size: 14px;
  color: #2D3041;
  margin: 0;
}

.checkmark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #C9183C;
  position: relative;
  transform: scale(0);
}

.checkmark::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 16px;
  width: 8px;
  height: 16px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.popup .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  color: #C8173C;
  cursor: pointer;
  transition: color 0.3s ease;
}

.popup .close-btn:hover {
  color: #C8173C;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden; /* Prevent overflow issues */
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1; /* Ensure active slide is above others */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure video covers container, maintaining aspect ratio */
  z-index: 0; /* Video below content but within slide */
}

.hero-content {
  position: relative;
  z-index: 2; /* Above video */
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 100%; /* Ensure content spans container */
  padding: 0 20px; /* Add padding for small screens */
  box-sizing: border-box;
}

.hero-content h1 {
  font-size: 4.4rem;
  margin-bottom: 3rem;
  font-weight: 900; /* Use numeric value for consistency */
  font-family: "Noto Kufi Arabic", Poppins;
}

.hero-content p {
  font-size: 1.9rem;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.slider-line {
  width: 30px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-line.active {
  background-color: white;
}



/* Our Services */
.svc-section {
  padding: 70px 20px;
  background-color: #f5f0e9;
  text-align: center;
  overflow: hidden;
}

.svc-title {
  font-size: 2.5rem;
  color: #2D2F40;
  margin-bottom: 40px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.svc-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #C8173C;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.svc-container {
  display: flex;
  width: max-content;
}

.svc-card-link {
  text-decoration: none;
  display: block;
  width: 250px;
  margin-right: 20px;
  flex-shrink: 0;
}

.svc-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.svc-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.svc-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.svc-card-content {
  padding: 15px;
  text-align: left;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svc-card-title {
  font-size: 1.2rem;
  color: #2D2F40;
  margin: 0 0 8px;
  font-weight: bold;
  text-transform: uppercase;
}

.svc-card-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
  flex-grow: 1;
}



/* Recent Works */
.recent-works {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.recent-works h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #2D2F40;
  line-height: 1.2;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 25px;
}

.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 200px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-card-front img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.flip-card-back {
  transform: rotateY(180deg);
  background-color: #e63946;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-card-back button {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color var(--transition-fast);
}

.flip-card-back button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.work-item:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.location-overlay {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  transition: opacity var(--transition-fast);
  text-align: center;
  width: fit-content;
}

.work-item:hover .location-overlay {
  opacity: 1;
}

/* Project Details */
.project-details {
  padding: 140px 0;
  background-color: var(--color-gray-100);
  text-align: center;
  padding-bottom: 20px;
}

.details-content {
  background-color: #fff;
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1100px;
  max-height: 1200px;
  margin: 0 auto;
}

.details-content h3 {
  font-size: 28px;
  color: #2D2F40;
  margin-bottom: 15px;
  font-weight: 600;
}

.details-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.7;
}

.details-content ul {
  list-style-type: disc;
  text-align: left;
  margin: 0 auto 20px;
  max-width: 400px;
  padding-left: 20px;
}

.details-content li {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.project-title {
  font-weight: bold;
  line-height: 1.8;
  font-size: 2.165em;
}

.back-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.back-btn:hover {
  background-color: #d62828;
  transform: scale(1.05);
}

/* 3D Gallery */
.threeD-gallery {
  padding: 60px 20px;
  text-align: center;
   font-family: 'Poppins', sans-serif;
  background: #fff;
}

.threeD-gallery h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #2D2F40;
}

.threeD-gallery h2 strong {
  color: #000;
  font-weight: 700;
}

.threeD-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.threeD-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 250px;
  position: relative;
}

.threeD-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.95);
}

.threeD-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.threeD-card:hover video {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* About Section */
.about {
  padding: 150px 0;
  background-color: var(--color-light);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text,
.about__content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 16px;
   font-family: 'Poppins', sans-serif;
}

.about__stats {
  display: flex;
  gap: 50px;
  margin-top: 30px;
}

.stat__item {
  text-align: center;
}

.stat__number {
  font-size: 24px;
  color: #e63946;
  margin-bottom: 5px;
}

.stat__label {
  font-size: 14px;
  color: #666;
}

.about__image {
  position: relative;
  overflow: hidden;
}

.holographic-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.holographic-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-fast);
}

.holographic-image::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 80, 80, 0.2), rgba(80, 80, 255, 0.2), rgba(255, 255, 255, 0.1));
  animation: holographic-shimmer 5s infinite;
  filter: blur(10px);
  z-index: 1;
}

.holographic-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

@keyframes holographic-shimmer {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50%, 50%); }
}

.about__image:hover .holographic-image img {
  transform: scale(1.05);
}

/* Future Homes */
.future-homes {
  padding: 60px 20px;
  text-align: center;
}

.future-homes h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2b2b2b;
  position: relative;
  display: inline-block;
}

.future-homes h2::after {
  content: '';
  width: 60%;
  height: 2px;
  background-color: var(--color-error);
  display: block;
  margin: 10px auto 0;
}

.future-homes .description {
  font-size: 16px;
  max-width: 700px;
  margin: 20px auto 40px;
  color: #555;
  line-height: 1.6;
}

.features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 160px;
}

.feature img {
  width: 100px;
  height: 90px;
  margin-bottom: 15px;
}

.feature p {
  font-size: 16px;
  color: #2D2F40;
}

/* Team Section */
.team {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team__member {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.team__member:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team__image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.team__member:hover .team__image-wrapper img {
  transform: scale(1.05);
}

.cursor-animation {
  position: absolute;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.3), transparent);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.team__name {
  font-size: 20px;
  color: #2D2F40;
  margin-bottom: 5px;
  font-weight: 600;
}

.team__role {
  font-size: 14px;
  color: #666;
}

/* Services Section */
  .svc-section {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #f5f5f5;
  }

  .svc-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2D2F40;
  }

  .svc-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .svc-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .svc-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }

  .svc-card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
  }

  .svc-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .svc-card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
    transform: skewX(-25deg);
    transition: left 0.5s ease;
  }

  .svc-card:hover .svc-card-image-wrapper::after {
    left: 125%;
  }

  .svc-card-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .svc-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2D2F40;
  }

  .svc-card-desc {
    font-size: 0.95rem;
    color: #666;
  }

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .svc-title {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .svc-title {
      font-size: 1.5rem;
    }

    .svc-card-content {
      padding: 0.75rem;
    }

    .svc-card-title {
      font-size: 1rem;
    }

    .svc-card-desc {
      font-size: 0.85rem;
    }
  }


/* Stats Section */
.stats-sectionn {
  background-image: url('https://aapkapainter.com/blog/wp-content/uploads/2023/04/sand-1-1024x819.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
  position: relative;
}

.overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  text-align: center;
}

.stat-box {
  color: var(--color-error);
  max-width: 180px;
}

.stat-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.stat-box h2 {
  font-size: 48px;
  margin: 0;
  font-weight: bold;
  color: #e32222db;
}

.stat-box p {
  margin-top: 5px;
  font-size: 16px;
  color: #211f1f;
}

/* Footer Text */
.footer-text p {
  font-size: 16px;
  color: #2D2F40;
  margin: 5px 0;
}

.footer-text p strong {
  font-weight: bold;
}

.footer-text p em {
  font-style: italic;
  color: #666;
}

.btn-primary {
  background-color: #e32222db;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn-primary:hover {
  background-color: var(--color-error);
  transform: scale(1.05);
}

/* How It Works */
.how-it-works {
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
}

.how-it-works h2 {
  font-size: 3.2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.arrow {
  font-size: 4rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  /* color: #2D2F40333; */
}

.step {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  max-width: 100%;
  gap: 20px;
}

.step.active {
  display: flex;
}

.step img {
  width: 450px;
  max-width: 100%;
}

.step-content {
  max-width: 400px;
}

.step-content h4 {
  font-size: 3.2rem;
  margin-bottom: 8px;
  color: #494848;
}

.step-content h3 {
  font-size: 3.50rem;
  margin-bottom: 10px;
  color: #2D2F40;
}

.step-content p {
  color: #4e4d4d;
  line-height: 1.6;
  font-size: 1.9rem;
}

/* Why Choose Living Walls */
.why-us {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 20px;
}

.card {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 300px;
}

.card-img {
  font-size: 3rem; /* Increased from 2rem to 3rem for larger icon */
  color: #2D2F40; /* Maintain existing color */
  display: inline-block; /* Match image display behavior */
  width: 60px; /* Adjusted to accommodate larger icon */
  height: 60px;
  line-height: 60px; /* Center icon vertically */
  text-align: center;
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.card p {
   font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

/* Testimonial Section */
.testimoniall-section {
  padding: 40px 15px;
  text-align: center;
  background: url('https://blog.buyerselect.com/wp-content/uploads/2018/04/decorating-with-white.jpg') no-repeat center/cover;
}

.testimonial-title {
  font-size: 3.1rem;
  color: #2D2F40;
  margin-bottom: 8px;
  font-weight: 800;
}

.testimonial-subtitle {
  font-size: 1.5rem;
  color: #212020;
  margin-bottom: 25px;
}

.testimonial-wrapper {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  padding: 0 90px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  width: 100%;
  min-width: 280px;
  display: none;
  opacity: 0;
  transition: opacity var(--transition-slide);
}

.testimonial-card.active {
  display: block;
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  transition: transform var(--transition-fast);
}

.testimonial-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.testimonial-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color var(--transition-fast);
}

.testimonial-play-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.testimonial-info {
  padding: 15px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.testimonial-profile {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2D2F40;
  margin-bottom: 3px;
}

.testimonial-text {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.5;
  margin-top: 10px;
  text-align: justify;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-content {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  width: 80vw;
  height: 45vw;
  max-width: 1000px;
  max-height: 562.5px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.video-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #282626;
  font-size: 44px;
  font-weight: bold;
  cursor: pointer;
}

.video-close:hover {
  color: #555;
}

.video-content iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color var(--transition-fast);
}

.nav-arrow:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.nav-arrow.left {
  left: 5px;
}

.nav-arrow.right {
  right: 5px;
}

/* Refer and Earn */
.refer-earn-card {
  display: flex;
  max-width: 1400px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.6s ease;
  margin: 20px auto;
}

.refer-earn-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #ffffff, #ffffff);
}

.refer-earn-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 20px;
}

.refer-earn-card-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.refer-earn-card:hover .refer-earn-card-img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.refer-earn-right {
  flex: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.refer-earn-right h2 {
  font-size: 3.8rem;
  color: #2f3342;
  margin: 0;
  line-height: 1.4;
}

.refer-earn-right h2 span {
  color: #C8173C;
  font-weight: bold;
}

.refer-earn-right p {
  font-size: 2rem;
  color: #2f3342;
  margin: 0;
  line-height: 1.6;
}

.refer-earn-right button {
  padding: 28px 45px;
  background: linear-gradient(90deg, #C8173C, #C8173C);
  color: #fff;
  border: none;
  border-radius: 35px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform var(--transition-fast), background 0.5s ease;
  width: fit-content;
}

.refer-earn-right button:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #C8173C, #C8173C);
  box-shadow: 0 5px 15px rgba(216, 27, 96, 0.4);
}

/* Quality Checks */
.section-heading {
  text-align: center;
  margin: 2rem 0 1rem;
  font-size: 3.5rem;
  font-weight: bolder;
}

.section-heading h1 {
  font-size: 3.6rem;
  font-weight: bolder;
  color: #2D2F40;
  margin-bottom: 0.5rem;
}

.quality-banner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 1400px;
  margin: 2rem auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.left-section {
  flex: 1;
  padding-right: 2rem;
  display: flex;
  align-items: center;
}

.logo-and-text {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.text-content h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: #2D2F40;
  font-weight: bold;
}

.text-content p {
  color: #666;
  font-size: 0.9375rem;
  line-height: 2.8;
  font-weight: 600;
  margin-bottom: 1rem;
}

.know-more-btn {
  background-color: #C8173C;
  color: #fff;
  border: none;
  padding: 0.75rem 1.125rem;
  font-size: 1.475rem;
  border-radius: 6px;
  cursor: pointer;
}

.right-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.checklist-img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.quality-checks {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #C8173C;
  color: #fff;
  padding: 0.5rem 0.875rem;
  font-size: 1.875rem;
  font-weight: bold;
  border-radius: 6px;
}

.consultation-btn {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: #C8173C;
  color: #fff;
  border: none;
  padding: 0.75rem 1.125rem;
  font-size: 0.875rem;
  border-radius: 6px;
  cursor: pointer;
}

/* Why Choose Modern */
.why-modern-container {
  background: linear-gradient(to right, #F5F5F5, #FFFFFF);
  padding: 60px 25px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.why-modern-title {
  font-size: 36px;
  font-weight: 700;
  color: #2D3041;
  margin-bottom: 40px;
  transition: color var(--transition-fast);
}

.why-modern-title:hover {
  color: #C8173C;
}

.why-modern-title span {
  background: #2D3041;
  color: #E6E9F0;
  padding: 0 10px;
  border-radius: 6px;
  transition: background var(--transition-fast);
}

.why-modern-title span:hover {
  background: #C8173C;
}

.why-modern-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.why-modern-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid #E6E9F0;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  box-shadow: 0 8px 25px rgba(45, 48, 65, 0.1);
}

.why-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(45, 48, 65, 0.15);
  border-color: #C8173C;
}

.why-modern-card h3 {
  font-size: 36px;
  font-weight: 700;
  color: #2D3041;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.why-modern-card:hover h3 {
  color: #C8173C;
}

.why-modern-card p {
  font-size: 15px;
  color: #2D2F40;
  transition: color var(--transition-fast);
}

.why-modern-card:hover p {
  color: #000000;
}

.why-modern-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.why-modern-feature {
  border: 2px solid #E6E9F0;
  background: #FFFFFF;
  padding: 16px 22px;
  font-size: 15px;
  border-radius: 10px;
  transition: all var(--transition-fast);
  min-width: 240px;
  font-weight: 500;
  color: #2f3342;
}

.why-modern-feature:hover {
  background: #E6E9F0;
  color: #2f3342;
  border-color: #C8173C;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(201, 24, 60, 0.2);
}

.why-modern-feature small {
  display: block;
  font-size: 13px;
  color: #555;
  transition: color var(--transition-fast);
}

.why-modern-feature:hover small {
  color: #C8173C;
}

/* Partners Section */
.partners {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.partners h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #2D3041;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.partners .subtitle {
  font-size: 1.7rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 2rem;
}

.partner-logos {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 48px;
  padding: 20px 0;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-logos img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  cursor: pointer;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.partner-logos img:hover {
  transform: scale(1.1);
}

.partner-logos::-webkit-scrollbar {
  display: none;
}

.partner-logos {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Construction Services */
.luxury-section {
  background: linear-gradient(135deg, #fffeff 0%, #dadada 100%);
  padding: 4rem 0;
  overflow: hidden;
}

.luxury-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.luxury-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2D3041;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.luxury-heading::after {
  content: '';
  width: 80px;
  height: 2px;
  background: #C8173C;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

.luxury-card {
  background: #2f3342;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  bottom: 30px;
}

.luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(45, 48, 65, 0.3);
}

.luxury-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.luxury-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.luxury-card:hover .luxury-image-wrapper img {
  transform: scale(1.1);
}

.luxury-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #C8173C;
  color: #f7f7fa;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.luxury-card:hover .luxury-btn {
  opacity: 1;
}

.luxury-card h3 {
  font-size: 1.5rem;
  font-weight: 750;
  color: #f6f2f2;
  padding: 1rem 1.2rem 0;
  margin: 0;
  text-transform: uppercase;
}

.luxury-card p {
  color: #d9d9d9;
  padding: 0.8rem 1.2rem;
  font-size: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.luxury-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.luxury-modal-content {
  background: #2f3342;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 20px rgba(45, 48, 65, 0.5);
}

.luxury-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #f3ebec;
  cursor: pointer;
}

.luxury-modal-content h3 {
  font-size: 2rem;
  color: #fdf3f5;
  margin-bottom: 1rem;
}

.luxury-modal-content p {
  color: #d9d9d9;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.luxury-modal-btn {
  background: #C8173C;
  color: #f2f3fb;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

.luxury-more-details {
  display: none;
  margin-top: 1rem;
}

.luxury-more-details p {
  color: #d9d9d9;
  line-height: 1.6;
}

.luxury-close-details {
  background: #2f3342;
  color: #C8173C;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 1rem;
}

/* Contact Section */


/* FAQ Section */
.faq-sectionn {
  padding: 50px 20px;
  background-color: #4f4d4d;
  color: white;
  border-radius: 10px;
  max-width: 1200px;
  margin: 20px auto;
}

.faq-title {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #2f3342;
  margin-bottom: 30px;
  position: relative;
}

.faq-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: #C8173C;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.faq-containeer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-questionn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.8rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
   font-family: 'Poppins', sans-serif;
}

.faq-questionn i {
  margin: 0;
  flex-shrink: 0;
  font-size: 2.7rem;
  color: #ccc;
}

.faq-questionn h3 {
  margin: 0;
  flex: 1 1 auto;
  font-size: 1.8rem;
  font-weight: normal;
  color: white;
  line-height: 1.7;
}

.faq-answerr {
  display: none;
  padding: 25px;
  border-radius: 0 0 5px 5px;
  font-size: 0.165rem;
  line-height: 1.7;
  color: white;
}

.faq-answerr.active {
  display: block;
  font-size: 1.2rem;
}

/* Footer */
.footer,
.extended-footer,
.construction-footer {
  background-color: #1A1A2E;
  color: #ccc;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container,
.ext-container,
.footer-content {
  max-width: 1300px;
  margin: auto;
}

.footer-row,
.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column,
.ext-section {
  flex: 1 1 220px;
  margin: 25px;
}

.footer-column h3,
.footer-column h4,
.ext-section h2,
.ext-section h3,
.footer-content h2,
.footer-content h3 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.75px;
}

.footer-column ul,
.ext-services {
  list-style: none;
  padding: 0;
}

.footer-column ul li,
.ext-services li {
  margin-bottom: 8px;
}

.footer-column ul li a,
.ext-services li {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  transition: color var(--transition-fast);
  letter-spacing: 0.5px;
}

.footer-column ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  text-align: center;
  margin-bottom: 20px;
}

.footer-links a {
  color: #ccc;
  margin: 0 15px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #2D2F40;
  padding-top: 20px;
  font-size: 15px;
  color: #aaa;
}

.footer-bottom a {
  color: #C8173C;
  text-decoration: none;
}

.social-icons a {
  color: #ccc;
  margin-right: 10px;
  font-size: 18px;
  border: 1px solid #444;
  border-radius: 50%;
  padding: 8px;
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background-color: #ea2727;
  color: #1A1A2E;
}

/* User Profile */
.user-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  color: #2D2F40;
  border: 1px solid #2D2F40;
  transition: all var(--transition-fast);
}

.user-name:hover {
  background-color: #C8173C;
  color: white;
  border-color: #C8173C;
}

.logout-btn {
  background: none;
  border: none;
  color: #C8173C;
  font-weight: 500;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: color var(--transition-fast);
}

.logout-btn:hover {
  color: #ffffff;
}

/* Professional Home Refresh */
body,
input,
textarea,
select,
button {
  font-family: var(--font-body);
}

body {
  color: #18212f;
  background: linear-gradient(180deg, #fcfbf8 0%, #ffffff 35%, #f7f2ec 100%);
  padding-top: var(--header-height);
}

main {
  overflow: clip;
}

p {
  line-height: 1.85;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.svc-title,
.hero .hero-content .hero-title,
.nav__list a {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

.section-title,
.svc-title {
  text-transform: none;
}

.section-title {
  background: none;
  color: #18212f;
  -webkit-text-fill-color: currentColor;
  margin-bottom: 2rem;
}

.section-title::after {
  width: 6rem;
  height: 0.3rem;
  background-color: #c8173c;
}

.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45, 47, 64, 0.08);
}

.header.scrolled {
  max-height: none;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.containerr {
  width: min(118rem, calc(100% - 3.2rem));
  min-height: 9.2rem;
  gap: 2.4rem;
  padding: 1.2rem 0;
}

.logo,
.right-buttons {
  flex-shrink: 0;
}

.nav {
  flex: 1 1 auto;
  min-width: 0;
}

.logo-img {
  height: 8.2rem;
  width: 15rem;
}

.nav__list {
  gap: clamp(1.4rem, 2vw, 2.6rem);
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.8rem;
}

.header .nav__list a {
  font-size: 1.6rem;
  font-weight: 700;
}

.nav__cta-item {
  display: none;
}

.nav__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.8rem;
  border-radius: 999px;
  background: #c8173c;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(200, 23, 60, 0.22);
}

.get-quote {
  padding: 1.1rem 1.9rem;
  border-radius: 999px;
  font-size: 1.45rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(200, 23, 60, 0.22);
}

.hero {
  min-height: 68rem;
  height: min(100vh, 88rem);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 18, 31, 0.12) 0%, rgba(10, 18, 31, 0.42) 62%, rgba(10, 18, 31, 0.68) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.08);
  transition: transform 8s ease;
}

.hero-slide.active .hero-media {
  transform: scale(1);
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 45%;
  bottom: clamp(4rem, 7vw, 9rem);
  width: min(72rem, calc(100% - 3.2rem));
  height: clamp(29rem, 30vw, 34rem);
  margin-inline: 0;
  padding: clamp(2rem, 4vw, 3rem);
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2.4rem;
  background: linear-gradient(180deg, rgba(12, 20, 33, 0.52) 0%, rgba(12, 20, 33, 0.72) 100%);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
  overflow: hidden;
}

.hero .hero-content h1 {
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 1.45;
  margin-bottom: 1.4rem;
}

.hero .hero-content .hero-title {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.hero .hero-content p {
  font-size: clamp(1.65rem, 2vw, 2rem);
  line-height: 1.9;
  margin: 0 auto;
  max-width: 58rem;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-content .cta-row {
  width: 100%;
  margin-top: auto;
}

.cta-row .btn {
  min-width: 17rem;
  border-radius: 999px;
  font-weight: 700;
}

.button-secondary {
  background: #ffffff;
  color: #18212f;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.button-secondary:hover {
  background: #f7efe9;
  color: #c8173c;
}

.slider-nav {
  bottom: 2.4rem;
  gap: 0.9rem;
}

.slider-line {
  width: 4.8rem;
  height: 0.45rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.35);
}

.slider-line.active {
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

#services-overview {
  position: relative;
  padding: clamp(7rem, 9vw, 10rem) 0;
  background: linear-gradient(180deg, #f6efe7 0%, #ffffff 85%);
}

#services-overview .svc-header {
  width: min(118rem, calc(100% - 3.2rem));
  margin: 0 auto 3.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

#services-overview .svc-heading-group {
  max-width: 68rem;
  text-align: right;
}

#services-overview .svc-eyebrow {
  font-size: 1.35rem;
  font-weight: 700;
  color: #b43c2b;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

#services-overview .svc-title {
  font-size: clamp(3rem, 4.2vw, 4.6rem);
  color: #18212f;
  margin: 0 0 1rem;
}

#services-overview .svc-title::after {
  display: none;
}

#services-overview .svc-intro {
  font-size: 1.7rem;
  color: #4b5563;
  margin: 0;
  max-width: 60rem;
}

#services-overview .svc-controls {
  display: flex;
  gap: 0.9rem;
  flex-shrink: 0;
}

#services-overview .svc-control {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid rgba(24, 33, 47, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: #18212f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

#services-overview .svc-control:hover:not(:disabled) {
  transform: translateY(-2px);
  background-color: #c8173c;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(200, 23, 60, 0.24);
}

#services-overview .svc-control:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

#services-overview .svc-carousel-shell {
  width: min(118rem, calc(100% - 3.2rem));
  margin: 0 auto;
}

#services-overview .svc-viewport {
  overflow: hidden;
  direction: ltr;
}

#services-overview .svc-container {
  display: flex;
  gap: 2.4rem;
  width: auto;
  padding: 0.6rem 0 1.2rem;
  direction: ltr;
  transform: translate3d(0, 0, 0);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

#services-overview .svc-card-link {
  flex: 0 0 calc((100% - 4.8rem) / 3);
  min-width: 0;
  margin: 0;
  direction: rtl;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

#services-overview .svc-card-link.reveal-ready {
  opacity: 0;
  transform: translateY(2.4rem);
}

#services-overview .svc-card-link.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

#services-overview .svc-card {
  height: 100%;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(24, 33, 47, 0.08);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  opacity: 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#services-overview .svc-card:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
  border-color: rgba(200, 23, 60, 0.18);
}

#services-overview .svc-card-image-wrapper {
  position: relative;
  height: 24rem;
  overflow: hidden;
}

#services-overview .svc-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

#services-overview .svc-card:hover .svc-card-image {
  transform: scale(1.06);
}

#services-overview .svc-card-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 33, 47, 0) 0%, rgba(24, 33, 47, 0.16) 100%);
}

#services-overview .svc-card-content {
  padding: 2.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.2rem;
  text-align: right;
}

#services-overview .svc-card-title {
  font-size: 2rem;
  line-height: 1.6;
  margin: 0;
  color: #18212f;
}

#services-overview .svc-card-desc {
  font-size: 1.55rem;
  color: #5b6473;
  line-height: 1.85;
  margin: 0;
}

#services-overview .svc-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.2rem;
  color: #b43c2b;
  font-size: 1.35rem;
  font-weight: 700;
}

#services-overview .svc-card-meta::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

#services-overview .svc-pagination {
  width: min(118rem, calc(100% - 3.2rem));
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

#services-overview .svc-dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(24, 33, 47, 0.16);
  border: none;
  transition: width 0.25s ease, background-color 0.25s ease;
}

#services-overview .svc-dot.is-active {
  width: 3.6rem;
  background: #c8173c;
}

[data-reveal] {
  will-change: transform, opacity;
}

@media (max-width: 1099px) {
  #services-overview .svc-card-link {
    flex-basis: calc((100% - 2.4rem) / 2);
  }
}

@media (max-width: 699px) {
  .containerr {
    width: min(100%, calc(100% - 2rem));
  }

  .header .nav__list a {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 60rem;
  }

  .hero-content {
    bottom: 2.8rem;
    border-radius: 2rem;
  }

  .hero .hero-content h1 {
    font-size: clamp(2.6rem, 4vw, 4rem);
  }

  .hero .hero-content p {
    font-size: 1.5rem;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn {
    width: 100%;
  }

  #services-overview .svc-header {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 2.4rem;
  }

  #services-overview .svc-controls {
    justify-content: flex-end;
  }

  #services-overview .svc-card-link {
    opacity: 1;
    flex-basis: 100%;
  }

  #services-overview .svc-card-image-wrapper {
    height: 22rem;
  }

  #services-overview .svc-card-content {
    padding: 1.8rem;
  }

  #services-overview .svc-intro {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  #services-overview .svc-container,
  #services-overview .svc-card-link,
  #services-overview .svc-card,
  #services-overview .svc-card-image {
    transition: none !important;
  }

  #services-overview .svc-card-link {
    opacity: 1;
    transform: none;
  }
}


/* footer */
.animated-name {
  color: inherit;
  text-decoration: none;
  background: linear-gradient(120deg, #ffffff, var(--gold-300), #ffffff);
  background-size: 220% 220%;
  /*background-clip: text;*/
  -webkit-background-clip: text;
  /*color: transparent;*/
  /*-webkit-text-fill-color: transparent;*/
  /*animation: gradientMove 2s linear infinite;*/
}

.animated-name:hover {
  animation-play-state: paused;
}

.copyright {
  color: var(--quick-silver);
  line-height: 1.5em;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.66);
}

.copyright .link {
  display: inline;
  color: var(--gold-crayola);
  text-decoration: underline;
}
