/* Navbar Styling */
.navbar {
  background-color: darkblue; /* Custom dark blue background */
  padding: 20px; /* Add padding for better spacing */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}

.navbar .navbar-brand {
  font-size: 1.8rem; /* Slightly larger text */
  font-weight: bold;
}

.navbar .nav-link {
  font-size: 1.2rem;
  transition: color 0.3s ease-in-out; /* Smooth color change on hover */
}

.navbar .nav-link.active {
  color: lightblue !important; /* Highlight the active link */
  font-weight: bold; /* Emphasize active link */
}

.navbar .btn {
  font-size: 1rem;
  padding: 10px 15px;
}

/* Modals Styling */
.modal-header {
  background-color: #f1f1f1; /* Light gray for header background */
  border-bottom: 2px solid #dedede; /* Subtle border */
}

.modal-header .btn-close {
  color: #000; /* Black close button */
}

.modal-title {
  font-size: 1.5rem; /* Larger title text */
}

.modal-body {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.5;
}

.modal-body .form-control {
  border: 2px solid #dedede; /* Subtle border */
  border-radius: 5px;
  font-size: 1rem;
  padding: 10px;
}

.modal-body .form-control:focus {
  border-color: #007bff; /* Highlight on focus */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.modal-body .btn {
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-body .btn:hover {
  transform: translateY(-2px); /* Subtle lift on hover */
}

/* Custom Buttons */
.btn-primary {
  background-color: #007bff; /* Bootstrap primary */
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3; /* Darker shade */
}

.btn-danger {
  background-color: #d9534f;
  border: none;
}

.btn-danger:hover {
  background-color: #c9302c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar .navbar-brand {
    font-size: 1.5rem;
  }

  .navbar .nav-link {
    font-size: 1rem;
  }

  .modal-title {
    font-size: 1.2rem;
  }
}
/* special someone section  */
.special-someone-section {
  background-color: #f8f9fa;
  padding: 6rem 0;
}

.special-someone-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: red; /* Dark gray for the title */
}

.special-someone-section p {
  font-size: 1.25rem;
  color: #6c757d; /* Medium gray for paragraph */
}

/* Card Styling */
.special-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 12px;
  background-color: #ffffff;
}

.special-card:hover {
  transform: translateY(-10px); /* Lift effect */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Soft shadow */
}

.special-card .card-body {
  padding: 2rem;
}

/* Step Header */
.step-header {
  font-size: 1.8rem;
  font-weight: bold;
  color: #007bff; /* Bootstrap primary blue */
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Step Icon */
.step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

/* Card Text */
.card-text {
  font-size: 1.1rem;
  color: #495057; /* Slightly darker gray for readability */
  line-height: 1.5;
}

/* Button Styling */
.special-card .btn {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  background-color: #007bff;
  color: #fff;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.special-card .btn:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: scale(1.05); /* Slight zoom effect */
}

/* Modal Styling */
.modal-content {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* Shadow for the modal */
}

.modal-header {
  border-bottom: 2px solid #007bff; /* Accent under the header */
}

.modal-header h5 {
  color: #343a40; /* Dark gray */
  font-weight: bold;
}

.modal-body .form-label {
  font-size: 0.9rem;
  font-weight: bold;
  color: #495057; /* Text color for labels */
}

.modal-body .form-control,
.modal-body .form-select {
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 1rem;
  padding: 0.75rem;
}

.modal-body .btn {
  background-color: #007bff;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.modal-body .btn:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .special-someone-section h2 {
    font-size: 2rem;
  }

  .special-card .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .step-header {
    font-size: 1.5rem;
  }

  .step-icon {
    width: 60px;
    height: 60px;
  }

  .card-text {
    font-size: 1rem;
  }
}
/* Explore profile by  regilion */
.scrolling-wrapper {
  display: flex;
  overflow-x: auto; /* Allows horizontal scrolling */
  gap: 30px; /* Adds space between cards */
  padding: 10px;
  scroll-snap-type: x mandatory; /* Ensures smooth snap scrolling */
}

