/* ========== BASE STYLES ========== */
:root {
  --primary-color: #4CAF50;       /* Green - agricultural theme */
  --secondary-color: #FFC107;      /* Amber */
  --accent-color: #8BC34A;         /* Light Green */
  --dark-color: #2E7D32;           /* Dark Green */
  --light-color: #F1F8E9;          /* Very Light Green */
  --danger-color: #F44336;         /* Red for errors/discounts */
  --text-color: #333;
  --text-light: #777;
  --white: #fff;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --gray-dark: #757575;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
/* ===== Base Styles ===== */
:root {
  --primary: #4CAF50;       /* Green */
  --primary-dark: #388E3C;  /* Dark Green */
  --primary-light: #C8E6C9; /* Light Green */
  --secondary: #FF9800;     /* Orange */
  --dark: #333;
  --light: #f8f9fa;
  --white: #fff;
  --gray: #6c757d;
  --danger: #dc3545;
  --success: #28a745;
  --font-main: 'Poppins', sans-serif;
}


/* ===== Top Menu ===== */


/* ===== Second Top Menu ===== */


.cart-summary a {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.cart-summary a:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* ===== Main Navigation ===== */
/* Main Navbar */



/* Extra categories (read more) */
.extra-category {
  display: none;
}

.extra-category.show {
  display: block;
}

#read-more-btn {
  margin-bottom: 20px;
}





/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  .second-top-menu .col-md-3 {
    margin-bottom: 15px;
  }
  
  .account-cart {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .top-menu span {
    display: block;
    margin-bottom: 5px;
  }
  
  .social-icons {
    margin-top: 10px;
  }
  
  .logo {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .flash-container {
    justify-content: center;
    text-decoration: none;
  }
  
  .search-bar {
    margin-bottom: 15px;
  }
  
  .navbar-nav {
    padding: 10px 0;
  }
  
  .categories-sidebar {
    width: 300px;
  }
}

@media (max-width: 576px) {
  .flash-container {
    flex-direction: column;
    gap: 5px;
  }
  
  .account-cart {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}


/* ========== HERO CAROUSEL ========== */
.hero-carousel {
  margin-bottom: 30px;
}

.carousel-item {
  height: 500px;
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 5px;
  bottom: 100px;
}

.carousel-caption h5 {
  font-size: 32px;
  font-weight: 700;
}

.carousel-caption p {
  font-size: 18px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

/* ========== COMPANY SLIDER ========== */
.company-slider {
  padding: 30px 0;
  background-color: var(--gray-light);
}

.company-slider .owl-item img {
  width: auto;
  height: 60px;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.company-slider .owl-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ========== WEATHER WIDGET ========== */
.weather-widget {
  padding: 30px 0;
}

.weather-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.weather-icon img {
  width: 80px;
  height: 80px;
}

.temperature span {
  font-size: 36px;
  font-weight: 700;
}

.description {
  font-size: 18px;
  margin-bottom: 10px;
}

.additional-info div {
  margin-bottom: 5px;
  font-size: 14px;
}

/* ========== PRODUCT CARDS ========== */
.product-card {
  border: 1px solid var(--gray-medium);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--box-shadow);
  transform: translateY(-5px);
}
/* Ensure product-card is positioned for badge placement */
/* Badge on top-left of image */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  padding: 9px 20px;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
  /* Color overrides (Bootstrap base with tweaks) */
.product-badge.bg-info {
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  color: #fff;
}
.product-badge.bg-success {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: #fff;
}
.product-badge.bg-danger {
  background: linear-gradient(135deg, #f44336, #c62828);
  color: #fff;
}
.product-badge.bg-secondary {
  background: linear-gradient(135deg, #9e9e9e, #616161);
  color: #fff;
}
/* Color overrides (Bootstrap base with tweaks) */

.product-card-img {
  position: relative;
  overflow: hidden;
  padding-top: 100%; /* 1:1 Aspect Ratio */
}

.product-card-img img {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  flex-grow: 1;
}

.price {
  margin-bottom: 10px;
}

.current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 14px;
}

.stock .progress {
  height: 6px;
  margin-bottom: 5px;
}

.stock small {
  font-size: 12px;
  color: var(--text-light);
}

.product-card-footer {
  padding: 10px 15px;
  background-color: var(--gray-light);
  border-top: 1px solid var(--gray-medium);
}

/* ========== CATEGORIES SECTION ========== */
.categories-section {
  padding: 40px 0;
}

.category-card {
  border: 1px solid var(--gray-medium);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.category-card:hover {
  box-shadow: var(--box-shadow);
}

.category-img {
  height: 120px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card:hover .category-img img {
  transform: scale(1.1);
}

.category-body {
  padding: 15px;
}

.category-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

/* ========== SERVICE BOXES ========== */
.service-boxes {
  padding: 40px 0;
  background-color: var(--light-color);
}

.service-box {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  transition: var(--transition);
}

.service-box:hover {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
}

.service-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-description {
  font-size: 14px;
  color: var(--text-light);
}

/* ========== CART MODAL ========== */
.cart-modal .modal-content {
  border-radius: 10px;
}

.cart-modal .modal-header {
  border-bottom: 1px solid var(--gray-medium);
}

.cart-modal .modal-footer {
  border-top: 1px solid var(--gray-medium);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.quantity-selector .btn {
  padding: 4px 10px;
}

.quantity-input {
  width: 40px;
  text-align: center;
}

/* ========== PRODUCT MODAL ========== */
.product-modal .modal-dialog {
  max-width: 900px;
}

.product-modal-img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.product-modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-modal-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  
}

.product-modal-description {
  margin-bottom: 20px;
}

.product-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* ========== USER PROFILE ========== */
.profile-section {
  padding: 40px 0;
}

.profile-card {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.profile-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  margin-bottom: 15px;
}

.profile-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.profile-email {
  font-size: 14px;
  opacity: 0.8;
}

.profile-body {
  padding: 20px;
}

.profile-detail {
  margin-bottom: 15px;
}

.profile-detail-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* ========== ORDER HISTORY ========== */
.order-history {
  padding: 40px 0;
}

.order-card {
  border: 1px solid var(--gray-medium);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.order-header {
  background-color: var(--gray-light);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray-medium);
}

.order-body {
  padding: 15px;
}

.order-product {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-medium);
}

.order-product:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.order-product-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 15px;
}

.order-product-info {
  flex-grow: 1;
}

.order-product-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.order-product-price {
  color: var(--primary-color);
  font-weight: 600;
}

.order-summary {
  background-color: var(--gray-light);
  padding: 15px;
  border-radius: 0 0 8px 8px;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.order-summary-total {
  font-weight: 700;
  font-size: 18px;
}

/* ========== CHECKOUT PAGE ========== */
.checkout-section {
  padding: 40px 0;
}

.checkout-steps {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gray-medium);
}

.checkout-step {
  padding: 10px 20px;
  position: relative;
  color: var(--text-light);
}

.checkout-step.active {
  color: var(--primary-color);
  font-weight: 600;
}

.checkout-step.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.checkout-form .form-group {
  margin-bottom: 20px;
}

.checkout-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.checkout-form .form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--gray-medium);
  border-radius: 4px;
}

.checkout-summary {
  background-color: var(--gray-light);
  padding: 20px;
  border-radius: 8px;
}

.checkout-summary h4 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-medium);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-total {
  font-weight: 700;
  font-size: 18px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-medium);
}

/* ========== FOOTER ========== */
/* ===== Footer Styles ===== */
.footer {
  background-color: #2a5c3a; /* Dark green */
  color: #fff;
  padding: 50px 0 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #4CAF50, #FF9800, #4CAF50);
}

.footer-logo a {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-logo a:hover {
  color: #FFC107;
  transform: translateY(-3px);
}

address {
  font-style: normal;
  line-height: 1.8;
  margin: 20px 0;
  color: rgba(255,255,255,0.8);
}

address br {
  display: block;
  margin: 8px 0;
}

.footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  color: #FFC107; /* Yellow accent */
  padding-bottom: 10px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #4CAF50;
}

.footer a {
  display: block;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer a:hover {
  color: #FFC107;
  transform: translateX(5px);
}

.footer p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.7;
}

.newsletter-form {
  margin-top: 20px;
}

.input-group {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.input-group input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  font-size: 14px;
  background-color: rgba(255,255,255,0.9);
}

.input-group button {
  background-color: #FF9800; /* Orange */
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-group button:hover {
  background-color: #FFC107;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-methods i {
  font-size: 24px;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.payment-methods i:hover {
  color: #FFC107;
  transform: translateY(-3px);
}

.payment-methods span {
  background-color: rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  .footer {
    text-align: center;
  }
  
  .footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer a:hover {
    transform: none;
  }
  
  .payment-methods {
    justify-content: center;
    margin-top: 15px;
  }
  
  .footer-bottom .col-md-6 {
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer > .container > .row > div {
    margin-bottom: 30px;
  }
  
  .input-group {
    flex-direction: column;
  }
  
  .input-group button {
    padding: 12px;
    justify-content: center;
  }
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    padding: 15px;
  }
  
  .nav-links {
    margin: 15px 0;
  }
  
  .carousel-item {
    height: 400px;
  }
  
  .carousel-caption h5 {
    font-size: 24px;
  }
  
  .carousel-caption p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .weather-content {
    flex-direction: column;
    text-align: center;
  }
  
  .product-modal-actions {
    flex-direction: column;
  }
  
  .checkout-steps {
    flex-wrap: wrap;
  }
  
  .checkout-step {
    flex: 0 0 50%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 300px;
  }
  
  .carousel-caption {
    bottom: 20px;
  }
  
  .carousel-caption h5 {
    font-size: 18px;
  }
  
  .carousel-caption p {
    font-size: 14px;
  }
  
  .checkout-step {
    flex: 0 0 100%;
  }
}
.zoomed {
    transform: scale(2);
    cursor: zoom-out;
    z-index: 1000;
    position: relative;
}
/* Pesticides Page Styling */
.hero-section {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.category-card {
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    height: 200px;
    object-fit: cover;
}

.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

/* Custom button styles */
.btn-success {
    background: linear-gradient(to right, #28a745, #20c997);
    border: none;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(to right, #218838, #1aa179);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-section .row {
        text-align: center;
    }
}

/* Custom CSS for the pest control site */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('{% static "images/hero-bg.jpg" %}');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
    margin-right: 10px;
    padding: 8px 15px;
}

.benefit-card {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    color: #2c7bbe;
}

.service-row {
    padding: 30px 0;
}

.benefits-list {
    list-style-type: none;
    padding-left: 0;
}

.benefits-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
}

.testimonial-card {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('{% static "images/cta-bg.jpg" %}');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}
/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0a1f44, #003366, #005f73);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
  padding: 80px 0;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Futuristic Glow Lines */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("{% static 'images/circuit_pattern.png' %}") repeat;
  opacity: 0.08;
  pointer-events: none;
}

/* Text Styling */
.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 4px 12px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #e0f7fa;
}

/* Badges */
.hero-badges .ai-badge {
  background: rgba(0, 173, 181, 0.15);
  border: 1px solid #00adb5;
  color: #00fff5;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 5px;
  padding: 8px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.hero-badges .ai-badge:hover {
  background: rgba(0, 255, 245, 0.25);
  transform: scale(1.08);
  box-shadow: 0px 0px 15px #00fff5;
}

/* Button */
.stylish-btn {
  font-weight: 600;
  font-size: 1.2rem;
  padding: 12px 30px;
  background: linear-gradient(135deg, #00adb5, #0077b6);
  border: none;
  border-radius: 50px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #fff;
}

.stylish-btn:hover {
  background: linear-gradient(135deg, #0077b6, #00adb5);
  transform: scale(1.08);
  box-shadow: 0px 8px 25px rgba(0,0,0,0.4);
}

/* Hero Image */
.hero-img {
  max-width: 90%;
  border-radius: 20px;
  border: 3px solid rgba(0,255,245,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 245, 0.5);
}
.hover-card {
    transition: all 0.3s ease-in-out;
  }
  .hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
  .text-gradient {
    background: linear-gradient(45deg, #00b894, #0984e3);
    
    -webkit-text-fill-color: transparent;
  }
  .text-gradient {
    background: linear-gradient(45deg, #00b894, #0984e3);
    
    -webkit-text-fill-color: transparent;
  }

  .heading-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00b894, #0984e3);
    border-radius: 6px;
  }

  .section-heading h2 {
    letter-spacing: 0.5px;
  }
.text-gradient {
    background: linear-gradient(45deg, #00b894, #0984e3);
    
    -webkit-text-fill-color: transparent;
  }

  .service-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
  }

  .service-img {
    transition: transform 0.5s ease;
  }

  .service-image-wrapper:hover .service-img {
    transform: scale(1.05);
  }

  .ai-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 184, 148, 0.9);
    color: #fff;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  }

  .benefits-list {
    list-style: none;
    padding: 0;
  }

  .benefits-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
  }

  .stylish-btn {
    background: linear-gradient(90deg, #00b894, #0984e3);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
  }

  .stylish-btn:hover {
    background: linear-gradient(90deg, #0984e3, #00b894);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-2px);
  }

  .highlight {
    color: #00b894;
    font-weight: 600;
  }  
  