* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.navbar {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    background: #fff;
    border-bottom: 1px solid #eee;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

body {
    padding-top: 70px;
}

.left-section,
.right-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.profile-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    font-size: 20px;
    font-weight: 700;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    cursor: pointer;
    color: #333;
}

.nav-item .arrow {
    font-size: 10px;
    margin-left: 3px;
}

/* Resources styling */
.resources {
   padding: 0;   
    border: none;
    border-radius: 0;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    width: 180px;
    border-radius: 8px;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    z-index: 1000;
}

.dropdown-menu a {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: flex;
}

.language {
    display: flex;
    align-items: center;
    gap: 1px;
    cursor: pointer;
}

.flag {
    width: 20px;
}

.cart {
    background: #0b1a55;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.cart .count {
    background: white;
    color: #0b1a55;
    padding: 3px 8px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}


/* Cart button */
.cart-btn {
    background: #0f1a56;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;

    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-count {
    background: white;
    color: #0f1a56;
    padding: 3px 7px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
}

/* Space fix for content under sticky nav */
body {
    padding-top: 80px;
}



/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: "Inter", sans-serif;
}

/* Hero slider container */
.hero-slider {
  width: 100%;
  height: 100vh;/* ← THIS IS THE PART YOU WANTED */
  position: relative;
  overflow: hidden;
  margin-top: 0; /* ensures no overlap */
  overflow: hidden;
}

/* Each slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100;
  background: rgba(0, 0, 0, 0.35); /* <-- controls faintness */
  z-index: 0;
}


/* Background images */
.slide1 { background-image: url('f3.jpg'); }
.slide2 { background-image: url('f4.jpg'); }
.slide3 { background-image: url('f2.jpg'); }

/* Active slide */
.slide.active {
  opacity: 1;
  z-index: 2;
}

/* --- TEXT CONTENT --- */
.slide .content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  max-width: 600px; 
  text-align: left; /* real site uses left align */
}

/* Tag line (h4) */
.slide .content h4 {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 25px;
}

/* Main hero heading */
.slide .content h1 {
  font-size: 68px;      
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}

/* Subheading */
.slide .content p {
  font-size: 21px;      /* real site ~20-22px */
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 40px;
  color: #e5e5e5;
}

/* HERO BUTTON WRAPPER */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BASE BUTTON */
.hero-buttons .btn {
  padding: 14px 30px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  transition: all 0.25s ease;
}

/* PRIMARY BUTTON */
.hero-buttons .btn:first-child {
  background: #ffffff;
  color: #0d1e50;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.hero-buttons .btn:first-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

/* SECONDARY BUTTON */
.hero-buttons .btn:last-child {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}

.hero-buttons .btn:last-child:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
  }
}


/* --- Slide Animations --- */
@keyframes slideChange {
  0% { opacity: 1; z-index: 1; }
  33% { opacity: 0; z-index: 0; }
  66% { opacity: 0; z-index: 0; }
  100% { opacity: 1; z-index: 1; }
}

.slide1 { animation: slideChange 9s infinite; }
.slide2 { animation: slideChange 9s infinite; animation-delay: 3s; }
.slide3 { animation: slideChange 9s infinite; animation-delay: 6s; }

.features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon {
  background: #f1f3f7;
  padding: 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 26px;
  height: 26px;
}

.feature h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.feature p {
  margin: 3px 0 0;
  color: #69707a;
  font-size: 14px;
}

.category-section {
  width: 100%;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  background: #f8fafc;
}

.icon {
  font-size: 38px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.category-grid {
  width: 85%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.category-card {
  position: relative;
  height: 330px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.28);
}

/* Dark fade overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  color: white;
}

.icon {
  font-size: 38px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.category-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.category-card p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.card-link {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.product-section {
  width: 100%;
  padding: 40px 0;
  text-align: center;
}

.product-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.product-grid {
  width: 85%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Only 4 visible per row */
  gap: 20px;
  margin-top: 20px;
}

.new-card {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: 0.3s ease;
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.new-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 28px rgba(0,0,0,0.25);
}

.newcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1));
}

.card-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
}

.card-content h4 {
  font-size: 22px;
  margin-bottom: 6px;
}

.card-content .rating {
  color: #FFD700;
  margin-bottom: 6px;
  font-size: 18px;
}

.card-content p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.card-content h3 {
  font-size: 20px;
  margin-top: 10px;
}

.product-section {
  width: 100%;
  text-align: center;
  padding: 40px 0;
}

.product-grid {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;  /* <— proper spacing between cards */
}

.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.product-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

.product-card h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 5px;
}

.rating-row {
  font-size: 15px;
  color: #ffb400;
  text-align: left;
  margin-bottom: 6px;
}

.rating-count {
  color: #777;
  margin-left: 4px;
}

