* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7faff;
    color: #111;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  /* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

/* Logo */
.logo img {
  height: 95px;
}

/* Center navigation */
.nav-links {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex: 1;
  text-align: center;
}

.nav-item {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

/* Dropdown styles */
.dropdown-icon {
  font-size: 0.7rem;
  margin-left: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  border-radius: 8px;
  min-width: 180px;
  display: none;
  flex-direction: column;
  z-index: 999;
}

.dropdown-menu a {
  padding: 10px 20px;
  display: block;
  text-align: Middle;
  font-size: 0.95rem;
  color: #333;
  transition: background 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: #f0f8ff;
  color: #007bff;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Right-side CTA */
.nav-right {
  display: flex;
  gap: 12px;
}

.btn-nav {
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  border: 0px solid transparent;
  transition: 0.3s;
}

.btn-nav.contact {
  background: linear-gradient(to right, #00d2ff, #007bff);
  color: white;
}

.btn-nav.contact:hover {
  box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.btn-nav:hover {
  border-color: #00bcd4;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #111;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 95px;
    right: 0;
    width: 100%;
    background: #f7faff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    display: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background-color: #e0e0e0;
    color: #004e92;
  }

  .nav-right {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .dropdown-menu a {
    padding: 8px 0;
    text-align: center;
  }
}



/* === HERO SECTION (Split Layout) === */
.hero-split {
  background: url('images/background-pattern.png') center center / cover no-repeat;
  position: relative;
  height: 65vh;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 0;
}

.hero-container {
  max-width: 1300px;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  z-index: 1;
  position: relative;
  flex-wrap: wrap;
  padding: 0 20px;
}

.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lottie-container {
  width: 100%;
  max-width: 500px;
  height: 450px;
}

.hero-right {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-right h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
  color: #111;
}

.hero-right h1 span {
  color: #00d2ff;
}

.hero-right p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #444;
  max-width: 520px;
  line-height: 1.6;
}

.hero-btn-light {
  padding: 12px 30px;
  background: linear-gradient(to right, #00d2ff, #007bff);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 210, 255, 0.3);
}

@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
    height: 550px;
    padding: 40px 20px;
  }

  .hero-container {
    flex-direction: column;
    gap: 40px;
    height: auto;
  }

  .hero-left {
    display: none;
  }

  .hero-right {
    align-items: center;
    text-align: center;
  }

  .hero-right h1 {
    font-size: 2rem;
  }

  .hero-right p {
    font-size: 1rem;
  }

  .hero-btn-light {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* === SERVICES FLOW === */
.service-flow-section {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004e92;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 50px;
  position: relative;
}

.service-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  min-width: 120px;
  gap: 10px;
  transition: all 0.3s ease;
}

.step .emoji {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.step:hover .emoji {
  transform: scale(1.2) rotate(5deg);
}

.step p {
  font-size: 1rem;
  color: #444;
  margin: 0;
}

/* Arrows */
.arrow-desktop {
  font-size: 2rem;
  color: #00d2ff;
  padding: 0 10px;
  display: inline-block;
  animation: pulseArrowX 1.2s ease-in-out infinite;
}

.arrow-mobile {
  font-size: 1.5rem;
  color: #00d2ff;
  padding: 10px 0;
  display: none;
  animation: pulseArrowY 1.2s ease-in-out infinite;
}

/* Animations */
@keyframes pulseArrowX {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(8px);
    opacity: 0.6;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulseArrowY {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* === Mobile Styles === */
@media (max-width: 768px) {
  .service-flow {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .arrow-desktop {
    display: none;
  }

  .arrow-mobile {
    display: inline-block;
  }

  .step p {
    font-size: 1rem;
  }
}
  
  /* Services */
  .service-tiles {
    padding: 80px 20px;
    background-color: #f7faff;
    text-align: center;
  }
  
  .tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .tile {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .tile-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  
  .tile:hover .tile-icon {
    transform: scale(1.2) rotate(4deg);
  }
  
  .tile h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #007bff;
  }
  
  .tile p {
    font-size: 1rem;
    color: #555;
  }
  
  .tile-icon img {
    height: 50px;
    width: auto;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
  }
  
  .tile:hover .tile-icon img {
    transform: scale(1.1);
  }

  
/*Testimonial*/
.testimonials {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: -30px;
    margin-bottom: 50px;
  }
  
  .testimonial-slider {
    max-width: 1100px;
    margin-top: 50px;
    padding: 0 20px;
  }
  
  .testimonial-card {
    background: #f7faff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-6px);
  }
  
  .client-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  .testimonial-card h3 {
    font-size: 1.1rem;
    color: #007bff;
    margin-bottom: 10px;
  }
  
  .testimonial-card p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .stars {
    font-size: 1.2rem;
    color: #ffb703;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: #007bff;
  }
  
  .scroll-offset {
    scroll-margin-top: 120px; /* Same or more than navbar height */
  }
  
  /*Contact CTA*/
  .contact-cta {
    background: linear-gradient(to right, #f7faff, #ffffff);
    padding: 80px 20px;
    text-align: center;
  }
  
  .contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom:40px;
    color: #004e92;
  }
  
  .contact-cta .section-subtitle {
    font-size: 2rem;
    color: #444;
    margin-bottom: 20px;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .cta-btn {
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 1rem;
    text-decoration: none;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .cta-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
  }
  
  .cta-btn.primary {
    background: linear-gradient(to right, #00d2ff, #007bff);
    color: white;
    font-weight: 700;
  }
  
  .cta-btn.primary:hover {
    background: linear-gradient(to right, #007bff, #004e92);
  }
  
 /* === Footer === */
.footer {
  background-color: #003f7f;
  color: #ffffff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 10px;
}

.footer-left h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-left p {
  font-size: 0.95rem;
  color: #cbd5e1;
}

.footer-right {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-right a {
  color: #f1f5f9;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #00d2ff;
}

.footer hr {
  border: none;
  border-top: 1px solid #1459a0;
  margin-top: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 5px;
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* === Center Footer on Mobile === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-left,
  .footer-right {
    justify-content: center;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}


/* Contact FAB */
.contact-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  font-family: 'Poppins', sans-serif;
}

.fab-toggle {
  background: linear-gradient(to right, #00d2ff, #007bff);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.fab-options {
  display: none;
  flex-direction: column;
  margin-bottom: 10px;
  gap: 12px;
  animation: fadeInUp 0.4s ease forwards;
}

.fab-option {
  background-color: #fff;
  color: #333;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fab-option:hover {
  transform: translateY(-3px);
  background: #f0f8ff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========== About Page ========== */

/* About Hero Banner */
.about-hero-banner {
  background: linear-gradient(to right, #dff6ff, #e7f3ff);
  padding: 100px 20px 60px;
  text-align: center;
}

.about-hero-banner h1 {
  font-size: 3rem;
  color: #004e92;
  margin: 0;
  font-weight: 700;
}

.about-section {
  padding: 80px 20px;
  background-color: #f9fbff;
}

.about-wrapper {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.about-wrapper h2 {
  font-size: 2rem;
  color: #004e92;
  margin-bottom: 30px;
  font-weight: 600;
}

.about-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* Optional: Light divider between sections */
.about-section + .about-section {
  border-top: 1px solid #e2ecf5;
  margin-top: 60px;
}

/* Our Philosophy Section */
.about-values-section {
  background: #ffffff;
  padding: 100px 20px;
}

.section-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004e92;
  margin-bottom: 30px;
  margin-top: -50px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-box {
  background: #f7faff;
  margin-top: 40px;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.05);
  transition: all 0.3s ease;
}

.value-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 123, 255, 0.1);
}

.value-box .emoji {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.value-box h3 {
  font-size: 1.4rem;
  color: #004e92;
  margin-bottom: 10px;
  font-weight: 600;
}

.value-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}


/* Our Story Section */
.our-story-section {
  background-color: #f9fbff;
  padding: 80px 20px;
}

.story-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.story-container .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #004e92;
  margin-bottom: 40px;
}

.story-container .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.story-box {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  text-align: left;
  line-height: 1.8;
  font-size: 1rem;
  color: #444;
}

@media (max-width: 768px) {
  .story-box {
    padding: 25px;
  }
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(to right, #004e92, #007bff);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: auto;
}

.cta-container h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-container p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.cta-button {
  background-color: #00d2ff;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #007bff;
}



/* === Store Page Styles === */

/* Filter Section */
.filter-bar {
  background: #ffffff;
  padding: 20px 20px;
  display: flex;
  justify-content: left;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 30px; /* NEW */
}


.filter-bar select {
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Subtitle */
.section-title {
  font-size: 2rem;
  color: #004e92;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: -20px;
  padding: 0 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}



/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 80px;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.product-card h3 {
  font-size: 1.4rem;
  color: #004e92;
  margin-bottom: 10px;
}

.product-card p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.product-card .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00bcd4;
  margin-bottom: 20px;
}

.product-card .product-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn-details,
.btn-cart {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  font-size: 0.95rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn-details {
  background-color: transparent;
  border: 1px solid #007bff;
  color: #007bff;
}

.btn-details:hover {
  background-color: #007bff;
  color: white;
}

.btn-cart {
  background-color: #00d2ff;
  color: white;
}

.btn-cart:hover {
  background-color: #007bff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .store-hero-banner h1 {
    font-size: 2rem;
  }
  .filter-bar {
    justify-content: flex-start;
  }
  .product-grid {
    grid-template-columns: 1fr;
    padding: 40px 16px;
  }
  .product-card {
    padding: 20px;
  }
}

/* How It works */
.how-it-works-journey {
  background: #f8fbff;
  padding: 10px 10px;
  text-align: center;
}

.journey-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 60px auto 0;
  gap: 30px;
}

.journey-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* ✅ align top of every step */
  gap: 50px;
  flex-wrap: wrap;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
  min-height: 240px; /* ✅ force consistent height */
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(to right, #00c6ff, #007bff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.icon-bubble {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.journey-step h3 {
  font-size: 1.1rem;
  color: #004e92;
  margin: 0;
  white-space: nowrap; /* ✅ Prevents line breaks */
  text-align: center;
}


.journey-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.arrow-right {
  font-size: 2rem;
  color: #007bff;
}

/* Gradient Variants */
.gradient-blue {
  background: linear-gradient(to right, #00c6ff, #0072ff);
}

.gradient-green {
  background: linear-gradient(to right, #00e28a, #00b269);
}

.gradient-purple {
  background: linear-gradient(to right, #a18cd1, #fbc2eb);
}

.gradient-pink {
  background: linear-gradient(to right, #ff6a88, #ff99ac);
}

/* Responsive */
@media (max-width: 768px) {
  .journey-track {
    flex-direction: column;
  }
  .arrow-right {
    transform: rotate(90deg);
  }
}


/* Why Buy From us */
.why-choose-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.why-box {
  background: #f4f9ff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.why-icon {
  font-size: 2.2rem;
  background: linear-gradient(to right, #00d2ff, #007bff);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}


/* === Product Page Styles === */

.product-hero {
  background-color: #f8fbff;
  padding: 80px 20px;
}

.product-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.product-left img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-right {
  flex: 1;
  min-width: 280px;
}

.product-right h1 {
  font-size: 2.5rem;
  color: #004e92;
  margin-bottom: 15px;
}

.product-desc {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.product-features li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
  padding-left: 26px;
  position: relative;
}

.product-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00bcd4;
  font-weight: bold;
}

.product-price {
  font-size: 2rem;
  color: #007bff;
  font-weight: bold;
  margin-bottom: 25px;
}

.product-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cart,
.btn-buy {
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
  text-align: center;
}

.btn-cart {
  background-color: #00d2ff;
  color: white;
}

.btn-cart:hover {
  background-color: #007bff;
}

.btn-buy {
  background-color: transparent;
  border: 2px solid #007bff;
  color: #007bff;
}

.btn-buy:hover {
  background-color: #007bff;
  color: white;
}


/* What's Included Section */
.product-includes {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.product-includes h2 {
  font-size: 2rem;
  color: #004e92;
  margin-bottom: 30px;
}

.product-includes ul {
  list-style: none;
  max-width: 600px;
  margin: auto;
  padding: 0;
  text-align: left;
}

.product-includes li {
  font-size: 1rem;
  padding-left: 28px;
  margin-bottom: 15px;
  color: #444;
  position: relative;
}

.product-includes li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00c6ff;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    text-align: center;
  }

  .product-right {
    padding-top: 30px;
  }

  .product-buttons {
    justify-content: center;
  }
}


/* Contact us */
.contact-banner {
      background: linear-gradient(to right, #dff6ff, #e7f3ff);
      text-align: center;
      padding: 100px 20px 60px;
    }
    .contact-banner h1 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #004e92;
      margin-bottom: 10px;
    }
    .contact-banner p {
      font-size: 1.1rem;
      color: #444;
    }
    .contact-options-section {
      text-align: center;
      padding: 60px 20px 30px;
      background-color: #f7faff;
    }
    .contact-options-section h2 {
      font-size: 1.6rem;
      color: #004e92;
      margin-bottom: 10px;
    }
    .contact-options-section p {
      font-size: 1rem;
      color: #444;
      margin-bottom: 25px;
    }
    .cta-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .cta-buttons .cta-btn {
      padding: 12px 22px;
      border-radius: 40px;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      background-color: #007bff;
      color: #fff;
      transition: 0.3s ease;
      box-shadow: 0 6px 12px rgba(0, 123, 255, 0.15);
      text-decoration: none;
    }
    .cta-buttons .cta-btn.primary {
      background: linear-gradient(to right, #00d2ff, #007bff);
    }
    .cta-buttons .cta-btn:hover {
      background: #004e92;
      transform: translateY(-2px);
    }
    .contact-section {
      padding: 60px 20px;
      background-color: #f7faff;
    }
    .contact-form-container {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }
    .contact-form-container h2 {
      font-size: 1.8rem;
      color: #004e92;
      margin-bottom: 20px;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 14px 18px;
      border-radius: 10px;
      font-size: 0.95rem;
      margin-bottom: 16px;
      border: 1px solid #ddd;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
      font-family: 'Poppins', sans-serif;
    }
    .contact-form button {
      background: linear-gradient(to right, #00d2ff, #007bff);
      border: none;
      padding: 14px 30px;
      font-size: 1rem;
      border-radius: 30px;
      color: #fff;
      font-weight: 600;
      transition: 0.3s ease;
      cursor: pointer;
    }
    .contact-form button:hover {
      background: linear-gradient(to right, #007bff, #004e92);
    }