/************Home Page**************/


/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Animation classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

.bounce {
    animation: bounce 2s infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Loading states */
body {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* Form error states */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.error-message {
    color: #FF6B6B;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Header scroll effect */
.header {
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Lazy loading images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #4ECDC4;
    outline-offset: 2px;
}

button:focus,
.cta-button:focus,
.nav-link:focus {
    outline: 2px solid #FFE66D;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-button,
    .modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .comic-border {
        border-width: 4px;
    }
    
    .service-card,
    .blog-card,
    .team-member {
        border-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
}

/* Header and Navbar */
.header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  width: 100%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-svg {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #FF6B6B;
}

.nav-icon {
  width: 20px;
  height: 20px;
}

/* CTA Button */
.cta-button {
  background-color: #FF6B6B;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #e05555;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .cta-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ========== Hero Section ========== */
.hero {
  background: linear-gradient(135deg, #e2f7f6 0%, #e2f7f6 100%);
  padding: 4rem 2rem;
  height: 91vh;
}

/* CSS to hide content on screens smaller than 768px (mobile) */
.hide-on-mobile {
  display: block;
}

@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}
@media (max-width: 767px) {
  #onmore {
    display: none !important;
  }
}
  @media (max-width: 767px) {
    #onmore {
      display: none !important;
    }
  }

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.hero-content {
  flex: 1 1 500px;
}

.hero-title {
  font-size: 2.8rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title .highlight {
  color: #FF6B6B;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background-color: #FF6B6B;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #e25555;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #FF6B6B;
  color: #FF6B6B;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #FF6B6B;
  color: white;
}

.hero-illustration {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animated-house {
  width: 100%;
  max-width: 350px;
  animation: float 6s ease-in-out infinite;
}

/* Optional animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ========== Features Section ========== */
.features {
  background-color: #fff;
  padding: 4rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: #fafafa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 60px;
  height: 60px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature-card p {
  font-size: 1rem;
  color: #666;
}
.about-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FF6B6B;
  transition: transform 0.3s ease, color 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
  color: #4ECDC4;
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #555;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-illustration {
    margin-top: 2rem;
  }
}

/* ========== About Section ========== */
.about {
  background-color: #fefefe;
  padding: 4rem 2rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.about-text {
  flex: 1 1 500px;
}

.colorful-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FF6B6B;
}

.about-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #4ECDC4;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: #777;
}

.about-illustration {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about-illustration svg {
  width: 100%;
  max-width: 400px;
}

/* ========== Services Section ========== */
.services {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
}

.services .section-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-illustration {
  margin-bottom: 1rem;
}

.service-illustration svg {
  width: 100%;
  max-width: 200px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.service-btn {
  background-color: #FF6B6B;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service-btn:hover {
  background-color: #e25555;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }
}

/* ===== Fade In Animation ===== */
.about-text,
.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Button Ripple Effect ===== */
.service-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  animation: ripple-animation 0.6s linear;
  transform: scale(0);
  pointer-events: none;
  z-index: 0;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


/* ========== How We Work Section ========== */
.how-we-work {
  background-color: #fff;
  padding: 4rem 2rem;
}

.how-we-work .section-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.step-item {
  background-color: #fdfdfd;
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-6px);
}

.step-illustration {
  margin-bottom: 1rem;
}

.step-illustration svg {
  width: 80px;
  height: 80px;
}

.step-item h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #333;
}

.step-item p {
  color: #666;
  font-size: 1rem;
}

/* ========== Testimonials Section ========== */
.testimonials {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
}

.testimonials .section-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-bubble {
  position: relative;
  background-color: #fff;
  padding: 1.5rem 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.bubble-content {
  position: relative;
  z-index: 1;
}

.bubble-content p {
  font-style: italic;
  color: #444;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 0.95rem;
  color: #555;
}

.testimonial-author strong {
  display: block;
  color: #333;
}

.bubble-tail {
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  transform: rotate(45deg);
  box-shadow: -2px 2px 6px rgba(0,0,0,0.05);
}

/* ========== Blog Preview Section ========== */
.blog-preview {
  background-color: #fff;
  padding: 4rem 2rem;
}

.blog-preview .section-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background-color: #fefefe;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-image svg {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.blog-content h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.blog-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

.read-more {
  font-weight: 600;
  color: #FF6B6B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #e25555;
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 768px) {
  .process-steps,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .bubble-tail {
    left: 20px;
  }

  .step-illustration svg {
    width: 60px;
    height: 60px;
  }
}

/* Step Item Scroll Animation */
.step-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.step-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonials Animation */
.testimonial-bubble {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.bubble-visible {
  opacity: 1;
  transform: scale(1);
}

/* Blog Card Hover Effect (optional JS enhancement) */
.blog-card.hovered {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

/********************Footer**********************/

/* Footer Base */
.footer {
  position: relative;
  background-color: #0a1e24; /* dark navy background */
  color: #fff;
  overflow: hidden;
  padding: 60px 0 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
}

/* Blueprint background */
.footer-blueprint {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1200px;
  max-width: 100vw;
  height: 400px;
  transform: translateX(-50%);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Footer Content container */
.footer-content {
  position: relative;
  z-index: 10;
}

/* Container to center content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer grid layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Each section */
.footer-section h3,
.footer-section h4 {
  color: #4ECDC4;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-section p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #ccc;
}

/* Lists inside footer */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #FF6B6B;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  color: #4ECDC4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  color: #FF6B6B;
}

/* Contact info styling */
.contact-info p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #ccc;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer-blueprint {
    height: 250px;
  }

  .footer-grid {
    gap: 30px;
  }
}

/************************About Page*****************/
/* Reset some basics */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  margin: 0;
  background: #fff;
}

/* PAGE HERO SECTION */
.page-hero {
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  background: #f9f6f2;
  gap: 40px;
  flex-wrap: wrap;
}

.page-hero-content {
  padding-left: 160px;
  max-width: 900px;
}

.page-hero h1 {
  font-size: 3rem;
  color: #FF6B6B;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-hero p {
  font-size: 1.25rem;
  color: #555;
}

/* Hero Illustration */
.hero-illustration {
  flex: 1;
  max-width: 500px;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

/* BREADCRUMB NAV */
.breadcrumb {
  background-color: #eee;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #666;
  user-select: none;
}

.breadcrumb .container {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb a {
  color: #4ECDC4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #FF6B6B;
}

/* ABOUT DETAILED SECTION */
.about-detailed {
  padding: 60px 20px;
  background: #fff;
}

.about-detailed .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
}

.about-text {
  flex: 1 1 400px;
}

.colorful-title {
  color: #4ECDC4;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.founder-quote {
  margin-top: 30px;
  font-style: italic;
  color: #777;
  border-left: 4px solid #FF6B6B;
  padding-left: 20px;
}

.founder-quote blockquote {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}

.founder-quote cite {
  display: block;
  font-size: 0.9rem;
  text-align: right;
  color: #333;
  font-weight: 600;
}

/* About Visual - Illustration */
.about-visual {
  flex: 1 1 400px;
  max-width: 400px;
}

.team-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .page-hero {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .about-grid {
    flex-direction: column;
  }
  
  .about-visual,
  .about-text {
    max-width: 100%;
  }
}
.about-detailed {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-detailed.visible {
  opacity: 1;
  transform: translateY(0);
}

/* General container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  color: #4ECDC4;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

/* WHY CHOOSE US */

.why-choose-us {
  background: #f9f9f9;
  padding: 60px 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.reason-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.05);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-10px);
}

.reason-icon {
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
}

.reason-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.reason-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #FF6B6B;
  font-weight: 700;
}

.reason-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

/* MISSION / VISION */

.mission-vision {
  padding: 60px 0;
  background: #fff;
}

.mission-vision-grid {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.mission-card,
.vision-card {
  flex: 1 1 400px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  box-shadow: 0 6px 25px rgb(0 0 0 / 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.card-header h3 {
  font-size: 1.6rem;
  color: #4ECDC4;
  margin: 0;
  font-weight: 700;
}

.mission-icon,
.vision-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.mission-card p,
.vision-card p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* TESTIMONIALS */

.testimonials {
  background: #f0f8f9;
  padding: 60px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-bubble {
  background: #fff;
  border-radius: 20px 20px 20px 5px;
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.1);
  position: relative;
  padding: 30px 25px 25px 25px;
  font-style: italic;
  color: #555;
  transition: transform 0.3s ease;
}

.testimonial-bubble:hover {
  transform: translateY(-10px);
}

.bubble-content p {
  margin: 0 0 20px 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.testimonial-author {
  font-style: normal;
  color: #333;
  font-weight: 700;
}

.testimonial-author span {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  color: #777;
  margin-top: 4px;
}

/* Bubble tail */
.bubble-tail {
  width: 25px;
  height: 25px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 20px;
  transform: translateY(100%) rotate(45deg);
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.1);
  border-radius: 3px;
}

/* Responsive */

@media (max-width: 900px) {
  .mission-vision-grid {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .reasons-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/***************************************Services Page********************************** */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  color: #4ECDC4;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

/* ALL SERVICES */

.all-services {
  background: #fff;
  padding: 60px 0;
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card-detailed {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-detailed:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.15);
}

.service-illustration-large {
  flex-shrink: 0;
  background: white;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: center;
}

.service-illustration-large svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.service-content {
  padding: 25px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.8rem;
  color: #FF6B6B;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-content p {
  flex-grow: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #555;
}

.service-features {
  list-style: inside disc;
  margin-bottom: 25px;
  color: #666;
  font-size: 1rem;
  padding-left: 10px;
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #4ECDC4;
}

.service-btn-detailed {
  align-self: start;
  padding: 12px 30px;
  border: none;
  background-color: #4ECDC4;
  color: white;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.service-btn-detailed:hover {
  background-color: #3aa99e;
}

/* HOW WE WORK */

.how-we-work {
  background: #f0f8f9;
  padding: 60px 0;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.timeline-item {
  display: flex;
  gap: 30px;
  align-items: center;
  background: white;
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.07);
  transition: box-shadow 0.3s ease;
}

.timeline-item:hover {
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.12);
}

.timeline-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #FF6B6B;
  color: white;
  font-weight: 700;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.timeline-content {
  flex-grow: 1;
}

.timeline-content h3 {
  margin: 0 0 12px 0;
  color: #4ECDC4;
  font-weight: 700;
  font-size: 1.4rem;
}

.timeline-content p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.timeline-illustration {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.timeline-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive */

@media (max-width: 900px) {
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-illustration {
    width: 80px;
    height: 80px;
    margin-top: 15px;
  }
}

@media (max-width: 600px) {
  .services-grid-detailed {
    grid-template-columns: 1fr;
  }

  .service-card-detailed {
    flex-direction: column;
  }
}

.service-card-detailed,
.timeline-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Section Wrapper */
.home-warranty {
  background: #fff;
  padding: 60px 0;
}

/* Warranty Content Flex Layout */
.warranty-content {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Text Section */
.warranty-text {
  flex: 1 1 450px;
  min-width: 300px;
}

/* Title with color gradient */
.colorful-title {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #FFE66D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

/* Paragraph */
.warranty-text p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

/* Warranty Plans Grid */
.warranty-plans {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

/* Plan Cards */
.plan-card {
  background: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 25px 30px;
  flex: 1 1 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Featured Plan */

.plan-card.featured {
  
  background: #4ECDC4;
  color: white;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
  cursor: pointer;
}

.plan-card.featured:hover {
  background: #3aa99e;
  box-shadow: 0 14px 40px rgba(58, 169, 158, 0.6);
}

/* Plan Title */
.plan-card h3 {
  margin-top: 0;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Plan Price */
.plan-price {
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #FF6B6B;
}

.plan-card.featured .plan-price {
  color: #FFE66D;
}

/* Plan Features List */
.plan-card ul {
  list-style: inside disc;
  color: inherit;
  padding-left: 12px;
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.5;
}

/* Warranty Illustration */
.warranty-illustration {
  flex: 1 1 350px;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.warranty-illustration svg {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.warranty-illustration svg:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Warranty Benefits Section */
.warranty-benefits {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.warranty-benefits h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #4ECDC4;
  margin-bottom: 40px;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Each Benefit Item */
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 140px;
  color: #333;
  cursor: default;
  transition: color 0.3s ease;
}

.benefit-item:hover {
  color: #FF6B6B;
}

/* Benefit Icons */
.benefit-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.2);
}

/* Responsive */

@media (max-width: 900px) {
  .warranty-content {
    flex-direction: column;
    gap: 40px;
  }

  .warranty-illustration {
    order: -1;
  }

  .warranty-plans {
    flex-direction: column;
  }

  .plan-card {
    flex: none;
    width: 100%;
  }

  .benefits-grid {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .colorful-title {
    font-size: 2rem;
  }

  .warranty-benefits h3 {
    font-size: 1.6rem;
  }
}

.home-warranty {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

.plan-card.selected {
  box-shadow: 0 0 30px 4px #FF6B6B;
  transform: translateY(-12px) scale(1.05);
}

/**********************Blog Page******************/

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Blog Section */
.blog-section {
  padding: 60px 0;
  background: #fff;
  color: #333;
}

/* Blog Grid Main */
.blog-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: #f9f9f9;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Featured Card */
.blog-card.featured {
  grid-column: span 2;
  background: #FFFAE6;
  box-shadow: 0 12px 40px rgba(255, 182, 70, 0.4);
}

/* Comic Style Border */
.comic-border {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 4px dashed #FF6B6B;
  border-radius: 18px;
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.blog-card.featured .comic-border {
  border-color: #4ECDC4;
}

/* Blog Image Container */
.blog-image {
  position: relative;
  flex-shrink: 0;
}

.blog-image svg {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 4px solid #FF6B6B;
  border-radius: 18px 18px 0 0;
  transition: filter 0.3s ease;
}

.blog-card.featured .blog-image svg {
  border-color: #4ECDC4;
}

.blog-card:hover .blog-image svg {
  filter: brightness(1.1);
}

/* Blog Content */
.blog-content {
  padding: 20px 25px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Blog Meta */
.blog-meta {
  font-size: 0.9rem;
  color: #888;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-date {
  color: #FF6B6B;
}

.blog-category {
  color: #4ECDC4;
}

/* Blog Titles */
.blog-card.featured h2 {
  font-size: 1.8rem;
  margin: 0 0 15px;
  color: #333;
  font-weight: 800;
  line-height: 1.3;
}

.blog-card:not(.featured) h3 {
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: #333;
  font-weight: 700;
  line-height: 1.3;
}

/* Blog Description */
.blog-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  flex-grow: 1;
  margin-bottom: 18px;
}

/* Read More Button */
.read-more-btn {
  align-self: flex-start;
  background-color: #FF6B6B;
  color: white;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.read-more-btn:hover {
  background-color: #e65050;
  box-shadow: 0 6px 14px rgba(230, 80, 80, 0.4);
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .blog-card.featured {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .blog-content p {
    font-size: 0.95rem;
  }

  .blog-card.featured h2 {
    font-size: 1.5rem;
  }

  .blog-card:not(.featured) h3 {
    font-size: 1.2rem;
  }
}

.blog-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-card.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-card.active {
  box-shadow: 0 0 35px 6px #4ECDC4;
  transform: translateY(-10px) scale(1.03);
  z-index: 5;
}

/******************Quote Page********************/

/* Basic Reset */
* {
  box-sizing: border-box;
}

.quote-section {
  background: #f9fdfd;
  padding: 60px 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c2c2c;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.quote-content {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Left Text Area */
.quote-text {
  flex: 1 1 400px;
  max-width: 500px;
}

.colorful-title {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.quote-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
}

/* Contact Info */
.contact-info-quick {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  color: #444;
}

.contact-item strong {
  display: block;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.contact-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: #4ecdc4;
  transition: color 0.3s ease;
}

.contact-item:hover .contact-icon {
  color: #ff6b6b;
}

/* Quote Form Container */
.quote-form-container {
  flex: 1 1 400px;
  max-width: 500px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(78, 205, 196, 0.15);
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
}

.quote-form h3 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

/* Form Controls */
.form-group {
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #4ecdc4;
  box-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

/* Submit Button */
.submit-btn {
  background-color: #4ecdc4;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 15px 0;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(78, 205, 196, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: #3bb3a8;
  box-shadow: 0 9px 27px rgba(59, 179, 168, 0.6);
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

.modal-content {
  background: #fff;
  border-radius: 15px;
  max-width: 450px;
  width: 100%;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 28px;
  font-weight: 700;
  color: #888;
  cursor: pointer;
  transition: color 0.25s ease;
}

.close:hover {
  color: #444;
}

/* Success Icon */
.success-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 25px;
}

/* Modal Text */
.modal-body h3 {
  color: #4ecdc4;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.modal-body p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Modal Button */
.modal-btn {
  background-color: #4ecdc4;
  border: none;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 0;
  width: 100%;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-btn:hover {
  background-color: #3bb3a8;
}

/* Responsive */
@media (max-width: 900px) {
  .quote-content {
    flex-direction: column;
    gap: 35px;
  }
  
  .quote-text, .quote-form-container {
    max-width: 100%;
  }
}

/**************individual Blog******************/

/* Reset some basics */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px;
}

/* Blog Single Article */
.blog-single {
  background: #fff;
  padding: 40px 20px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  border-radius: 8px;
}

/* Header */
.blog-header {
  margin-bottom: 30px;
}

.blog-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.blog-meta span {
  background: #e7f1f0;
  padding: 4px 10px;
  border-radius: 15px;
  font-weight: 600;
  color: #4ecdc4;
}

.blog-header h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #333;
}

.blog-excerpt {
  font-size: 1.1rem;
  color: #555;
  max-width: 720px;
}

/* Featured Image SVG */
.blog-featured-image {
  margin: 30px 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);
}

.blog-featured-image svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Blog Content and Sidebar Wrapper */
.blog-content-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Main Blog Content */
.blog-content {
  flex: 1 1 65%;
  min-width: 320px;
}

.blog-content h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: #ff6b6b;
  margin: 25px 0 12px;
  border-bottom: 3px solid #4ecdc4;
  padding-bottom: 6px;
}

.blog-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 16px;
}

.intro-paragraph {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 24px;
}

/* Trend Highlight Box */
.trend-highlight {
  background: #f0fdfd;
  border-left: 5px solid #4ecdc4;
  padding: 20px;
  margin: 20px 0;
  border-radius: 6px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.trend-highlight p {
  flex: 1 1 250px;
  margin: 0;
  color: #333;
  font-size: 1rem;
}

.trend-illustration {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
}

/* Conclusion Section */
.conclusion-section {
  margin-top: 40px;
  background: #4ecdc4;
  color: #fff;
  padding: 30px 25px;
  border-radius: 10px;
}

.conclusion-section h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  margin-bottom: 15px;
}

.conclusion-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* CTA Box */
.cta-box {
  background: #ff6b6b;
  padding: 25px 20px;
  border-radius: 8px;
  color: white;
  text-align: center;
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.cta-box p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background: #333;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background: #222;
  outline: none;
}

/* Sidebar */
.blog-sidebar {
  flex: 1 1 30%;
  min-width: 280px;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 6px 15px rgb(0 0 0 / 0.07);
}

.sidebar-widget {
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #4ecdc4;
}

/* Related Posts */
.related-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-post {
  display: flex;
  gap: 15px;
  align-items: center;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.05);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.related-post:hover {
  background: #4ecdc4;
  color: white;
}

.related-image svg {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}

.related-content h4 {
  font-size: 1rem;
  margin: 0 0 6px 0;
  color: inherit;
}

.related-date {
  font-size: 0.85rem;
  color: inherit;
  opacity: 0.7;
}

/* Categories */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.category-list a:hover,
.category-list a:focus {
  background: #4ecdc4;
  color: white;
  outline: none;
}

/* Newsletter Widget */
.newsletter-widget p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 30px;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #4ecdc4;
}

.newsletter-form button {
  background: #4ecdc4;
  color: white;
  border: none;
  padding: 10px 22px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover,
.newsletter-form button:focus {
  background: #3aa89a;
  outline: none;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-content-wrapper {
    flex-direction: column;
  }

  .blog-content,
  .blog-sidebar {
    flex: 1 1 100%;
  }
}


/************************Newsletter Page*********************/

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
}

/* Hero Section */
.newsletter-hero {
  background-color: #ffffff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Text Content */
.newsletter-content {
  display: flex;
  gap: 40px;
  flex: 1 1 60%;
  flex-wrap: wrap;
}

.newsletter-text {
  flex: 1 1 50%;
}

.colorful-title {
  font-family: 'Fredoka One', cursive;
  font-size: 2.8rem;
  color: #ff6b6b;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
}

.newsletter-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #333;
  background: #f1fefe;
  padding: 12px 16px;
  border-radius: 8px;
  flex: 1 1 200px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
}

/* Form Styles */
.newsletter-form-main {
  flex: 1 1 45%;
  background: #fdfdfd;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.05);
}

.newsletter-signup h2 {
  font-size: 1.6rem;
  color: #4ecdc4;
  margin-bottom: 10px;
}

.newsletter-signup p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #555;
}

.form-group {
  margin-bottom: 15px;
}

input[type="text"],
input[type="email"],
select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: border 0.3s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: #4ecdc4;
}

/* Custom Checkbox */
.checkbox-group {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #444;
  position: relative;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #4ecdc4;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

.checkbox-label input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0px;
  width: 6px;
  height: 12px;
  border: solid #4ecdc4;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Subscribe Button */
.subscribe-btn {
  background: #ff6b6b;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  margin-bottom: 10px;
}

.subscribe-btn:hover {
  background: #e55a5a;
}

.privacy-note {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}

/* Illustration */
.newsletter-illustration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  max-width: 90%;
  opacity: 0.9;
  pointer-events: none;
}

.newsletter-illustration svg {
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .page-hero .container {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-content {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form-main {
    width: 100%;
    max-width: 500px;
  }

  .newsletter-illustration {
    position: static;
    margin-top: 40px;
  }
}

/* ========== Newsletter Preview Section ========== */
.newsletter-preview {
  padding: 60px 0;
  background-color: #fdfdfd;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-family: 'Fredoka One', sans-serif;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.preview-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  transition: transform 0.3s ease;
}

.preview-card:hover {
  transform: translateY(-5px);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.preview-header h3 {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
}

.preview-frequency {
  font-size: 0.9rem;
  color: #777;
  background: #eee;
  padding: 4px 10px;
  border-radius: 20px;
}

.preview-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.preview-content ul {
  list-style: disc;
  padding-left: 20px;
  color: #444;
}

.preview-content ul li {
  margin-bottom: 8px;
}

/* ========== Testimonials Section ========== */
.newsletter-testimonials {
  padding: 60px 0;
  background-color: #fff9f4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.testimonial-content p {
  font-style: italic;
  color: #333;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #666;
}

.testimonial-author strong {
  font-size: 1rem;
  color: #333;
}

.testimonial-avatar {
  align-self: center;
}

.testimonial-avatar svg {
  width: 60px;
  height: 60px;
}


/* Modal Base */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 450px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #555;
}

/* Form Inputs */
#unsubscribeForm input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  margin-top: 15px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.unsubscribe-btn {
  background-color: #FF6B6B;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.unsubscribe-btn:hover {
  background-color: #e05555;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 20px;
}

.success-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* ===============================
   Value Bright Home Experts
   Privacy Policy Stylesheet
   (Drop this into privacy.css and link it)
   =============================== */

/* ---- CSS Variables (Theme) ---- */
:root {
  --bg: #f7f9fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --brand: #0ea5e9;   /* sky-500 */
  --brand-ink: #0369a1; /* sky-700 */
  --border: #e5e7eb;
  --ring: rgba(14,165,233,.25);
  --shadow: 0 10px 24px rgba(2, 6, 23, .08);
}

/* Dark mode (respects user preference) */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1220;
    --card: #0f172a;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --brand: #38bdf8;
    --brand-ink: #7dd3fc;
    --border: #1f2637;
    --ring: rgba(56,189,248,.25);
    --shadow: 0 12px 28px rgba(0,0,0,.35);
  }
}

/* ---- Base Reset ---- */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(14,165,233,.08), transparent 50%) ,
              radial-gradient(1000px 500px at 120% 10%, rgba(14,165,233,.06), transparent 60%) ,
              var(--bg);
  line-height: 1.7;
}

/* ---- Container ---- */
.privacy-policy .container {
  max-width: 920px;
  margin: min(8vh, 5rem) auto;
  padding: clamp(1rem, 2.5vw, 2rem);
}

/* ---- Card ---- */
.privacy-policy {
  display: block;
}
.privacy-policy .policy-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3.5vw, 2.25rem);
}

/* ---- Header ---- */
.policy-header {
  text-align: center;
  margin-bottom: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) 0;
}
.policy-header h1 {
  margin: 0 0 .25rem;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.policy-header p {
  margin: 0;
  color: var(--muted);
  font-size: .975rem;
}

/* ---- Typography ---- */
.policy-content h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  margin: 1.6rem 0 .6rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: .75rem;
}
.policy-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 4px;
  height: 1.1em;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--brand), var(--brand-ink));
}
.policy-content p {
  margin: .5rem 0 1rem;
}

.policy-content strong { font-weight: 600; }

/* ---- Lists ---- */
.policy-content ul,
.policy-content ol {
  margin: .25rem 0 1.25rem 1.15rem;
  padding: 0;
}
.policy-content li {
  margin: .35rem 0;
}
.policy-content li::marker {
  color: var(--brand);
}

/* ---- Links ---- */
.policy-content a {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in oklab, var(--brand) 60%, transparent);
  transition: border-color .2s ease, color .2s ease, outline-color .2s ease;
}
.policy-content a:hover,
.policy-content a:focus-visible {
  color: var(--brand-ink);
  border-bottom-color: currentColor;
  outline: 0;
}

/* ---- Accents (callouts / notes if added later) ---- */
.policy-note {
  padding: .875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    linear-gradient(0deg, rgba(14,165,233,.04), rgba(14,165,233,.04)),
    var(--card);
  font-size: .975rem;
}

/* ---- Focus styles (Accessibility) ---- */
a, button, [role="button"], input, textarea {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline-color: var(--ring);
  box-shadow: 0 0 0 6px var(--ring);
  border-radius: 10px;
}

/* ---- Tables (if you add any) ---- */
.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.policy-content th,
.policy-content td {
  padding: .75rem .9rem;
  border-bottom: 1px solid var(--border);
}
.policy-content thead th {
  background: color-mix(in oklab, var(--brand) 10%, var(--card));
  text-align: left;
  font-weight: 600;
}

/* ---- Small Print ---- */
.policy-footer {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: .9rem;
}

/* ---- Responsive tweaks ---- */
@media (max-width: 640px) {
  .privacy-policy .container {
    margin: 5vh auto;
  }
  .policy-content {
    padding: 1rem;
  }
}

/* ---- Print styles ---- */
@media print {
  :root {
    --bg: #ffffff;
    --card: #ffffff;
    --text: #000000;
    --border: #c7c7c7;
    --brand: #000000;
    --brand-ink: #000000;
    --shadow: none;
  }
  body { background: #fff; }
  .privacy-policy .container { margin: 0; max-width: 100%; }
  .policy-content {
    box-shadow: none;
    border: 1px solid var(--border);
  }
  a { color: #000; text-decoration: underline; border: 0; }
}