.desc {
  font-size: 14px;
  color: #666;
  text-align: left;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-row h3 {
  font-size: 22px;
  color: #001b4e;
}

.icons button {
  background: #001b4e;
  color: white;
  border: none;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 4px;
  font-size: 16px;
}

.icons button:hover {
  background: #003b92;
}

/* SEE MORE WRAPPER */
.see-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* SEE MORE BUTTON */
.see-more-btn {
  padding: 14px 34px;
  border-radius: 14px;
  background: #001b4e;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.see-more-btn:hover {
  background: #00308f;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 480px) {
  .see-more-btn {
    width: 100%;
    text-align: center;
    margin: 0 20px;
  }
}

.protocol-section {
  width: 100%;
  text-align: center;
  padding: 40px 0;
  background: #f8fafc;
}

.protocol-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.protocol-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.protocol-carousel {
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 100%;
}

.protocol-card {
  width: 380px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  text-align: left;
}

.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #363E59, #091968);
}

.icon-box i {
  font-size: 40px;     /* Size of the icon */
  color: #FFFFFF;      /* Blue color */
  display: block;
}


.protocol-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0 10px;
}

.description {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
}

.info-row {
  display: flex;
  gap: 20px;
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.button-row {
  display: flex;
  gap: 15px;
}

.view-btn,
.cart-btn {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.view-btn {
  background: #e5e7eb;
  border: none;
}

.cart-btn {
  background: linear-gradient(135deg, #363E59, #091968) !important;
  color: white;
  border: none;
  align-items: center !important;      /* centers up/down */
  text-align: center;
}

.carousel-dots {
  margin-top: 30px;
}

.dot {
  height: 10px;
  width: 10px;
  background: #d4d4d4;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
}

.dot.active {
  background: #091968;
}

.consultation-section {
  width: 100%;
  text-align: center;
  padding: 40px 0;
  background: #f8fafc;
}

.consultation-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.consultation-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.consultation-carousel {
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 100%;
}

.consultation-card {
  width: 380px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  text-align: left;
}

.icon-box img {
  width: 55px;
  height: 55px;
}

.consultation-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0 10px;
}

.description {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
}

.info-row {
  display: flex;
  gap: 20px;
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.button-row {
  display: flex;
  gap: 15px;
}

.view-btn,
.cart-btn {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.view-btn {
  background: #e5e7eb;
  border: none;
}

.cart-btn {
  background: #0a2efb;
  color: white;
  border: none;
}

.carousel-dots {
  margin-top: 30px;
}

.dot {
  height: 10px;
  width: 10px;
  background: #d4d4d4;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
}

.dot.active {
  background: #0a2efb;
}

.video-section{
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
}

.video-section h2{
  font-size: 28px;
  font-weight: 700;
  color: #083f88;
  margin-bottom: 12px;
}

.video-section p{
  font-size: 16px;
  line-height: 1,6;
  color:#555;
  margin-bottom: 25px;
}

.styled-video{
  width:100%;
  max-width: 700px;
  border-radius: 20px;
  border: 3px solid #1e90ff;
  box-shadow: 0 0 25px rgba(30, 144, 255, 0.3);
  display: block;
  margin: 20px auto;
}

.review-section {
  width: 100%;
  text-align: center;
  padding: 40px 0;
  background: #f8fafc;
}

.review-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.review-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.review-carousel{
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 100%;
}

.review-card {
  width: 380px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  text-align: left;
}

.quote{
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.reviewer-profile{
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color:#6b7280;
  margin-bottom: 12px;
}

.avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d1b3d, #2b4ea2);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
}

/* Stats Section Background */
.stats-section {
    background: linear-gradient(90deg, #0f1d5b, #3d475d);
    padding: 80px 0;
    width: 100%;
}

/* Centering and spacing */
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

/* Individual Stat Box */
.stat-box h2 {
    color: white;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    color: white;
    font-size: 20px;
    opacity: 0.9;
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-box h2 {
        font-size: 45px;
    }

    .stat-box p {
        font-size: 18px;
    }
}

/* Section Styling */
.transform-section {
    text-align: center;
    padding: 90px 20px;
    background-color: #0f172a;
}

.transform-section h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.transform-section .subtitle {
    font-size: 20px;
    color: #cdd3dc;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn .icon {
    font-size: 20px;
    background-color: grey;
}

/* Primary Button */
.btn.primary {
    background: white;
    color: #0f172a;
    border: 2px solid transparent;
}

.btn.primary.icon{
  color: white;
}

.btn.primary:hover {
    opacity: 0.85;
}

/* Outline Button */
.btn.outline {
    background: transparent;
    border: 2px solid #4b5563;
    color: white;
}

.btn.outline:hover {
    background: #1e293b;
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 60px 40px;
    border-top: 1px solid #1e293b;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 15px;
}

.footer-column p {
    color: #cdd3dc;
    max-width: 260px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li a {
    color: #cdd3dc;
    text-decoration: none;
    line-height: 2;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

/* Modal background */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto;
}

/* Modal box */
.modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 800px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.3);
  position: relative;
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* Left side (image) */
.modal-left {
  flex: 1;
  min-width: 250px;
}

.modal-left img {
  width: 100%;
  border-radius: 10px;
}

/* Right side (text) */
.modal-right {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-right h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #001b4e;
}

.modal-rating {
  color: #ffb400;
  margin-bottom: 8px;
  font-size: 16px;
}

.modal-price {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 15px;
  color: #001b4e;
}

.modal-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* Buttons */
.modal-buttons {
  display: flex;
  gap: 10px;
}

.modal-buttons button {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.add-to-cart {
  background-color: #001b4e;
  color: #fff;
}

.add-to-cart:hover {
  background-color: #003b92;
}

.buy-now {
  background-color: #ff6b00;
  color: #fff;
}

.buy-now:hover {
  background-color: #e65c00;
}

/* Responsive for small screens */
@media (max-width: 700px) {
  .modal-content {
    flex-direction: column;
    align-items: center;
  }

  .modal-right {
    width: 100%;
  }

  .modal-left {
    width: 100%;
  }
}

/* Overlay */
.protocol-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

/* Modal box */
.protocol-modal-content {
  background: #ffffff;
  width: 95%;              /* wider on desktop */
  max-width: 680px;        /* was ~520px → bigger & clearer */
  padding: 36px 34px;      /* more internal spacing */
  border-radius: 16px;
  position: relative;
  box-shadow: 0 24px 50px rgba(0,0,0,0.28);
}

/* Close button */
.protocol-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
}

/* Title */
.protocol-title {
  font-size: 24px;
  font-weight: 600;
  color: #001b4e;
  margin-bottom: 12px;
}

/* Meta row */
.protocol-meta {
  display: flex;
  gap: 14px;
  font-size: 14px;
  margin-bottom: 14px;
  color: #555;
}

.protocol-meta span {
  background: #f3f6fb;
  padding: 6px 10px;
  border-radius: 6px;
}

/* Price */
.protocol-price {
  font-size: 22px;
  font-weight: 700;
  color: #001b4e;
  margin-bottom: 16px;
}

/* Description */
.protocol-description {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 22px;
}

/* Actions */
.protocol-actions button {
  width: 100%;
  padding: 13px;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #001b4e;
  color: #fff;
  transition: background 0.2s ease;
}

.protocol-actions button:hover {
  background: #003b92;
}

.consultation-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  justify-content: center;
  align-items: center;
  z-index: 1300;
}

.consultation-modal-content {
  background: #fff;
  width: 95%;
  max-width: 720px;
  padding: 38px 36px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.consultation-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;
  color: #555;
}

.consultation-modal-content h2 {
  font-size: 28px;
  color: #001b4e;
  margin-bottom: 14px;
}

.consultation-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.consultation-meta span {
  background: #f1f4fa;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.consultation-price {
  font-size: 26px;
  font-weight: 700;
  color: #001b4e;
  margin-bottom: 18px;
}

.consultation-description {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 28px;
}

.consultation-actions button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #001b4e;
  color: #fff;
}

#floatingCart {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #001b4e;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#floatingCart:hover {
  background-color: #003b92;
}

/* ===========================
   MOBILE RESPONSIVENESS
   =========================== */
@media (max-width: 768px) {

  /* ---------- NAVBAR ---------- */
  .navbar {
    padding: 0 15px;
  }

  .left-section,
  .right-section {
    gap: 12px;
  }

  .name {
    font-size: 16px;
  }

  /* ---------- HERO SECTION ---------- */
  .hero-slider {
    height: 85vh;
  }

  .slide .content {
    left: 5%;
    right: 5%;
    max-width: 100%;
  }

  .slide .content h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .slide .content p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .slide .content h4 {
    font-size: 14px;
    padding: 6px 14px;
  }

  .slide .content button {
    width: 100%;
    margin-bottom: 12px;
  }

  /* ---------- FEATURES ---------- */
  .features {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  /* ---------- CATEGORY GRID ---------- */
  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 90%;
  }

  .category-card {
    height: 240px;
  }

  /* ---------- PRODUCT GRID ---------- */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ---------- PROTOCOLS ---------- */
  .protocol-carousel {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .protocol-card {
    width: 90%;
  }

  /* ---------- CONSULTATIONS ---------- */
  .consultation-carousel {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .consultation-card {
    width: 90%;
  }

  /* ---------- REVIEWS ---------- */
  .review-carousel {
    flex-direction: column;
    gap: 25px;
  }

  .review-card {
    width: 90%;
  }

  /* ---------- STATS ---------- */
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }

  .stat-box h2 {
    font-size: 40px;
  }

  /* ---------- TRANSFORM SECTION ---------- */
  .transform-section h2 {
    font-size: 32px;
  }

  .transform-section .subtitle {
    font-size: 16px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* ---------- FOOTER ---------- */
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  /* ---------- MODALS ---------- */
  .modal-content,
  .protocol-modal-content,
  .consultation-modal-content {
    width: 95%;
    padding: 20px;
  }
}