/* Ensure larger image sizes inside the card */
.image-container {
  height: 450px; /* Increased height for larger images */
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images are fully visible while maintaining aspect ratio */
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Image hover effect */
.image-container img:hover {
  transform: scale(1.05); /* Zoom effect on hover */
}

/* Card styles */
.explore-card {
  flex: 0 0 auto; /* Prevents cards from stretching, maintaining fixed size */
  width: 400px; /* Increased card width for more spacious content */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border-radius: 12px; /* Smoother edges */
  background: linear-gradient(to top, #ffffff, #f8f9fa); /* Subtle gradient */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Default shadow */
  scroll-snap-align: center; /* Ensures that cards align to the center when scrolling */
}

/* Highlight on hover */
.explore-card:hover {
  transform: translateY(-15px) scale(1.05); /* Card grows slightly larger */
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2); /* Stronger shadow */
  background-color: #e9ecef; /* Light background change on hover */
  border: 2px solid #007bff; /* Highlight border */
}

/* Title in cards */
.card-title {
  font-size: 24px;
  font-weight: bold;
  color: #007bff; /* Blue color for the title */
}

/* Card text */
.card-text {
  font-size: 16px;
  color: #555; /* Dark gray for description text */
  line-height: 1.5;
}

/* Button styling */
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  padding: 0.75rem 1.5rem;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Section Styling */
/* Explore by Religion Section Styling */
.explore-religion-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f8f9fa; /* Light gray background */
}

.explore-religion-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: purple; /* Dark gray for the section heading */
  margin-bottom: 30px;
  text-align: center;
}

.explore-religion-section p {
  font-size: 18px;
  color: #6c757d; /* Medium gray for description */
  text-align: center;
  margin-bottom: 40px;
}

/* Image Container Styling */
.image-container {
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  height: 200px; /* Set a height for images */
  overflow: hidden; /* Hide any part of the image that overflows */
  background-color: #f9f9f9; /* Optional background for visual balance */
}

/* Image Styling */
.card-img-top {
  width: 100%; /* Ensure the image fills the container width */
  height: 100%; /* Ensure the image fills the container height */
  object-fit: cover; /* Crop the image to fill the container */
  object-position: center; /* Center the image within the container */
}

/* Ensuring responsiveness on smaller screens */
@media (max-width: 768px) {
  .explore-card {
    width: 100%; /* Full width on smaller screens */
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 20px; /* Adjust title size */
  }

  .card-text {
    font-size: 14px; /* Adjust text size */
  }

  .btn-primary {
    font-size: 14px; /* Adjust button font size */
  }
}

/* Success stories section */
.testimonials-section {
  background-color: #f8f9fa;
  padding-top: 60px;
  padding-bottom: 60px;
}

.testimonials-section h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #343a40;
  margin-bottom: 30px;
  text-align: center;
}

.testimonials-section p {
  font-size: 1.8rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 40px;
}

/* Text styling for testimonial names */
.testimonial-name {
  font-size: 3rem;
  color: #ff4b5c; /* Red color for name */
  font-weight: bold;
  margin-bottom: 20px;
}

/* Text styling for testimonial descriptions */
.testimonial-text {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.6;
  font-style: italic;
}

/* Image container and hover effect */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.testimonial-img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

/* Hover effect for images */
.testimonial-img:hover {
  transform: scale(1.05); /* Zoom effect on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Light shadow on hover */
}

/* Responsive styling */
@media (max-width: 768px) {
  .testimonial-name {
    font-size: 2.5rem; /* Slightly smaller name font */
  }

  .testimonial-text {
    font-size: 1.4rem; /* Slightly smaller text font */
  }

  .testimonial-img {
    max-height: 300px; /* Constrain image height on smaller screens */
  }
}
/* Mobile Verified, Customer Served, Successful Matchmaking" section  */
.stats-section {
  background-color: #f8f9fa; /* Light background */
  padding-top: 60px;
  padding-bottom: 60px;
}

