* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f9;
    color: #333;
    line-height: 1.6;
}


/* HOME SECTION */
.home-section {
    background: linear-gradient(135deg, #f8fbff, #eef3ff);
}

.home-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.home-section h2 {
    color: #0d6efd;
    font-size: 28px;
    margin-bottom: 12px;
}

.home-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
}

/* FEATURES */
.home-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: #0d6efd;
    border: 1px solid #dce3ff;
    font-weight: 600;
}

/* CTA */
.home-cta a {
    font-size: 20px;
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 480px) {
    .home-section h2 {
        font-size: 22px;
    }

    .home-text {
        font-size: 14px;
    }

    .home-cta a {
        font-size: 17px;
    }
}

/* NAVBAR */
nav {
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    flex-wrap: wrap;
}

/* BACK BUTTON */
.back-btn {
    background: #fff;
    color: #0d6efd;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.back-btn:hover {
    background: #e6e6e6;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 12px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    text-decoration: underline;
}


.hero-bg {
    height: 90vh;
    background-image: url("images/hero-washing-machine.webp");
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay-bg {
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
}

/* LEFT CONTENT */
.hero-content-bg {
    color: #fff;
    max-width: 550px;
    animation: fadeSlideUp 1.2s ease forwards;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-title-bg {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-title-bg span {
    color: #ffd43b;
}

.hero-subtitle-bg {
    font-size: 18px;
    margin: 20px 0 28px;
}

.hero-phone-bg {
    background: #0d6efd;
    color: #fff;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    animation: pulseBg 2s infinite;
}
/* RIGHT FORM PANEL */
.hero-form-panel{
    background:rgba(255,255,255,0.95);
    border-radius:20px;
    padding:25px 22px;
    max-width:340px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* FORM */
.hero-form{
    display:flex;
    flex-direction:column;
    gap:12px;
    text-align:left;
}

.hero-form h3{
    font-size:20px;
    font-weight:800;
    color:#0d6efd;
    margin-bottom:2px;
}

.hero-form p{
    font-size:13px;
    color:#555;
    margin-bottom:10px;
}

/* INPUTS */
.hero-form input,
.hero-form textarea{
    width:100%;
    padding:10px 12px;
    border-radius:10px;
    border:1px solid #ccc;
    font-size:14px;
    outline:none;
}

.hero-form input:focus,
.hero-form textarea:focus{
    border-color:#0d6efd;
}

/* BUTTON */
.hero-form button{
    background:#0d6efd;
    color:#fff;
    border:none;
    border-radius:30px;
    padding:12px;
    font-weight:700;
    font-size:15px;
    cursor:pointer;
    transition:0.3s ease;
}

.hero-form button:hover{
    background:#084298;
}

/* RESPONSIVE */
@media (max-width:768px){
    .hero-form-panel{
        max-width:100%;
        margin:20px auto 0;
    }
}



.spinner-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.spinner{
    width:50px;
    height:50px;
    border:5px solid #ddd;
    border-top:5px solid #0d6efd;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{transform:rotate(360deg);}
}

@media(max-width:768px){
    .hero-form-panel{
        max-width:100%;
        margin:20px auto;
    }
}
/* ANIMATIONS */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulseBg {
    0% { box-shadow: 0 0 0 0 rgba(13,110,253,0.6); }
    70% { box-shadow: 0 0 0 18px rgba(13,110,253,0); }
    100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
}

/* TABLET */
@media (max-width: 768px) {
    .hero-overlay-bg {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }

    .hero-title-bg {
        font-size: 36px;
    }

    .hero-side-panel {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: 420px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .hero-bg {
        height: auto;
        padding: 40px 0;
    }

    .hero-title-bg {
        font-size: 26px;
    }

    .hero-subtitle-bg {
        font-size: 14px;
    }

    .hero-phone-bg {
        font-size: 16px;
        padding: 12px 22px;
    }

    .hero-side-panel {
        grid-template-columns: 1fr;
    }
}
/* UNIQUE SPOTLIGHT SECTION */
.home-spotlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #f8fbff, #eef3ff);
    border-radius: 20px;
    padding: 40px;
}

/* LEFT CONTENT */
.spotlight-left {
    flex: 1.4;
}

.spotlight-left h2 {
    color: #0d6efd;
    margin-bottom: 12px;
}

.spotlight-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 18px;
}

/* CHIPS */
.spotlight-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.spotlight-chips span {
    background: #ffffff;
    color: #0d6efd;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 13px;
    border: 1px solid #dbe5ff;
    font-weight: 600;
}

/* CTA */
.spotlight-cta a {
    background: #0d6efd;
    color: #fff;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

/* RIGHT SIDE CIRCLE */
.spotlight-right {
    position: relative;
    width: 180px;
    height: 180px;
}

.spotlight-circle {
    width: 140px;
    height: 140px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* PULSE EFFECT */
.pulse-ring {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid rgba(13,110,253,0.5);
    transform: translate(-50%, -50%);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .home-spotlight {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .spotlight-right {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .spotlight-text {
        font-size: 14px;
    }

    .spotlight-cta a {
        font-size: 16px;
        padding: 12px 24px;
    }
}



/* SECTIONS */
.box {
    background: #fff;
    max-width: 1100px;
    margin: 20px auto;
    padding: 30px;
    border-radius: 8px;
}

h2 {
    color: #0d6efd;
    margin-bottom: 12px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* CTA */
.cta {
    background: #0d6efd;
    text-align: center;
    padding: 18px;
    border-radius: 6px;
    margin-top: 25px;
}

.cta a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

/* FOOTER */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 15px;
    margin-top: 30px;
}

.footer-links {
    margin-top: 8px;
}

.footer-links a {
    color: #0d6efd;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* TABLET */
@media (max-width: 768px) {
    header h1 {
        font-size: 24px;
    }

    .box {
        margin: 15px;
        padding: 20px;
    }

    .cta a {
        font-size: 18px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 8px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    header h1 {
        font-size: 22px;
    }

    .cta a {
        font-size: 16px;
    }
}

/* WHY CHOOSE US */
.why-choose {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
}

.why-choose h2 {
    text-align: center;
    color: #0d6efd;
    margin-bottom: 25px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-box {
    background: #f4f6f9;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.why-box h3 {
    color: #0d6efd;
    margin-bottom: 10px;
    font-size: 16px;
}

.why-box p {
    font-size: 14px;
    color: #444;
}

/* Tablet */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-box h3 {
        font-size: 15px;
    }
}

/* ABOUT SECTION */
.about-section {
    margin-top: 30px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

/* CONTENT */
.about-content {
    flex: 1;
}

.about-content h2 {
    color: #0d6efd;
    margin-bottom: 12px;
}

.about-content p {
    font-size: 15px;
    margin-bottom: 10px;
    color: #444;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        margin-top: 15px;
    }
}

/* SERVICES SECTION */
.service-section h2 {
    text-align: center;
    color: #0d6efd;
    margin-bottom: 25px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #f4f6f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    color: #0d6efd;
    font-size: 16px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #444;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* TABLET */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}


/* FAQ SECTION */
.faq-section h2 {
    text-align: center;
    color: #0d6efd;
    margin-bottom: 25px;
}

/* FAQ ITEM */
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

/* Hide checkbox */
.faq-item input {
    display: none;
}

/* Question */
.faq-item label {
    display: block;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    color: #333;
}

/* Plus icon */
.faq-item label::after {
    content: "+";
    position: absolute;
    right: 15px;
    font-size: 18px;
    color: #0d6efd;
}

/* Answer */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.faq-content p {
    padding: 10px 0;
    font-size: 14px;
    color: #444;
}

/* When open */
.faq-item input:checked ~ .faq-content {
    max-height: 200px;
}

.faq-item input:checked + label::after {
    content: "-";
}

/* MOBILE */
@media (max-width: 480px) {
    .faq-item label {
        font-size: 14px;
    }
}
/* REVIEWS SECTION */
.review-section h2 {
    text-align: center;
    color: #0d6efd;
    margin-bottom: 25px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: #f8faff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e0e7ff;
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.review-text {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-name {
    font-weight: bold;
    font-size: 14px;
}

.review-stars {
    color: #f4b400;
    font-size: 14px;
}

/* TABLET */
@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}
/* CUSTOMER SUPPORT */
.support-section h2 {
    text-align: center;
    color: #0d6efd;
    margin-bottom: 15px;
}

.support-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 15px;
    color: #444;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.support-card {
    background: #f8faff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e0e7ff;
    transition: 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.support-card h3 {
    color: #0d6efd;
    margin-bottom: 10px;
    font-size: 16px;
}

.support-card p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #444;
}

.support-btn {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.support-btn:hover {
    background: #084298;
}

.support-info {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

/* TABLET */
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

/* MODE 2 – TIMELINE CONTACT STYLE */
.contact-section {
    max-width: 750px;
    margin: 60px auto;
    padding: 30px 0;
    position: relative;
}

/* Heading */
.contact-section h2 {
    text-align: left;
    font-size: 28px;
    color: #111;
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 5px solid #0d6efd;
}

/* Each info line as timeline item */
.contact-section p {
    position: relative;
    padding: 18px 20px 18px 70px;
    margin-bottom: 22px;
    background: #fafafa;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
}

/* Left vertical line */
.contact-section p::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #dbe5ff;
}

/* Circle icon holder */
.contact-section p::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 24px;
    width: 18px;
    height: 18px;
    background: #0d6efd;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(13,110,253,0.15);
}

/* Label */
.contact-section p strong {
    display: block;
    color: #0d6efd;
    margin-bottom: 4px;
    font-size: 14px;
}

/* Hover */
.contact-section p:hover {
    background: #f0f5ff;
}

/* MOBILE */
@media (max-width: 480px) {
    .contact-section {
        margin: 40px 15px;
    }

    .contact-section h2 {
        font-size: 22px;
    }

    .contact-section p {
        padding-left: 60px;
        font-size: 14px;
    }
}

/* =========================
   Privacy Policy Page
========================= */

header {
  background: #0d6efd; /* Bootstrap primary */
  color: #fff;
  padding: 40px 15px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

/* Common box style */
.box {
  max-width: 900px;
  margin: 30px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Simple bullet list section */
.box ul {
  padding-left: 20px;
  margin: 0;
}

.box ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

/* Detailed privacy section */
.privacy-section h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #0d6efd;
}

.privacy-section h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #222;
}

.privacy-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.privacy-section ul {
  padding-left: 22px;
  margin-bottom: 10px;
}

.privacy-section ul li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #444;
}

/* Contact highlight */
.privacy-section strong {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 26px;
  }

  .privacy-section h2 {
    font-size: 22px;
  }

  .privacy-section h3 {
    font-size: 18px;
  }

  .box {
    padding: 20px;
    margin: 20px 15px;
  }
}
