.hero-heading,
.hero-sub,
.badge-text,
.brand-title {
  transition: color 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top, #e0f7ff, #ffffff);
  color: #0f172a;
  line-height: 1.7;
}

/* ================= CONTAINER ================= */

.container {
  max-width: 1100px;
  margin: auto;
  padding: 70px 25px;
}

/* ================= HERO ================= */

.hero {
  padding: 90px 25px 70px;
  background: linear-gradient(135deg, #e0f7ff, #f8fcff);
}

.hero-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left span {
  display: block;
  color: #0ea5e9;
}

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #475569;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.secondary-btn {
  background: #0f172a;
}

.secondary-btn:hover {
  background: #1e293b;
}

/* Creative Customer Badge */

.customer-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.badge-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0ea5e9;
}

.badge-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0f172a;
}

.hero-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-card h3 {
  margin-bottom: 15px;
}

.hero-card ul {
  list-style: none;
  padding: 0;
}

.hero-card li {
  margin-bottom: 12px;
  color: #475569;
}

@media(max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
}

/* BIG BRAND TITLE */

.brand-title {
  font-size: 4rem;
  font-weight: 800;
  color: #0ea5e9;
  margin-bottom: 15px;
}

/* Black Heading Below */

.hero-heading {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #0ea5e9;
  width: 0;
  animation: typing 3s steps(40, end) forwards,
             blink 0.7s infinite;
}

@keyframes typing {
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}


/* ================= SECTIONS ================= */

section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #0ea5e9;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.long-text {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #475569;
}

/* ================= GRID ================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ================= CARDS ================= */

.card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  margin-bottom: 15px;
}

.card p {
  color: #475569;
}

/* ================= PRICING ================= */

.price .amount {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 10px 0;
}

.highlight {
  border: 2px solid #0ea5e9;
}

/* ================= MODERN PRICING ================= */

.price {
  position: relative;
  text-align: center;
  padding: 40px 30px;
  transition: 0.4s ease;
  border-radius: 25px;
  background: white;
}

.price::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(135deg,#0ea5e9,#6366f1);
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.price:hover::before {
  opacity: 1;
}

.price:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(14,165,233,0.25);
}

.price .amount {
  font-size: 2rem;
  font-weight: 800;
  color: #0ea5e9;
  margin: 20px 0;
}

/* Highlighted Plan */
.highlight {
  background: linear-gradient(135deg,#0ea5e9,#6366f1);
  color: white;
  transform: scale(1.05);
}

.highlight .amount {
  color: white;
}

.highlight:hover {
  box-shadow: 0 30px 60px rgba(99,102,241,0.4);
}

/* ================= SOFT BACKGROUND ================= */

.soft-bg {
  background: #f1f9ff;
  padding: 80px 25px;
  border-radius: 40px;
}

.soft-bg .card {
  margin-bottom: 25px;
}

.soft-bg .card:last-child {
  margin-bottom: 0;
}

/* ================= CONTACT FORM ================= */

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

input,
textarea,
select {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  outline: none;
}

textarea {
  resize: none;
  height: 120px;
}

select {
  background: #ffffff;
  color: #0f172a;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}

/* ================= BUTTON ================= */

.btn {
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: #0ea5e9;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #0284c7;
}

/* ================= MOBILE ================= */

@media(max-width: 900px) {
  .hero-fixed {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    max-width: 100%;
  }
}

/* ================= POPUP ================= */

#popup {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 999999;
}

#popup.active {
  display: flex;
  opacity: 1;
}

/* Popup Box */

.popup-box {
  width: 90%;
  max-width: 480px;
  padding: 45px 40px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  position: relative;
  animation: popupSmooth 0.4s ease;
}

@keyframes popupSmooth {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-box h2 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: center;
}

/* Close Button */

