/* Luxury Color Variables */
:root {
  --primary: #009444;         /* Deep navy blue */
  --primary-dark: black;    /* Darker navy */
 /*  --secondary: #bfa14a;       Warm gold */
  --bg: #fefcf7;              /* Soft cream */
  --bg-alt: #00944505;          /* Light cream */
  --text: #2e2e2e;            /* Dark charcoal */
  --text-light: #6f6f6f;      /* Medium grey */
  --card: #ffffff;            /* White */
  /* --border: #d4cfa9;          Pale gold */
}

body.dark-mode {
  --primary: #0a1c33;         /* Dark navy */
  --primary-dark: black;    /* Near black navy */
   /* --secondary: #c9b35a;      Bright gold */
  --bg: #1c1c1c;              /* Almost black */
  --bg-alt: #2a2a2a;          /* Dark grey */
  --text: #eae6dc;            /* Soft cream text */
  --text-light: #bfb8a5;      /* Muted gold */
  --card: #2e2e2e;            /* Dark card background */
   /* --border: #5a4d1e;         Deep gold border */
}

/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: var(--bg);
  box-shadow: 0 2px 10px rgba(11, 37, 69, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  height: 80px;
  width: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 1px var(--secondary));
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: black;
  text-shadow: 0 0 3px var(--secondary);
}
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
  color: black;
  font-size: 15px;
}
.nav-link {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--secondary);
  text-shadow: 0 0 5px var(--secondary);
}
.nav-signup-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px var(--secondary);
}
.nav-signup-btn:hover {
  background: var(--primary-dark);
  color: #eae6dc;
  box-shadow: 0 0 15px var(--secondary);
  transform: translateY(-2px);
}
.theme-toggle-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.3rem;
  cursor: pointer;
  margin-left: 10px;
  transition: color 0.3s;
}
.theme-toggle-btn:hover {
  color: var(--secondary);
  text-shadow: 0 0 5px var(--secondary);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: var(--bg-alt);
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-size: 3.0rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 5px var(--secondary);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 20px;
}
.btn-primary {
  background: var(--primary);
  color: var(--bg);
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px var(--secondary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 25px var(--secondary);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--bg);
  box-shadow: 0 0 15px var(--secondary);
}
.hero-image {
  text-align: center;
}
.hero-img {
  width: 100%;
  max-width: 450px;
  height: 400px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 0 25px var(--secondary);
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--bg);
}
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.about-image {
  flex: 0 0 450px;
  text-align: center;

}
.about-img {
  width: 100%;
  max-width: 450px;
  height: 450px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 0 20px var(--secondary);
}
.about-text {
  flex: 1 1 400px;
  max-width: 600px;
}
.about-text .section-title{
    margin-bottom: 0;
    font-weight: 800;
    font-size: 30px;
}
.about-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  text-shadow: 0 0 3px var(--secondary);
}
.about-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-light);
}
.feature-item i {
  color: var(--secondary);
  font-size: 1.2rem;
}

/* Horizontal counters container */
.horizontal-stats {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  margin-top: 20px;
}
.stat-item {
  width: 200px;
  height: 200px;
  background: var(--bg-alt);
  border-radius: 12px;
  box-shadow: 0 0 15px var(--secondary);
  text-align: center;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.8rem;
}
.stat-item h4 {
  margin-bottom: 5px;
  color: var(--primary);
}
.stat-item p {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--bg-alt);
}
.services .section-title{
    text-align: center;
    padding-bottom: 3%;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--card);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px var(--secondary);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px var(--secondary);
}
.service-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary);
  font-size: 2rem;
  filter: drop-shadow(0 0 3px var(--secondary));
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 15px;
}
.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Section */
.team {
  padding: 80px 0;
  background: var(--bg);
}
.team .section-title{
    text-align: center;
    padding-bottom: 30px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.team-member {
  background: var(--card);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px var(--secondary);
  transition: all 0.3s ease;
}
.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px var(--secondary);
}
.member-image {
  margin-bottom: 20px;
}
.member-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  box-shadow: 0 0 8px var(--secondary);
}
.team-member h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.member-role {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 15px;
}
.member-bio {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}
.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.member-social a {
  color: #009444;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.member-social a:hover {
  color: var(--secondary);
  filter: drop-shadow(0 0 6px var(--secondary));
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: var(--bg-alt);
}
.pricing .section-title{
    text-align: center;
    padding-bottom: 40px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0 20px var(--secondary);
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary);
  box-shadow: 0 0 30px var(--secondary);
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px var(--secondary);
}
.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}
.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 0 3px var(--secondary);
}
.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  text-shadow: 0 0 3px var(--secondary);
}
.price {
  margin-bottom: 30px;
}
.currency {
  font-size: 1.5rem;
  color: var(--text-light);
  vertical-align: top;
}
.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}
.period {
  color: var(--text-light);
  font-size: 1rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}
