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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f4f7fa;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header & Navigation */
.header {
    background-color: #fff; /* White background */
    padding: 10px 0; /* Smaller padding */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #333; /* Dark text for readability */
}

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

.logo-img,
.logo-imgs {
    height: 100px;
}

.navigation-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navigation-link {
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
    text-decoration: none;
    color: #333; /* Dark links for contrast on white background */
}

.navigation-link:hover,
.navigation-link.active {
    background-color: #50c878; /* Emerald Green */
    color: #fff;
    text-decoration: none;
}
/* Hero Section */
.hero-section {
  background: linear-gradient(
    to right,
    #50c878,
    #046307
  ); /* Emerald green gradient */
  color: #fff;
  padding: 80px 0;
}

.hero-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hero-text-content {
  flex: 1;
}

.hero-pre-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.hero-title {
  font-size: 3rem;
  margin: 20px 0;
}

.hero-description {
  font-size: 1.2rem;
}

/* Login Card */
.hero-form-container {
  flex: 1;
}

.login-card {
  background: #fff;
  color: #333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-title {
  margin-bottom: 20px;
  color: #50c878; /* Emerald Green */
}
.form-group {
  margin-bottom: 15px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-actions {
  text-align: right;
  margin-bottom: 15px;
}

.forgot-link {
  font-size: 0.9rem;
  color: #50c878;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
}

.btn-primary {
  background-color: #50c878;
  color: white;
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-full-width {
  width: 100%;
}

/* Services */
.services-section {
  padding: 60px 0;
  background-color: #fff;
}

.section-title {
  font-size: 2.5rem;
  color: #50c878;
  text-align: center;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-icon {
  font-size: 2rem;
  color: #50c878;
  margin-bottom: 15px;
}
.investment-plans-section {
    padding: 60px 0;
    text-align: center;
    background-color: #fff; /* White background */
    color: #333; /* Dark text for readability */
}

.investment-plans-section .section-title {
    color: #50c878; /* Emerald Green */
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.investment-plans-section .section-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.plan-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #50c878, #43a362);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.plan-card h3 {
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #50c878;
    letter-spacing: 1px;
    position: relative;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    color: #555;
    flex-grow: 1;
}

.plan-card li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card li:last-child {
    border-bottom: none;
}

.plan-card li:hover {
    color: #50c878;
    transform: translateX(5px);
}

.plan-card .btn-secondary {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #50c878; /* Emerald Green button */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.plan-card .btn-secondary:hover {
    background-color: #43a362; /* Darker emerald green on hover */
}

/* Featured plan styling */
.plan-card.featured {
    border: 3px solid #50c878;
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(80, 200, 120, 0.15);
}

.plan-card.featured::before {
    height: 6px;
    background: linear-gradient(90deg, #50c878, #43a362, #50c878);
}

.plan-card.featured h3 {
    font-size: 2rem;
    color: #43a362;
}

.plan-card.featured:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(80, 200, 120, 0.2);
}
/* Large screen optimization for investment plans */
@media (min-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        gap: 35px;
    }
    
    .plan-card {
        padding: 40px 30px;
    }
    
    .plan-card.featured {
        transform: scale(1.08);
    }
    
    .plan-card.featured:hover {
        transform: scale(1.12);
    }
}

/* About Section */
.about-section {
  background-color: #f4f4f4;
  padding: 80px 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  color: #50c878;
  margin-top: 20px;
}

.about-text ul {
  padding-left: 20px;
  list-style: disc;
}

.about-text ul li {
  margin-bottom: 10px;
}

.image {
  flex: 1;
  text-align: right;
}

.image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

/* Know More Section */
.know-more-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.know-more-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
@media only screen and (max-width: 650px) {
  .know-more-grid {
    grid-template-columns: 100%;
  }
}

.customer-service-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color); /* You can define this in root */
  margin-bottom: 20px;
}

.customer-service-content p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.customer-service-content img {
  max-width: 150px;
  height: auto;
  margin-top: 20px;
}

.customer-service-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
  /* color: var(--secondary-color); */
}

.features-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
/* Testimonials Section */
.testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial h3 {
  font-size: 20px;
  margin: 10px 0 5px;
  color: #222;
}

.testimonial .title {
  color: #777;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial .text {
  font-size: 16px;
  color: #555;
}

/* Dots */
.testimonial-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #333;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* FAQ */
.faq-section {
  padding: 60px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 10px;
  color: #007bff;
}

.faq-answer {
  color: #555;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.team-member {
  background-color: var(--light-color);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid var(--primary-color);
}

