:root {
  --primary: #00b7ff;
  --primary-dark: #005f99;
  --primary-light: rgba(0, 168, 232, 0.1);
  --dark: #0b0f1a;
  --dark-light: #1c2331;
  --light: #ffffff;
  --light-dark: #f0f3f8;
  --gray: #d6dee8;
  --gray-dark: #7b8a9a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
/* Top Bar */
.top-bar {
  backdrop-filter: blur(100px);
  color: var(--light);
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 15, 26, 0.95);
}
.top-bar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.top-bar-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
}
.top-bar-info i {
  color: var(--primary);
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.live-chat-btn {
  background-color: var(--primary);
  color: var(--light);
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}
.live-chat-btn:hover {
  background-color: rgba(0, 168, 232, 0.25);
}
/* Preloader - Lottie Animation Style */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999999999999999 !important;
  transition: all 0.2s ease;
}
.lottie-container {
  position: relative;
  z-index: 2;
  text-align: center;
  transition: all 0.2s ease;
}
.preloader-text {
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Chakra Petch", sans-serif;
  margin-top: 15px;
}
.preloader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  transform: translateY(0);
  transition: transform 1s ease;
  z-index: 1;
}
.preloader.lift-up .lottie-container {
  transform: translateY(-80px);
  opacity: 0;
}
.preloader.lift-up .preloader-overlay {
  transform: translateY(-100%);
}
.preloader.hidden {
  visibility: hidden;
  opacity: 0;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: var(--dark);
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Chakra Petch", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}
.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 168, 232, 0.3);
}
.btn:active {
  transform: translateY(1px);
}
.btn-outline {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}
.btn-outline:hover {
  background: var(--light);
  color: var(--dark);
  border-color: var(--light);
}
.btn-primary {
  background: var(--primary);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--dark);
}
.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  margin-top: 10px;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}
.btn i {
  font-size: 0.9em;
}
/* Header */
header {
  position: fixed;
  top: 40px; /* Height of top bar */
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.6rem 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(2px);
}
header.scrolled {
  padding: 0.6rem 0;
  background: rgba(11, 15, 26, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo-container {
  display: flex;
  align-items: center;
  z-index: 1001;
  gap: 10px;
}
.logo-img {
  height: 130px;
  width: auto;
  transition: all 0.3s ease;
}
.logo-text {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  border-left: 2px solid rgba(0, 183, 255, 0.3);
  padding-left: 10px;
}
header.scrolled .logo-img {
  height: 130px;
  width: auto;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
nav ul li a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0.9;
}
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}
nav ul li a:hover::after,
nav ul li a:focus::after {
  width: 100%;
}
nav ul li a.active {
  color: var(--primary);
  opacity: 1;
}
nav ul li a.active::after {
  width: 100%;
}
nav ul li a:hover {
  opacity: 1;
  color: var(--primary);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}
.mobile-menu-btn:hover {
  color: var(--primary);
}
/* Hero Section with Slider */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  /* padding-top: 80px; */
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}
.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
  z-index: -1;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10rem 2rem 2rem 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 100vh;
}
.hero-grid {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.hero-left {
  flex: 1;
}
.hero-right {
  flex: 1;
  max-width: 450px;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--light);
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 0.9;
  color: var(--light);
}
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Center CTA buttons */
.cta-btn-group {
  justify-content: center;
  margin-top: 2rem;
}
/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 10;
}
.slider-arrow {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 183, 255, 0.4);
  color: var(--light);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