.stats-section h2 {
  color: #4a4e69; /* Purple color for the main title */
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.stats-section p {
  color: #2b2d42; /* Darker text color for the subtitle */
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 40px;
}

/* Card Styling for Stats */
.stats-card {
  border: none;
  border-radius: 10px;
  background-color: transparent;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  text-align: center;
}

.stats-card:hover {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow on hover */
}

/* Icon Styles */
.stats-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

/* Stat Number Styling */
.stats-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Stats Text Styling */
.stats-text {
  font-size: 1.2rem;
  color: #6c757d;
  font-weight: 500;
}

/* Color Scheme for Each Stat */
.stats-card:nth-child(1) .stats-number {
  color: #4caf50; /* Green for Mobile Verified */
}

.stats-card:nth-child(2) .stats-number {
  color: #2196f3; /* Blue for Customers Served */
}

.stats-card:nth-child(3) .stats-number {
  color: #f44336; /* Red for Successful Matchmaking */
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-section h2 {
    font-size: 2.5rem; /* Slightly smaller font for smaller screens */
  }

  .stats-section p {
    font-size: 1.3rem; /* Smaller subtitle font for mobile */
  }

  .stats-card {
    padding: 20px;
  }

  .stats-card img {
    width: 80px; /* Slightly smaller icons on mobile */
    height: 80px;
  }

  .stats-number {
    font-size: 2.5rem; /* Slightly smaller stat numbers on mobile */
  }

  .stats-text {
    font-size: 1.1rem; /* Smaller text for stats on mobile */
  }
}
/* Premium Membership Section */
.premium-section {
  background: linear-gradient(to right, #f5f7fa, #c3cfe2); /* Light gradient background */
  padding-top: 60px;
  padding-bottom: 60px;
}

.premium-section h2 {
  color: #4a4e69; /* Purple color for the main title */
  text-shadow: 2px 2px #c3cfe2; /* Light shadow effect */
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.premium-section p {
  color: #2b2d42; /* Darker color for the subtitle */
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 40px;
}

/* Card Styling for Premium Plans */
.premium-section .card {
  border-radius: 10px;
  height: 100%;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-section .card:hover {
  transform: translateY(-10px); /* Lift the card on hover */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Add shadow for hover effect */
}

.premium-section .card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}

.premium-section .card h3 {
  font-size: 1.8rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.premium-section .card p {
  font-size: 1.2rem;
  color: #03045e;
  margin-bottom: 20px;
}

.premium-section .card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.premium-section .card ul li {
  font-size: 1.1rem;
  color: #333;
}

.premium-section .card .subscribe-btn {
  background-color: #0077b6; /* Blue button color */
  color: white;
  font-size: 1.1rem;
  padding: 12px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.premium-section .card .subscribe-btn:hover {
  background-color: #005f8c; /* Darker blue on hover */
}

/* Specific Plan Colors */
.premium-section .card:nth-child(1) {
  border: 2px solid #64dfdf;
  background-color: #caf0f8;
}

.premium-section .card:nth-child(2) {
  border: 2px solid #ffbe0b;
  background-color: #fff3b0;
}

.premium-section .card:nth-child(3) {
  border: 2px solid #f72585;
  background-color: #ffccd5;
}

.premium-section .card:nth-child(4) {
  border: 2px solid #4cc9f0;
  background-color: #d0f4de;
}

/* Responsive Design */
@media (max-width: 768px) {
  .premium-section h2 {
    font-size: 2.5rem; /* Slightly smaller font for smaller screens */
  }

  .premium-section p {
    font-size: 1.3rem; /* Smaller subtitle font for mobile */
  }

  .premium-section .card {
    padding: 20px;
  }

  .premium-section .card h3 {
    font-size: 1.6rem;
  }

  .premium-section .card p {
    font-size: 1.1rem;
  }

  .premium-section .card ul li {
    font-size: 1rem;
  }

  .premium-section .card .subscribe-btn {
    font-size: 1rem;
  }
}

/* Modal Styling */
.modal-content {
  border-radius: 10px;
}

.modal-header {
  background-color: #4a4e69; /* Purple background for the header */
  color: white;
}

.modal-title {
  font-size: 1.8rem;
}

.modal-body {
  padding: 30px;
}

.modal-body .form-label {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.modal-body .form-control {
  font-size: 1.1rem;
  padding: 10px;
}

.modal-body .form-select {
  font-size: 1.1rem;
  padding: 10px;
}

.modal-footer {
  text-align: center;
}

.modal-footer .btn-primary {
  background-color: #0077b6;
  border: none;
  font-size: 1.2rem;
  padding: 12px 15px;
  border-radius: 5px;
}

.modal-footer .btn-primary:hover {
  background-color: #005f8c;
}
/* Matrimonial Features Description Section */
.features-description {
  background: #f7fafc; /* Light background color for the section */
  padding-top: 60px;
  padding-bottom: 60px;
}

.features-description h2 {
  color: #4a4e69; /* Purple color for the main heading */
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.features-description p {
  color: #2b2d42; /* Darker color for the subtitle */
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 40px;
}

/* Individual Feature Box */
.features-description .row {
  margin-bottom: 50px;
}

.features-description .col-md-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-description img {
  max-width: 20%; /* Ensures images are proportionally sized */
  height: auto;
  margin-bottom: 20px;
}

.features-description h3 {
  color: #0077b6; /* Blue color for headings */
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.features-description p {
  color: #03045e; /* Darker text color */
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Responsive Design for Feature Section */
@media (max-width: 768px) {
  .features-description h2 {
    font-size: 2.5rem;
  }

  .features-description p {
    font-size: 1.3rem;
  }

  .features-description img {
    max-width: 30%; /* Larger image size for mobile */
  }

  .features-description h3 {
    font-size: 1.6rem;
  }
}

/* Trusted by Millions Section */
a {
  text-decoration: none;
}

.trusted-by-millions {
  background: #fce4ec;
  padding: 30px 0;
  border-radius: 10px;
  text-align: center;
}

.trusted-by-millions h2 {
  color: #1e88e5;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 20px;
}

.trusted-by-millions p {
  color: #1565c0;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.row.justify-content-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.trusted-by-millions .col-md-4 {
  flex: 1 1 300px;
  max-width: 300px;
  padding: 10px;
}

.trusted-by-millions .col-md-4 a {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  background: #e3f2fd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.trusted-by-millions .col-md-4 a:hover {
  transform: translateY(-5px);
}

.trusted-by-millions .img-fluid {
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 15px;
}

.trusted-by-millions h5 {
  color: #0d47a1;
  font-weight: bold;
  font-size: 1.3rem;
}

.trusted-by-millions p {
  color: #555;
  font-size: 1rem;
  line-height: 1.4;
}

.trusted-by-millions .col-md-4 a:nth-child(1) {
  background: #e3f2fd;
}

.trusted-by-millions .col-md-4 a:nth-child(2) {
  background: #f3e5f5;
}

.trusted-by-millions .col-md-4 a:nth-child(3) {
  background: #e8f5e9;
}

/* Responsive Design for Trusted by Millions Section */
@media (max-width: 768px) {
  .trusted-by-millions .col-md-4 {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .trusted-by-millions h2 {
    font-size: 2.5rem;
  }

  .trusted-by-millions p {
    font-size: 1.1rem;
  }

  .trusted-by-millions .col-md-4 a {
    margin-bottom: 20px;
  }
}

/* <style> */
        /* General Styling */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

        /* Section Styling */
        .carousel-section {
            background-color: rgb(207, 150, 197);
            background-size: cover;
            padding: 100px 0;
            text-align: center;
            margin-top: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }

        /* Section Title and Subtitle Styling */
        .carousel-section h2 {
            font-size: 60px;
            font-weight: bold;
            color: rgb(56, 56, 211);
            margin-bottom: 15px;
            text-shadow: 2px 2px 8px rgba(162, 145, 145, 0.934);
        }

        .carousel-section p {
            font-size: 28px;
            color: rgb(17, 17, 110);
            margin-bottom: 40px;
            text-shadow: 1px 1px 6px rgba(218, 189, 189, 0.5);
        }

        .carousel-container {
            width: 90%;
            margin: 0 auto;
            overflow: hidden;
        }

        /* Card Container Styling */
        .carousel-wrapper {
            display: flex;
            justify-content: center; /* Center the card */
            overflow: hidden; /* Hide overflow */
        }

        /* Carousel Item Styling */
        .carousel-item {
            width: 100%; /* Only one item displayed at a time */
            height: 400px; /* Fixed height for the card */
            padding: 20px;
            box-sizing: border-box;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            text-align: left;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(210, 210, 255, 0.8)); /* Light gradient background */
            border-radius: 15px; /* Rounded corners */
            margin: 0 10px; /* Reduced margin for better card spacing */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Soft shadow for a lifted effect */
            border: none; /* Removed border */
        }

        .carousel-item:hover {
            transform: scale(1.05); /* Slight scale effect on hover */
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
            background-color: rgba(255, 255, 255, 0.9); /* Slightly brighter background on hover */
        }

        /* Image Styling (Logo on the left) */
        .carousel-item img {
            max-width: 100px; /* Slightly smaller image size */
            height: 100px;
            border-radius: 50%;
            margin-right: 20px;
            border: 3px solid #fff; /* White border around images */
            transition: transform 0.3s ease;
        }

        .carousel-item:hover img {
            transform: rotate(15deg); /* Rotate image slightly on hover */
        }

        /* Right side Text Styling */
        .carousel-item .content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }

        .carousel-item h3 {
            font-size: 25px; /* Slightly smaller font for name */
            margin: 0;
            font-weight: bold;
            color: #2c3e50; /* Darker color for better readability */
        }

        .carousel-item .stars {
            color: gold;
            margin: 10px 0;
        }

        .carousel-item p {
            font-size: 16px; /* Slightly smaller text for review */
            color: #7f8c8d; /* Lighter color for text */
            margin-top: 10px;
            font-style: italic;
            line-height: 1.5; /* Improve line spacing for readability */
        }

    /* </style> */



/* footer srction  */
/* General Container */
.container {
  flex-grow: 1;
  max-width: 2100px;
  margin: 20px auto;
  padding: 20px;
  
}

/* Footer Styling */
footer {
  background-color: #000; /* Black background for the footer */
  color: #fff; /* White text color */
  padding: 30px 20px;
  font-family: Arial, sans-serif;
  width: 100%; /* Ensures full width of the viewport */
  position: relative;
  bottom: 0;
}

/* Footer Container */
.footer-container {
  width: 100%; /* Full width for all screens */
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 0 20px; /* Padding for content spacing */
  flex-wrap: wrap; /* Ensure responsiveness on smaller screens */
}

/* Footer Sections */
.footer-section {
  flex: 1; /* Distribute sections equally */
  min-width: 200px; /* Prevent sections from collapsing */
}

/* Footer Heading */
.footer-section h3 {
  font-size: 1.5em;
  margin-bottom: 8px;
  color: #f7a400; /* Accent color for headings */
}

/* Footer Links */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #fff; /* White text color for links */
  font-size: 1.1em;
}

.footer-section ul li a:hover {
  color: #f7a400; /* Highlight color on hover */
}

/* Social Media Icons */
.social-media {
  display: flex;
  gap: 10px;
}

.app-download ul {
  display: flex;
  gap: 10px;
}

.app-download ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1em;
  border: 1px solid #fff;
  padding: 6px 12px;
  border-radius: 5px;
}

.app-download ul li a:hover {
  background-color: #f7a400; /* Highlight on hover */
}

/* Newsletter Input */
.newsletter input {
  padding: 6px;
  width: 65%;
  border-radius: 5px;
  border: none;
  margin-right: 10px;
  font-size: 1.2em;
}

/* Newsletter Button */
.newsletter button {
  padding: 6px 18px;
  background-color: #f7a400; /* Accent color for button */
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 1.2em;
  cursor: pointer;
}

.newsletter button:hover {
  background-color: #d58f00; /* Darker highlight on hover */
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 15px 20px;
  background-color: #111; /* Slightly different background for distinction */
  color: #fff;
  font-size: 1.2em;
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #f7a400; /* Optional: Add a top border for separation */
  box-sizing: border-box; /* Ensure padding doesn’t affect width */
}