.close-popup {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 38px;
  height: 38px;
  background: white;
  color: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.close-popup:hover {
  transform: rotate(90deg) scale(1.1);
  background: #0ea5e9;
  color: white;
}

/* Popup Form */

.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.popup-box input,
.popup-box textarea,
.popup-box select {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 0.95rem;
  background: #ffffff;
  color: #0f172a;
}

.popup-box textarea {
  height: 110px;
}

.popup-box select option {
  color: #0f172a;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: #0ea5e9;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #0ea5e9;
}

.nav-contact {
  font-weight: 600;
}

.nav-contact a {
  color: #0ea5e9;
  text-decoration: none;
}

@media(max-width: 900px){
  .nav-links {
    display: none;
  }
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.secondary-btn {
  background: #0f172a;
}

.secondary-btn:hover {
  background: #1e293b;
}

/* TRUST BADGES */

.trust-section {
  background: #f8fafc;
  padding: 25px 20px;
  text-align: center;
}

.trust-item {
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s;
  z-index: 9999;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== HERO ANIMATIONS ===== */

.hero-left {
  animation: fadeUp 1s ease;
}

.hero-right {
  animation: fadeUp 1.3s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Make ClearSip more powerful */
.brand-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(90deg,#0ea5e9,#0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Improve badge look */
.customer-badge {
  margin-top: 10px;
  transition: 0.3s;
}

.customer-badge:hover {
  transform: translateY(-4px);
}

/* ================= FLOATING SHAPES ================= */

.hero {
  position: relative;
  overflow: hidden;
}

.floating-shapes span {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  opacity: 0.15;
  animation: float 12s infinite ease-in-out;
}

.shape1 {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
}

.shape2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  right: -60px;
  animation-delay: 3s;
}

.shape3 {
  width: 150px;
  height: 150px;
  top: 200px;
  right: 200px;
  animation-delay: 6s;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(40px) rotate(10deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.popular-tag {
  display: inline-block;
  background: white;
  color: #6366f1;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.theme-toggle{
background:none;
border:none;
font-size:20px;
cursor:pointer;
margin-left:15px;
}

/* ===== DARK MODE ===== */

body.dark{
background:#0b1120;
color:#e2e8f0;
}

body.dark .navbar{
background:#0f172a;
}

body.dark .hero{
background:#0b1120;
}

body.dark .card{
background:#111827;
color:#e2e8f0;
}

body.dark .btn{
background:linear-gradient(90deg,#0ea5e9,#6366f1);
color:white;
}

body.dark .hero-right{
background:#111827;
}

body.dark input,
body.dark textarea,
body.dark select{
background:#111827;
color:white;
border:1px solid #1f2937;
}

/* ===== IMPROVED DARK MODE ===== */

body.dark {
  background: #0b1120;
  color: #e2e8f0;
}

/* Hero */
body.dark .hero {
  background: linear-gradient(135deg, #0b1120, #0f172a);
}

/* Hero Right Card */
body.dark .hero-card {
  background: #111827;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

body.dark .hero-card li {
  color: #cbd5e1;
}

/* Floating shapes darker */
body.dark .floating-shapes span {
  background: linear-gradient(135deg, #1e293b, #334155);
  opacity: 0.2;
}

/* Sections */
body.dark .soft-bg {
  background: #0f172a;
}

/* Cards */
body.dark .card {
  background: #111827;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

body.dark .card p {
  color: #cbd5e1;
}

/* Pricing */
body.dark .price {
  background: #111827;
}

body.dark .highlight {
  background: linear-gradient(135deg,#0ea5e9,#6366f1);
}

/* Navbar links */
body.dark .nav-links a {
  color: #e2e8f0;
}

body.dark .nav-links a:hover {
  color: #38bdf8;
}

/* Popup */
body.dark .popup-box {
  background: #111827;
  color: #e2e8f0;
}

body.dark .close-popup {
  background: #1e293b;
  color: white;
}

/* ===== DARK HERO TEXT FIX ===== */

body.dark .brand-title {
  background: linear-gradient(90deg,#38bdf8,#60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.dark .hero-heading {
  color: #ffffff;
}

body.dark .hero-sub {
  color: #cbd5e1;
}

body.dark .customer-badge {
  background: #1e293b;
}

body.dark .badge-text {
  color: #e2e8f0;
}
/* ================= PRODUCTS SECTION ================= */

.products {
  padding: 100px 6%;
  background: #f5f7fb;
}

/* Layout */
.product-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

/* ================= PRODUCT CARD ================= */

.products .card {
  position: relative;
  width: 300px;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: productFade 0.8s ease forwards;
}

/* Stagger animation */
.products .card:nth-child(1) { animation-delay: 0.2s; }
.products .card:nth-child(2) { animation-delay: 0.4s; }
.products .card:nth-child(3) { animation-delay: 0.6s; }

@keyframes productFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effect */
.products .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ================= FEATURED CARD ================= */

.products .card.featured {
  background: linear-gradient(135deg,#2196f3,#6a5acd);
  color: white;
  transform: scale(1.05);
}

.products .card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #6a5acd;
  padding: 6px 15px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
}

/* ================= IMAGE ================= */

.products .card img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 12px;
  transition: 0.4s ease;
}

.products .card:hover img {
  transform: scale(1.08);
}
/* ================= TITLE ================= */

.products .card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* ================= PRICE SECTION ================= */

.product-price {
  margin: 20px 0;
}

/* Old Price with animated strike */
.product-price .old-price {
  position: relative;
  font-size: 16px;
  color: #888;
  margin-right: 8px;
}

.product-price .old-price::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0%;
  height: 2px;
  background: red;
  animation: strike 1s ease forwards;
}

@keyframes strike {
  to { width: 100%; }
}

/* New Price */
/* New Price with diagonal slash */
.product-price .new-price {
  position: relative;
  font-size: 28px;
  font-weight: 800;
  color: #0ea5e9;
  display: inline-block;
}

/* Diagonal slash animation */
.product-price .new-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 3px;
  background: linear-gradient(90deg,#ff0000,#ff4d4d);
  transform: rotate(-8deg) scaleX(0);
  transform-origin: left;
  animation: slash 0.8s ease forwards;
}

@keyframes slash {
  to {
    transform: rotate(-8deg) scaleX(1);
  }
}

/* White prices in featured */
.products .card.featured .new-price {
  color: white;
}

.products .card.featured .old-price {
  color: white;
  opacity: 0.7;
}

/* ===== MODERN FLOATING PRICE ===== */

.offer {
  position: relative;
  display: inline-block;
  margin: 25px 0 30px;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(135deg,#0ea5e9,#6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.35s ease;
}

/* Soft glow behind text */
.offer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 70%;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg,#0ea5e9,#6366f1);
  opacity: 0.4;
  filter: blur(6px);
}

/* Hover effect */
.products .card:hover .offer {
  transform: translateY(-6px) scale(1.08);
}

.products .card.featured .offer {
  background: linear-gradient(90deg,#ffffff,#e0f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= LIST ================= */

.products ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.products ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* ================= BOTTOM PRODUCTS TEXT ================= */

.custom-price {
  font-size: 18px;
  font-weight: 700;
}



/* Stylish requirement pricing text */
.requirement-price {
  display: inline-block;
  padding: 8px 18px;
  margin: 10px 0 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  position: relative;
  background: #f1f5f9;
  color: #0f172a;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

/* Soft glow border animation */
.requirement-price::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(90deg,#0ea5e9,#6366f1,#0ea5e9);
  z-index: -1;
  background-size: 200%;
  animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* Hover effect */
.requirement-price:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(14,165,233,0.3);
}

.book-float{
  position:fixed;
  bottom:110px;
  right:25px;
  background:#ff5722;
  color:white;
  padding:12px 18px;
  border-radius:30px;
  font-weight:700;
  text-decoration:none;
  animation:pulse 1.5s infinite;
  z-index:9999;
}

.book-btn {
  margin-top: 15px;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg,#0ea5e9,#6366f1);
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Hover Lift + Glow */
.book-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(99,102,241,0.4);
}

/* Click press effect */
.book-btn:active {
  transform: scale(0.97);
}

/* Shine animation */
.book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.book-btn:hover::before {
  left: 120%;
}
.popup-overlay {
  display: none;
  pointer-events: none;
}

.popup-overlay.active {
  display: flex;
  pointer-events: auto;
}
.book-float {
  pointer-events: auto;
}

.price .book-btn {
  position: relative;
  z-index: 10;
}
.navbar {
  animation: slideDown 0.8s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== SERVICE PRICE STYLE ===== */

.service-price {
  margin: 20px 0;
}

.service-price .old-price {
  font-size: 18px;
  color: #888;
  text-decoration: line-through;
  margin-right: 10px;
}

.service-price .new-price {
  font-size: 28px;
  font-weight: 800;
  color: #0ea5e9;
}

/* White price for highlighted plan */
.highlight .new-price {
  color: white;
}

.highlight .old-price {
  color: rgba(255,255,255,0.7);
}

/* Make image properly sized */
.product-image img {
  width: 350px;
  max-width: 100%;
  border-radius: 15px;
}

/* Product section layout fix */
.products {
  padding: 100px 6%;
  background: #f5f7fb;
}

/* Keep products section relative */
.products {
  position: relative;
}

/* Side image positioning */
.product-image {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.product-image img {
  width: 300px;
  border-radius: 15px;
}

.services {
  position: relative;
}

/* SERVICE IMAGE + PLANS LAYOUT */

.service-layout{
  display:flex;
  align-items:center;
  gap:60px;
}

/* left image */

.service-left img{
  width:300px;
  border-radius:20px;
}

/* plans take remaining space */

.service-layout .grid{
  flex:1;
}

/* mobile responsive */

@media(max-width:900px){

  .service-layout{
    flex-direction:column;
    text-align:center;
  }

  .service-left img{
    width:220px;
  }

}

/* ===== SERVICE IMAGE LEFT SIDE ===== */

#pricing{
  position:relative;
}

/* image placed in empty left area */

.service-left{
  position:absolute;
  left:-260px;
  top:50%;
  transform:translateY(-50%);
}

.service-left img{
  width:260px;
  border-radius:20px;
}

/* keep plans normal */

#pricing .grid{
  grid-template-columns: repeat(3,1fr);
}

/* RIGHT SERVICE IMAGE */

.service-right{
  position:absolute;
  right:-260px;
  top:50%;
  transform:translateY(-50%);
}

.service-right img{
  width:260px;
  border-radius:20px;
}

@media(max-width:600px){

  .brand-title{
    font-size:2.2rem;
  }

  .hero-left h1{
    font-size:2rem;
  }

  .product-image img{
    width:100%;
  }

  .service-left,
  .service-right{
    display:none;
  }

}

/* ================= MOBILE RESPONSIVE FIXES ================= */

/* Prevent horizontal scroll */
html,body{
overflow-x:hidden;
}

img{
max-width:100%;
height:auto;
}

/* Tablet */
@media (max-width: 900px){

.hero-container{
flex-direction:column;
text-align:center;
gap:40px;
}

.service-layout{
flex-direction:column;
}

.product-row{
flex-wrap:wrap;
justify-content:center;
}

}

/* Mobile */
@media (max-width: 600px){

.container{
padding:50px 20px;
}

.hero{
padding:70px 20px;
}

.hero-left h1{
font-size:2rem;
}

.hero-sub{
font-size:1rem;
}

.hero-buttons{
justify-content:center;
}

.grid{
grid-template-columns:1fr;
}

.card{
width:100%;
}

}

/* Small phones */
@media (max-width:400px){

.hero-left h1{
font-size:1.7rem;
}

}

/* Prevent horizontal scrolling */
html, body {
  overflow-x: hidden;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* ================= NAVBAR MOBILE MENU ================= */

.mobile-menu-btn{
  display:none;
  font-size:24px;
  background:none;
  border:none;
  cursor:pointer;
}

@media(max-width:900px){

  .mobile-menu-btn{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:white;
    flex-direction:column;
    gap:0;
    display:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links li{
    padding:15px;
    border-bottom:1px solid #eee;
    text-align:center;
  }

}

/* ================= HERO MOBILE ================= */

@media(max-width:900px){

  .hero-container{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .hero-buttons{
    justify-content:center;
  }

}

/* Remove typing animation on small phones */
@media(max-width:600px){

  .hero-heading{
    white-space:normal;
    border-right:none;
    animation:none;
    width:auto;
  }

}

/* ================= GRID FIX ================= */

@media(max-width:600px){

  .grid{
    grid-template-columns:1fr;
  }

  .card{
    width:100%;
  }

}

/* ================= PRODUCT CARDS ================= */

.products .card{
  max-width:300px;
  width:100%;
  margin:auto;
}

/* Stack product rows nicely */
@media(max-width:900px){

  .product-row{
    flex-wrap:wrap;
    justify-content:center;
  }

}

/* ================= SERVICE IMAGES ================= */

@media(max-width:900px){

  .service-left,
  .service-right{
    display:none;
  }

}

/* ================= HERO TEXT ================= */

@media(max-width:600px){

  .brand-title{
    font-size:2.2rem;
  }

  .hero-left h1{
    font-size:2rem;
  }

  .hero-sub{
    font-size:1rem;
  }

}

/* ================= SMALL PHONES ================= */

@media(max-width:400px){

  .hero-left h1{
    font-size:1.7rem;
  }

}

/* ================= FLOAT BUTTON SAFETY ================= */

.whatsapp-float,
.book-float{
  right:18px;
}

@media(max-width:600px){

  .whatsapp-float{
    width:55px;
    height:55px;
  }

}

/* ================= PERFORMANCE ================= */

/* Reduce animation load on small devices */
@media(max-width:600px){

  *{
    animation-duration:0.6s !important;
  }

}

/* ================= END MOBILE PATCH ================= */