.slider-arrow:hover {
  background-color: var(--primary);
}
/* Hero Image */
.hero-image {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
/* About Section */
.about {
  padding: 3rem 0;
  background: var(--dark-light);
  position: relative;
}
.about-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}
.about-text {
  flex: 1;
}
.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}
.about-text p {
  margin-bottom: 1.5rem;
  color: var(--gray-dark);
}
.about-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 168, 232, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon i {
  color: var(--primary);
  font-size: 1rem;
}
.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--light);
}
.feature-text p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 0;
}
.about-image {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
/* Stats Section - FIXED */
.stats {
  padding: 2rem 0;
  background: var(--dark-light);
}
.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stat-card {
  text-align: center;
  padding: 1.5rem 1rem; /* Reduced padding */
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 3px solid rgba(0, 168, 232, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 160px; /* Added min-height */
  overflow: hidden; /* Added overflow */
}
.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 168, 232, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.stat-number {
  font-size: 2.2rem; /* Reduced font size */
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: "Chakra Petch", sans-serif;
  line-height: 1.1; /* Added line-height */
  word-wrap: break-word; /* Added word-wrap */
  overflow-wrap: break-word; /* Added overflow-wrap */
  width: 100%; /* Added width */
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light);
  margin-top: 0.5rem; /* Added margin-top */
}
/* Services Section - with Parallax Effect */
.services {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(11, 15, 26, 0.85), rgba(11, 15, 26, 0)),
    url("../img/services-background.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.section-header {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.section-title {
  position: relative;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--light);
}
.section-title h2 span {
  color: var(--primary);
}
.section-title p {
  max-width: 500px;
  opacity: 0.8;
  color: var(--light);
}
.services-with-estimator {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.services-tabs-container {
  flex: 1;
}
.services-tabs {
  display: flex;
  flex-direction: column;
  background: var(--dark-light);
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(0, 168, 232, 0.3);
}
.services-tabs-nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  overflow-x: auto;
  max-height: none;
}
.service-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}
.service-tab-btn:hover {
  background: rgba(0, 168, 232, 0.1);
}
.service-tab-btn.active {
  background: rgba(0, 168, 232, 0.15);
  border-bottom-color: var(--primary);
}
.service-tab-btn i {
  color: var(--primary);
  font-size: 1.8rem;
}
.service-tab-btn h4 {
  font-size: 1rem;
  margin: 0;
  color: var(--light);
}
.services-tabs-content {
  padding: 2rem;
  background: rgba(28, 35, 49, 0.9);
}
.service-tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}
.service-tab-pane.active {
  display: block;
}
.service-tab-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.service-tab-image {
  flex: 0 0 45%;
  border-radius: 8px;
  overflow: hidden;
}
.service-tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-tab-info {
  flex: 1;
}
.service-tab-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--light);
}
.service-tab-info p {
  margin-bottom: 1.5rem;
  color: var(--gray-dark);
}
.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--gray-dark);
}
.service-features li i {
  color: var(--primary);
}
.section-pre-title {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-dark);
}
/* Estimator Sidebar */
.estimator-sidebar {
  width: 380px;
  flex-shrink: 0;
}
.cost-estimator {
  background: rgba(28, 35, 49, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 2rem;
  border: 3px solid rgba(0, 168, 232, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.cost-estimator h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--light);
  font-weight: 500;
}
.form-group select {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--light);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.12);
}
.form-group select option {
  background: var(--dark-light);
  color: var(--light);
}
.estimate-result {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 168, 232, 0.15);
  border-radius: 12px;
}
.estimate-result.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
.estimate-details {
  margin-bottom: 1.5rem;
}
.estimate-details h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.estimate-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.estimate-item:last-child {
  border-bottom: none;
}
.estimate-item span:first-child {
  color: var(--gray-dark);
}
.estimate-item span:last-child {
  color: var(--light);
  font-weight: 500;
}
.estimate-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--light);
  background: rgba(255, 0, 0, 0.224);
  padding: 0.8rem;
  border-radius: 8px;
}
/* Testimonials Section */
.testimonials {
  padding: 3rem 0;
  background: var(--dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--dark-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 168, 232, 0.2);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--light);
}
.author-info p {
  font-size: 0.85rem;
  color: var(--gray-dark);
}
.testimonial-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.rating {
  color: #ffc107;
  margin-bottom: 1rem;
  order: -1;
}
.rating i {
  margin-right: 2px;
}
.testimonial-content p {
  font-style: italic;
  margin-bottom: 0;
  color: var(--gray-dark);
  position: relative;
  flex-grow: 1;
}
.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: bold;
}
/* Review Action Buttons */
.review-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
/* Gallery Section */
.gallery {
  padding: 3rem 0;
  background: var(--dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-caption {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}
.gallery-caption h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--light);
}
.gallery-caption p {
  font-size: 0.8rem;
  color: var(--gray-dark);
}
/* Gallery Button */
.gallery-btn-container {
  text-align: center;
  margin-top: 2rem;
}
.hidden-gallery-item {
  display: none;
}
/* CTA Section - Updated with Parallax Effect */
.cta {
  padding: 3rem 0;
  text-align: center;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(11, 15, 26, 0.85), rgba(11, 15, 26, 0)),
    url("../img/cta-background.jpg") no-repeat center center/cover;
  background-attachment: scroll;
}
/* Add fixed background for desktop */
@media (min-width: 768px) {
  .cta {
    background-attachment: fixed;
  }
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.2), transparent);
  z-index: 0;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}
.cta p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light);
}
/* Location Section */
.location {
  padding: 3rem 0;
  background: var(--dark-light);
}
.location-container {
  display: flex;
  gap: 3rem;
}
.location-map {
  flex: 1;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.location-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}