.team-member h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.team-member p {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Footer Section */
.footer {
  background-color: #2c3e50;
  color: #f7f9fc;
  padding: 60px 0 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 0.9em;
  color: #c0c0c0;
}

.footer-section ul li i {
  margin-right: 10px;
  color: var(--accent-color);
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
}

.newsletter form {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter button {
  background-color: var(--accent-color);
  border: none;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.3s ease;
}

.newsletter button:hover {
  background-color: #50c878; /* Emerald Green */
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content-wrapper,
  .about-content,
  .testimonial-content {
    flex-direction: column;
  }

  .image,
  .hero-form-container {
    text-align: center;
  }
  /* Chatbot Icon */
  #chatbot-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: transform 0.3s ease;
  }

  #chatbot-icon:hover {
    transform: scale(1.1);
  }

  /* Chatbot Container */
  #chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    height: 450px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: Arial, sans-serif;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Chatbot Icon */
  #chatbot-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: transform 0.3s ease;
  }

  #chatbot-icon:hover {
    transform: scale(1.1);
  }

  /* Chatbot Container */
  #chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    height: 450px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: Arial, sans-serif;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* --- Chatbot Styles (Revised) --- */

  /* The icon to open the chatbot */
  #chatbot-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: transform 0.3s ease;
  }

  #chatbot-icon:hover {
    transform: scale(1.1);
  }

  /* The main chatbot container */
  #chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    height: 450px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex; /* Use flexbox for better layout */
    flex-direction: column;
    font-family: Arial, sans-serif;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* The icon to open the chatbot */
  #chatbot-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color); /* Use the site's primary blue */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: transform 0.3s ease;
  }

  #chatbot-icon:hover {
    transform: scale(1.1);
  }

  /* --- Floating Chatbox Icon with Notification --- */
  #chatbot-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: transform 0.3s ease;
  }

  #chatbot-icon:hover {
    transform: scale(1.1);
  }

  .chatbot-notification {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: red;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 50%;
  }

  /* --- Chatbox Container --- */
  #chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    height: 450px;
    background-color: #2c3e50;
    border: 1px solid #4a6480;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Class to hide the chatbot */
  .chatbot-hidden {
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
  }

  #chatbot-header {
    background-color: #2c3e50;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    flex-shrink: 0;
  }

  #chatbot-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f7f9fc;
    color: #333;
    border-bottom: 1px solid #eee;
  }

  #chatbot-input {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #f7f9fc;
    box-sizing: border-box;
    flex-shrink: 0;
    border-top: 1px solid #ddd;
  }
  /* --- Global Styles and Variables --- */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  :root {
    --primary-color: #50c878;
    --secondary-color: #f7f9fc;
    --dark-color: #2c3e50;
    --light-color: #ffffff;
    --text-color: #333333;
    --border-radius: 8px;
  }

  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--text-color);
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* --- Header --- */
  .header {
    background-color: var(--light-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }

  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    height: 40px;
  }

  .navigation-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    text-decoration: none;
  }

  .navigation-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease;
  }

  .navigation-links a:hover {
    color: var(--primary-color);
  }

  /* --- Services Page Styles --- */
  .services-page-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
  }

  .service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #555;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .service-card {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .service-icon-wrapper {
    background-color: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
  }

  .service-icon {
    font-size: 2.5rem;
    color: var(--light-color);
  }

  .service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
  }

  .service-card p {
    color: #666;
    line-height: 1.6;
  }

  /* --- Know More Section (Main Content) --- */
  .know-more {
    padding: 80px 0;
    background-color: var(--secondary-color);
  }

  /* --- Team Section --- */
  .team-section {
    padding: 80px 0;
    background-color: var(--light-color);
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
  }

  .team-member {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .team-member:hover {
    transform: translateY(-10px);
  }

  .team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
  }

  .team-member h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
  }

  .team-member p {
    font-size: 0.9rem;
    color: #6c757d;
  }

  /* --- Gallery Section --- */
  .gallery-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  /* --- Footer --- */
  .footer {
    background-color: var(--dark-color);
    color: #f7f9fc;
    padding: 60px 0 20px;
  }

  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }

  .footer-map,
  .footer-contact {
    flex: 1;
    min-width: 300px;
  }

  .footer-map img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
  }

  .footer-contact h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
  }

  .footer-contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footer-contact input,
  .footer-contact textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
  }

  .footer-contact input::placeholder,
  .footer-contact textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  .footer-contact .btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
  }

  .footer-contact .btn-primary:hover {
    background-color: #0056b3;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom p {
    font-size: 0.9rem;
    color: #c0c0c0;
  }
  /* --- New Styles for Detailed Service Boxes --- */
  .service-box h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    display: inline-block;
  }

  .service-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }

  .service-box li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
  }

  .service-box li:before {
    content: "\2022";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
}
@media (max-width: 470px) {
  .navigation-link {
    font-size: 14px;
  }
  ul.navigation-links {
    gap: 0;
  }
}