.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}
.pricing-features .fa-check {
  color: var(--secondary);
}
.pricing-features .fa-times {
  color: #8b0000;
}
.pricing-btn {
  width: 100%;
  background: var(--primary);
  color: var(--bg);
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px var(--secondary);
}
.pricing-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 25px var(--secondary);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--bg-alt);
  padding: 30px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 0 20px var(--secondary);
}
.testimonial-content p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.author-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 8px var(--secondary);
}
.author-info h4 {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}
.testimonial-rating {
  color: #fbbf24;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--bg-alt);
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 30px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-item i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 5px;
}
.contact-item h4 {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.contact-item p {
  color: var(--text-light);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  padding: 60px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px var(--secondary));
}
.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 0 5px var(--secondary);
}
.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section ul li a:hover {
  color: white;
  text-shadow: 0 0 5px var(--secondary);
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-links a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: white;
  filter: drop-shadow(0 0 6px var(--secondary));
}
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
}
.newsletter-form button {
  background: white;
  color: var(--primary);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 10px var(--secondary);
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid white;
  color: white;
}
.footer-bottom a{
    text-decoration: none;
    color:white;
}

/* Chatbot */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.chatbot-toggle {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 15px var(--secondary);
  transition: all 0.3s ease;
}
.chatbot-toggle:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 25px var(--secondary);
  transform: scale(1.1);
}
.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 0 30px var(--secondary);
  display: none;
  flex-direction: column;
}
.chatbot-header {
  background: var(--primary);
  color: white;
  padding: 15px 20px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 15px var(--secondary);
}
.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}
.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}
.message {
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 18px;
  max-width: 80%;
}
.bot-message {
  background: var(--bg-alt);
  color: var(--text);
  align-self: flex-start;
  box-shadow: 0 0 10px var(--secondary);
}
.user-message {
  background: var(--primary);
  color: var(--bg);
  align-self: flex-end;
  margin-left: auto;
  box-shadow: 0 0 10px var(--secondary);
}
.chatbot-input {
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
}
.chatbot-input input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 20px;
  outline: none;
}
.chatbot-input button {
  background: var(--primary);
  color: var(--bg);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--secondary);
}

/* Signup Page Styles */
.signup-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: var(--bg-alt);
}

.signup-header {
  text-align: center;
  margin-bottom: 60px;
}

.signup-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.signup-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  text-shadow: 0 0 5px var(--secondary);
}

.signup-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.signup-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 900px;
  width: 100%;
}

.signup-card {
  background: var(--card);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 20px var(--secondary);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  cursor: pointer;
}

.signup-card.card-hover,
.signup-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px var(--secondary);
}

.business-signup {
  border-color: transparent;
}
.business-signup.card-hover,
.business-signup:hover {
  border-color: var(--primary);
}

.customer-signup {
  border-color: transparent;
}
.customer-signup.card-hover,
.customer-signup:hover {
  border-color: var(--secondary);
}

.signup-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
  filter: drop-shadow(0 0 4px var(--secondary));
}

.business-signup .signup-icon {
  background: #f0e6c8;
  color: var(--primary);
}

.customer-signup .signup-icon {
  background: #f7f9f6;
  color: var(--secondary);
}

.signup-card h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
  text-shadow: 0 0 3px var(--secondary);
}

.customer-signup h2 {
  color: var(--secondary);
}

.signup-card > p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.signup-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
  padding-left: 0;
}

.signup-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text);
}

.signup-features i {
  color: var(--secondary);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 3px var(--secondary));
}

.signup-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--bg);
  box-shadow: 0 0 15px var(--secondary);
}

.business-btn {
  background: var(--primary);
}

.business-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 25px var(--secondary);
  transform: translateY(-2px);
}

.customer-btn {
  background: var(--secondary);
  color: var(--bg);
}

.customer-btn:hover {
  background: #a68f2f;
  box-shadow: 0 0 25px var(--secondary);
  transform: translateY(-2px);
}

.signup-footer {
  text-align: center;
  margin-top: 40px;
  color: var(--text-light);
}

.signup-footer p {
  margin-bottom: 10px;
}

.login-link,
.back-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-link:hover,
.back-link:hover {
  color: var(--secondary);
  text-shadow: 0 0 5px var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .signup-options {
    grid-template-columns: 1fr;
  }
}

/* Animations */
.navbar.scrolled {
  background: rgba(254, 252, 247, 0.95);
  backdrop-filter: blur(10px);
}
.fade-in-up {
  animation: fadeInUp 0.8s ease;
}
.fade-in-right {
  animation: fadeInRight 0.8s ease 0.3s both;
}
.animate-in {
  animation: slideInUp 0.6s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for smaller devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .horizontal-stats {
    flex-direction: column;
    gap: 15px;
  }
}



/* Responsive Navigation */
@media (max-width: 768px) {
  .logo-text{
    display: none;
  }
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    display: none;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    flex-direction:row;
    padding-left: 40px;
  }

  .hero-img {
    height: auto;
    max-height: 300px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

/* Smaller Device Adjustments */
@media (max-width: 480px) {
  .hero-title,
  .section-title {
    font-size: 25px;
  }

  .btn-primary,
  .btn-secondary,
  .pricing-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .stat-item {
    width: 100%;
    height: auto;
    padding: 20px 10px;
  }
}

/* Prevent horizontal overflow */
body {
  overflow-x: hidden;
}


/* Hide hero image on mobile */
@media (max-width: 768px) {
  .hero-image {
    display: none;
  }

  .about-img {
    width: 90%;
    height: auto;
    max-width: 90%;
  }
}