.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 168, 232, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon i {
  color: var(--primary);
  font-size: 1rem;
}
.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--light);
}
.info-text p {
  color: var(--gray-dark);
  font-size: 0.95rem;
}
.info-text a {
  color: var(--gray-dark);
  transition: color 0.3s ease;
}
.info-text a:hover {
  color: var(--primary);
}
/* Footer */
footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: var(--light);
}
.footer-col h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--primary);
  bottom: -8px;
  left: 0;
}
.footer-about p {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}
.footer-logo img {
  margin-bottom: 1.5rem;
  width: auto;
  height: 125px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 1rem;
}
.footer-links a {
  color: var(--gray-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-links a i {
  font-size: 0.8rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}
.footer-links a:hover i {
  transform: translateX(3px);
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dark-light);
  border-radius: 8px;
  color: var(--light);
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}
.contact-info-item i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-info-item a {
  color: var(--gray-dark);
  transition: color 0.3s ease;
}
.contact-info-item a:hover {
  color: var(--primary);
}
.copyright {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--gray-dark);
  font-size: 0.85rem;
}
.copyright a {
  color: var(--primary);
  transition: color 0.3s ease;
  text-decoration: none;
}
.copyright a:hover {
  color: var(--primary-dark);
}
.copyright p {
  margin: 0;
}
/* Floating Buttons */
.floating-call-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  transition: all 0.3s ease;
}
.floating-call-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-5px) scale(1.1);
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate {
  animation: fadeIn 1s ease forwards;
}
/* Mobile Styles */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero-grid {
    gap: 2rem;
  }
  .estimator-sidebar {
    width: 300px;
  }
  .services-tabs-nav {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-grid {
    flex-direction: column;
  }
  .hero-right {
    max-width: 100%;
  }
  .about-content {
    flex-direction: column;
  }
  .about-image {
    min-height: 400px;
    width: 100%;
    order: -1;
  }
  .location-container {
    flex-direction: column;
  }
  .location-map {
    height: 400px;
  }
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  .services-with-estimator {
    flex-direction: column;
  }
  .estimator-sidebar {
    width: 100%;
    order: -1;
    margin-bottom: 2rem;
  }
  .service-tab-content {
    flex-direction: column;
  }
  .service-tab-image {
    flex: none;
    width: 100%;
    height: 250px;
  }
}
@media (max-width: 768px) {
  /* Hide top bar on smaller screens */
  .top-bar {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  header {
    top: 0;
  }
  .hero {
    padding-top: 80px;
  }
  /* Hide slider buttons on mobile and enable swipe */
  .slider-controls {
    display: none;
  }
  /* Add touch scrolling for slider */
  .hero-slider {
    touch-action: pan-y;
  }
  .hero-slide {
    touch-action: pan-y pinch-zoom;
  }
  /* Hide customer support section on smaller screens */
  .hero-right {
    display: none;
  }
  /* Adjust hero left content to take full width */
  .hero-left {
    width: 100%;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 170px;
    height: 100vh;
    background: var(--dark-light);
    padding: 10rem 2rem 2rem;
    transition: all 0.4s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
  }
  nav.active {
    right: 0;
  }
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  nav ul li a {
    color: var(--light);
    font-size: 1rem;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .btn-group {
    flex-direction: column;
  }
  .btn-outline {
    margin-left: 0;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .floating-call-btn {
    bottom: 20px;
    left: 20px;
    width: 64px;
    height: 64px;
    font-size: 1.2rem;
  }
  /* Mobile styles for Services Parallax */
  .services {
    background-attachment: scroll;
  }
  .services-tabs-nav {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  /* Review actions buttons on mobile */
  .review-actions {
    flex-direction: column;
    align-items: center;
  }
  /* Hide logo text on mobile */
  .logo-text {
    display: none;
  }
}
@media (max-width: 576px) {
  .top-bar-info {
    font-size: 0.75rem;
  }
  .live-chat-btn {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
  header {
    /* background: rgba(11, 15, 26, 0.95); */
    top: 0;
  }
  .hero {
    padding-top: 80px;
  }
  .header-container {
    padding: 0 1rem;
  }
  .hero {
    min-height: auto;
    padding: 0px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero h1 span::after {
    height: 5px;
    bottom: 5px;
  }
  .hero-content {
    padding: 10rem 1rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .section-container {
    padding: 0 1.5rem;
  }
  .service-card {
    min-width: 100%;
  }
  .footer-col {
    min-width: 100%;
  }
  .copyright {
    flex-direction: column;
    gap: 0.5rem;
  }
  .service-tab-btn {
    padding: 0.8rem;
  }
  .service-tab-btn i {
    font-size: 1.5rem;
  }
  .service-tab-btn h4 {
    font-size: 0.9rem;
  }
  .services-tabs-content {
    padding: 1.5rem;
  }
  .services-tabs-nav {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.3rem;
  }
  /* Additional Stats Section fixes for small screens */
  .stat-card {
    padding: 1rem 0.8rem;
    min-height: 140px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
}
