/*********Header************/
/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #000 0%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    animation: pulse 1.8s infinite ease-in-out;
}

.house-icon i {
    font-size: 60px;
    color: #0cbb8d;
    background: linear-gradient(145deg, #0cbb8d, #205440);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.loading-text {
    color: #fff;
    font-size: 20px;
    letter-spacing: 1.2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Loader Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon i {
    font-size: 28px;
    color: #0cbb8d;
}

.brand-text {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    font-family: 'Segoe UI', sans-serif;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-link {
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0cbb8d;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 100%;
    background: #0cbb8d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Quote Button */
.quote-btn {
    background: linear-gradient(135deg, #0cbb8d, #205440);
    color: white;
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(28, 80, 60, 0.3);
}

/* Hamburger Menu for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 25px;
    background-color: #ffffff;
    border-radius: 2px;
    display: hide;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 30px;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 10px;
        flex-direction: column;
        gap: 16px;
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}


/************Hero**************/

.hero-content {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  align-items: flex-start;
  color: #222;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 180px;
}

/* Left content area */
.hero-text {
  flex: 1;
  max-width: 600px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #205440;
  margin-bottom: 18px;
}

.hero-badge i {
  color: #205440;
  font-size: 1.2rem;
}

/* Title */
.hero-title {
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #111;
}

.title-line {
  display: block;
}

.title-highlight {
  display: block;
  color: #205440;
}

/* Description */
.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #555;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #205440;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 600;
}

/* Action buttons */
.hero-actions {
  display: flex;
  gap: 20px;
}

.cta-primary,
.cta-secondary {
  cursor: pointer;
  font-weight: 700;
  border-radius: 30px;
  padding: 14px 32px;
  font-size: 1rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  user-select: none;
}

.cta-primary {
  background-color: #205440;
  color: #fff;
}

.cta-primary:hover {
  background-color: #205440;
}

.cta-secondary {
  background-color: transparent;
  border: 2px solid #205440;
  color: #205440;
}

.cta-secondary:hover {
  background-color: #205440;
  color: #fff;
}

/* Right side - hero visual container */
.hero-visual {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  perspective: 1000px;
}

/* Floating cards styles */
.floating-cards {
  display: contents; /* so grid applies to project-cards directly */
}

.project-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatUpDown 6s ease-in-out infinite;
}

.project-card:nth-child(2) {
  animation-delay: 1.5s;
}
.project-card:nth-child(3) {
  animation-delay: 3s;
}
.project-card:nth-child(4) {
  animation-delay: 4.5s;
}

.project-card:hover {
  transform: translateY(-15px) scale(1.07);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.project-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.card-content {
  padding: 16px 14px;
  flex-grow: 1;
}

.card-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #222;
}

.card-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Floating animation keyframes */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
    filter: drop-shadow(0 5px 8px rgba(0,0,0,0.1));
  }
  50% {
    transform: translateY(-12px) rotateX(3deg) rotateY(3deg);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-visual {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 15px;
    margin-top: 30px;
  }
}

/***************About*************/

/* Container basics */
.about {
  padding: 60px 20px;
  background-color: #e3fbf3;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid layout: two columns */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left content styling */
.about-content {
  max-width: 550px;
}

.section-tag {
  font-size: 0.9rem;
  font-weight: 600;
  color: #205440;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
}

.section-title .highlight {
  color: #205440;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

/* Features grid */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  color: #205440;
  flex-shrink: 0;
}

.feature-text h4 {
  margin: 0 0 5px 0;
  font-weight: 700;
  color: #222;
}

.feature-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}

/* Button styling */
.about-actions .btn-outline {
  background: transparent;
  border: 2px solid #205440;
  color: #205440;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-actions .btn-outline:hover,
.about-actions .btn-outline:focus {
  background-color: #205440;
  color: white;
  outline: none;
}

/* Right visual section */
.about-visual {
  position: relative;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image stack container */
.image-stack {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 350px;
}

/* Main image */
.stack-item.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: block;
}

/* Overlay image */
.stack-item.overlay-image {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 180px;
  height: 180px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 5px solid white;
}

.stack-item.overlay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Experience badge */
.experience-badge {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #205440;
  color: white;
  padding: 18px 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  font-weight: 700;
  user-select: none;
  width: 140px;
}

.badge-number {
  font-size: 2.2rem;
  line-height: 1;
}

.badge-text {
  font-size: 0.9rem;
  margin-top: 3px;
}

/* Responsive styles */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content {
    max-width: 100%;
    text-align: center;
  }

  .image-stack {
    max-width: 320px;
    height: 250px;
    margin: 0 auto;
  }

  .stack-item.overlay-image {
    top: 15%;
    right: 5%;
    width: 140px;
    height: 140px;
  }

  .experience-badge {
    position: static;
    transform: none;
    margin: 20px auto 0 auto;
    width: auto;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .feature-text h4 {
    font-size: 1rem;
  }

  .feature-text p {
    font-size: 0.9rem;
  }

  .about-actions .btn-outline {
    width: 100%;
    padding: 14px 0;
  }
}

/********Services********/

/* General section styling */
.services {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-tag {
  font-weight: 600;
  color: #205440;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.section-title .highlight {
  color: #205440;
}

.section-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Tabs container */
.services-tabs {
  max-width: 100%;
}

/* Tab buttons */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 2px solid #205440;
  color: #205440;
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  min-width: 120px;
  text-align: center;
}

.tab-btn:hover,
.tab-btn:focus {
  background-color: #205440;
  color: #fff;
  outline: none;
}

.tab-btn.active {
  background-color: #205440;
  color: white;
  pointer-events: none;
}

/* Tab content panels */
.tab-content {
  position: relative;
}

/* Hide inactive tabs */
.tab-panel {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.tab-panel.active {
  display: block;
}

/* Fade in animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Individual service card */
.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Premium service highlight */
.service-card.premium {
  border: 2px solid #205440;
}

/* Service icon */
.service-icon {
  font-size: 2.8rem;
  color: #205440;
  margin-bottom: 20px;
  width: 50px;
  text-align: center;
}

/* Service title */
.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

/* Service description */
.service-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 0;
}

/* Features list */
.service-features {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-features li {
  margin-bottom: 6px;
}

/* Price styling */
.service-price {
  margin-top: auto;
  font-weight: 700;
  font-size: 1.1rem;
  color: #205440;
  text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tab-buttons {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tab-btn {
    min-width: 100%;
    padding: 12px 0;
    font-size: 1.1rem;
  }
}

/***********Our Process**********/
/* Container */
.process {
  padding: 60px 20px;
  background: #e3fbf3;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.process .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section Header */
.process .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.process .section-tag {
  font-weight: 700;
  color: #0cbb8d;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.process .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}

.process .section-title .highlight {
  color: #0cbb8d;
}

/* Timeline Container */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  margin-top: 20px;
  padding-left: 40px;
  border-left: 4px solid #0cbb8d;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.timeline-item:hover {
  background-color: #e3fbf3;
  border-radius: 8px;
}

/* Number Circle */
.timeline-number {
  position: absolute;
  left: -40px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #0cbb8d;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(28, 80, 60, 0.5);
}

/* Timeline Content */
.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.timeline-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Features Tags */
.timeline-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.timeline-features span {
  background-color: #a7e2d3;
  color: #0cbb8d;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  user-select: none;
}

/* Active state */
.timeline-item.active .timeline-number {
  background-color: #222;
  box-shadow: 0 0 12px rgba(34, 34, 34, 0.7);
}

.timeline-item.active {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .process-timeline {
    padding-left: 20px;
    border-left-width: 3px;
  }

  .timeline-number {
    left: -30px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .process .section-title {
    font-size: 2rem;
  }
}

/*********Why choose Us***************/

.why-choose {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-choose .container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-choose-grid {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
}

/* Content Side */
.why-choose-content {
  flex: 1 1 500px;
}

.why-choose-content .section-tag {
  font-weight: 700;
  color: #0cbb8d;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.why-choose-content .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
}

.why-choose-content .section-title .highlight {
  color: #0cbb8d;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  color: #0cbb8d;
  font-size: 2rem;
  min-width: 40px;
  margin-top: 4px;
}

.benefit-content h4 {
  margin: 0 0 6px 0;
  font-size: 1.2rem;
  color: #333;
}

.benefit-content p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.4;
}

/* Visual Side */
.why-choose-visual {
  flex: 1 1 350px;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-card {
  display: flex;
  align-items: center;
  background: #a7e2d3;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(28, 80, 60,0.15);
  transition: transform 0.3s ease;
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  color: #0cbb8d;
  font-size: 2.5rem;
  margin-right: 15px;
}

.stat-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  line-height: 1;
}

.stat-text {
  font-size: 1rem;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {
  .why-choose-grid {
    flex-direction: column;
  }

  .why-choose-visual {
    margin-top: 40px;
  }

  .stats-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .why-choose-content .section-title {
    font-size: 2rem;
  }

  .stat-card {
    padding: 15px;
  }

  .stat-icon {
    font-size: 2rem;
    margin-right: 10px;
  }

  .stat-num {
    font-size: 1.8rem;
  }
}

/*************Warranty**********/

.warranty {
  padding: 60px 20px;
  background-color: #f9fafb;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.warranty .container {
  max-width: 1100px;
  margin: 0 auto;
}

.warranty-hero {
  text-align: center;
}

.warranty-content .section-tag {
  color: #0cbb8d;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.warranty-content .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.warranty-content .section-title .highlight {
  color: #0cbb8d;
}

.warranty-content .section-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.warranty-card {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  text-align: center;
}

.warranty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.warranty-icon {
  font-size: 3rem;
  color: #0cbb8d;
  margin-bottom: 15px;
}

.warranty-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #222;
}

.warranty-duration {
  font-weight: 700;
  font-size: 1.2rem;
  color: #0cbb8d;
  margin-bottom: 12px;
}

.warranty-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.4;
}

.warranty-actions {
  text-align: center;
}

.btn-primary {
  background-color: #0cbb8d;
  border: none;
  padding: 14px 32px;
  color: white;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
  box-shadow: 0 6px 12px rgba(28, 80, 60,0.4);
}

.btn-primary:hover {
  background-color: #0cbb8d;
}

/* Modal styling (example) */
#warrantyModal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

#warrantyModal.active {
  display: flex;
}

#warrantyModal .modal-content {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  position: relative;
}

#warrantyModal .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

#warrantyModal .close-btn:hover {
  color: #0cbb8d;
}


/***********testimonial************/
.testimonials {
  padding: 60px 20px;
  background-color: #e3fbf3;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.testimonials .section-header p {
  font-size: 1.1rem;
  color: #666;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial .stars {
  color: #0cbb8d; /* golden color */
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 25px;
  flex-grow: 1;
  color: #555;
}

.client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0cbb8d;
}

.client h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.client span {
  font-size: 0.9rem;
  color: #888;
}

/* Responsive for tablets */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}


/*********Contact**********/

/* Contact Section */
.contact {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.contact .container {
  max-width: 900px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #222;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* Contact Info */
.contact-info {
  flex: 1 1 300px;
  max-width: 350px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.contact-item i {
  font-size: 28px;
  color: #0cbb8d;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  color: #222;
}

.contact-item p {
  margin: 0;
  color: #555;
  line-height: 1.4;
}

/* Contact Form */
.contact-form {
  flex: 1 1 400px;
  max-width: 500px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.8px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0cbb8d;
  outline: none;
}

.btn-primary {
  background-color: #0cbb8d;
  color: #fff;
  padding: 14px 0;
  font-size: 1.15rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btn-primary:hover {
  background-color: #0cbb8d;
}

/* Modal */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background-color: #fff;
  border-radius: 15px;
  max-width: 420px;
  margin: auto;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  text-align: center;
}

.modal-content .close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-content .close:hover {
  color: #0cbb8d;
}

.confirmation-content i {
  font-size: 56px;
  color: #28a745;
  margin-bottom: 15px;
}

.confirmation-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.confirmation-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
}

/*********Footer*********/

/* Footer Styles */
.footer {
  background-color: #222;
  color: #eee;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-section .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0cbb8d;
  margin-bottom: 15px;
}

.footer-section .logo i {
  font-size: 1.8rem;
}

.footer-section p {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #0cbb8d;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #0cbb8d;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #eee;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #0cbb8d;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 15px;
}

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.6);
  padding: 40px 20px;
  box-sizing: border-box;
}

.modal-content {
  background-color: #fff;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px 25px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.modal-content h2 {
  margin-top: 0;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
}

.modal-content .modal-text {
  color: #444;
  line-height: 1.6;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-content .modal-text h3 {
  margin-top: 20px;
  color: #0cbb8d;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
}

.close:hover {
  color: #0cbb8d;
}

/* Form Styles inside Modal */
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0cbb8d;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-primary {
  background-color: #0cbb8d;
  border: none;
  color: #222;
  font-weight: 700;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.btn-primary:hover {
  background-color: #0cbb8d;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  cursor: pointer;
  font-size: 14px;
  color: #333;
  user-select: none;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .form-row {
    flex-direction: column;
  }
}












