:root {
  --primary-color: #023784; /* Your Logo Color */
  --cta-color: #0067f4;      /* CTA Button Color */
  --cta-hover-color: #0055cc; /* CTA Hover Color */
}

@font-face {
  font-family: 'Webspecia-Regular';
  src: url('Assets/fonts/Webspecia-Regular.woff2') format('woff2'),
       url('Assets/fonts/Webspecia-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, a, span, button, input, textarea, label {
  font-family: "Webspecia-Regular", sans-serif;
}
body {
  font-family: "Webspecia-Regular", sans-serif;
  background-color: #f4f4f4;
  color: #222;
}
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 50px;
}

.call-btn {
  background-color: #dadada;
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 0.9rem;
}
/* Head Section */
section.signia-section {
  padding: 2rem 4rem; /* default padding for larger screens */
}

@media (max-width: 768px) {
  section.signia-section {
    padding: 1.5rem 2rem; /* adjust padding for tablets and small screens */
  }
}

@media (max-width: 480px) {
  section.signia-section {
    padding: 1rem 1rem; /* tighter padding for phones */
  }
  .signia-form{
  background-color: #000000;
  }
}

.signia-container {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Left Side */
.signia-content {
  padding: 1.5rem;
}

.signia-content h1 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: left;
}

.highlight-red {
  color: red;
  font-weight: bold;
}

/* Product Image */
.product-image {
  width: 100%;
  max-height: 400px;
  object-fit: fill;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Features List */
.features-listt {
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.features-listt li {
  margin-bottom: 0.5rem;
}

/* Button */
.price-btnn {
  background-color: #e60000;
  color: white;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

/* Right Side Form */
.signia-form {
  background-color: #000000;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  text-align: left;
  color: #fff;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.highlight-yellow {
  color: #ff0000;
}

.benefits-list {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.benefits-list li {
  font-size: 16px;
  margin: 8px 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

button {
  padding: 12px;
  font-size: 16px;
  background-color: #ff0000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #ed2000e5;
}

/* Footer under form */
.form-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
  font-size: 0.85rem;
}

.form-footer div {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.google-rate .unorder {
  list-style: none;
  padding: 0;
  margin: 10px 0px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.google-rate .unorder li {
  display: flex;
  align-items: center;
}

/* Smooth transition animation for heading */
.signia-content h1 {
  transition: opacity 0.4s ease;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .signia-container {
    flex-direction: row;
  }
  .signia-content,
  .signia-form {
    flex: 1;
  }

  .signia-content {
    border-radius: 12px 0 0 12px;
  }

  .signia-form {
    border-radius: 12px 12px 12px 12px;
  }

  .signia-content h1 {
    font-size: 2rem;
  }

  .signia-form h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .google-rate .unorder img {
    height: 40px !important;
  }
}
/* Responsive Nav */
@media (max-width: 768px) {
  .main-navbar {
    padding: 10px 30px;
    /* flex-direction: column; */
    gap: 10px;
  }

  .call-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .main-navbar {
    padding: 10px 20px;
  }

  .logo img {
    height: 40px;
  }

  .call-btn {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
}
/* =======================================================Product Card-=========================== */
/* Scroll Card */
.scroll-card-section {
  padding: 20px 20px;
  background-color: #ffffff;
  text-align: center;
  margin: 0 30px;
  max-width: 100%;
}

.scroll-card-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: #ff0000;
  margin-bottom: 30px;
}

.scroll-card-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 0 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scroll-card-container::-webkit-scrollbar {
  display: none;
}

.feature-card {
  flex: 0 0 auto;
  width: 260px;
  height: 370px;
  border: 2px solid #ddd;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-end;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.card-content {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  color: #fff;
  width: 100%;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.card-content .btn {
  background-color: transparent;
  border: 2px solid #fff;
  padding: 10px 50px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-content .btn:hover {
  background-color: #fff;
  color: #000;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .scroll-card-section {
    padding: 40px 15px;
  }

  .scroll-card-container {
    gap: 15px;
    padding: 0 5px;
  }

  .feature-card {
    width: 220px;
    height: 340px;
  }

  .card-content {
    padding: 16px;
  }

  .card-content h3 {
    font-size: 1rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }

  .card-content .btn {
    padding: 8px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .scroll-card-section h2 {
    font-size: 1.5rem;
  }

  .feature-card {
    width: 200px;
    height: 320px;
  }

  .card-content {
    padding: 14px;
  }

  .card-content h3 {
    font-size: 0.95rem;
  }

  .card-content p {
    font-size: 0.85rem;
  }

  .card-content .btn {
    padding: 8px 25px;
    font-size: 0.85rem;
  }
}
.why-item img , .footer-social img{filter:grayscale(100%);}
.why-item img:hover, .footer-social img:hover{filter:grayscale(0%);}



/* ==================================Feature section========================================== */

/* Price Section */
.price-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 60px 40px;
  /* background-color: #fff; */
  gap: 40px;
  flex-direction: row;
}

.price-content {
  flex: 1 1 500px;
  max-width: 600px;
}

.price-content h2 {
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 20px;
}

.price-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  text-align: left;
  margin-bottom: 30px;
}

.cta-button {
  background-color: var(--cta-color);
  color: #fff;
  padding: 10px 25px;
  font-size: 1.1em;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--cta-hover-color);
}


.price-image {
  flex: 1 1 400px;
  max-width: 500px;
}

.price-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
  .price-section {
    /* flex-direction: column-reverse; */
    padding: 40px 20px;
    text-align: center;
  }

  .price-content {
    max-width: 100%;
  }

  .price-content h2 {
    font-size: 2rem;
  }

  .price-content p {
    font-size: .8rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .price-image {
    max-width: 100%;
  }
}
/* ==================================Step by step========================================== */
.steps-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.steps-section h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.steps-section h2 span {
  color: #ff0000;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}

.steps-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
}

.steps-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.number {
  background-color: #ff0000;
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 1.2rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text h3 {
  margin: 0;
  font-size: 1.1rem;
}

.text p {
  margin: 5px 0 0;
  font-size: 0.95rem;
  color: #555;
}

.btn {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #0067f4;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
}
.btn:hover {
  background-color: #004fc4;
}
/* Tablet adjustments */
@media (max-width: 992px) {
  .steps-section h2 {
    font-size: 2.5rem;
  }

  .steps-image img {
    max-width: 100%;
  }

  .steps-content {
    gap: 15px;
  }
}

/* Mobile (large phones) */
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .steps-content {
    text-align: center;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text h3,
  .text p {
    text-align: center;
  }

  .steps-section h2 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }
}

/* Mobile (small phones) */
@media (max-width: 480px) {
  .steps-section {
    padding: 30px 15px;
  }

  .steps-section h2 {
    font-size: 1.6rem;
  }

  .steps-image img {
    max-width: 100%;
  }

  .number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .text h3 {
    font-size: 1rem;
  }

  .text p {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.95rem;
    padding: 10px 15px;
  }
}

/*  ============Approach=============  */
.approach-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 100px;
  background-color: #fff;
  flex-wrap: wrap;
}

.approach-content {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.approach-content h2 {
  font-size: 3rem;
  color: #ff0000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.approach-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}

.approach-content strong {
  font-weight: bold;
  color: #000;
}

.approach-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.approach-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .approach-section {
    flex-direction: column;
    padding: 40px 5%;
    text-align: center;
  }

  .approach-content h2 {
    font-size: 2rem;
  }

  .approach-content p {
    font-size: 1rem;
  }

  .approach-image {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .approach-content h2 {
    font-size: 1.7rem;
  }

  .approach-content p {
    font-size: 0.95rem;
  }

  .approach-section {
    padding: 30px 20px;
  }
}
/* <!-- ============================Why We Are================================ --> */
.why-best-section {
  background-color: #fff;
  color: black;
  text-align: center;
  padding: 3rem 1rem;
}

.why-best-section h2 {
  
  margin-bottom: 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  max-width: 1200px;
  margin: auto;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 0.5rem;
}

.why-item div {
  font-size: 1.1rem;
  line-height: 1.5;
}

.cta-button {
  background-color: var(--cta-color);
  color: #fff;
  padding: 10px 25px;
  font-size: 1.1em;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--cta-hover-color);
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-best-section h2 {
    font-size: 1.5rem;
  }

  .why-item div {
    font-size: 1rem;
  }
}
/* =============Banner============== */
.hearing-banner {
  background: url("Assets/Background.png") no-repeat center center/cover;
  padding: 4rem 1rem;
  text-align: center;
  color: #fff;
  position: relative;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.brand-logos img {
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.divider {
  width: 80%;
  height: 2px;
  background-color: #fff;
  margin: 2rem auto;
  border: none;
  opacity: 0.8;
}

.banner-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.banner-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #eee;
}

.cta-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--cta-color);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: var(--cta-hover-color);
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 2rem;
  }

  .brand-logos img {
    height: 40px;
  }

  .cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .banner-text h1 {
    font-size: 1.6rem;
  }

  .brand-logos {
    gap: 1.2rem;
  }

  .divider {
    width: 90%;
  }
}
/* ======================Location======================= */
/* Section Styling */
.location-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px;
  background-color: #f9f9f9;
  max-width: 1300px;
  margin: 0 auto;
  gap: 2rem;
}

/* Heading */
.location-section h2 {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
}

/* Map Container */
.map-container {
  flex: 1 1 48%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
 
}

/* City Buttons */
.city-buttons {
  flex: 1 1 48%;
  display: flex;
  justify-content: center;
}

.city-buttons .unorder {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  width: 100%;
}

.city-buttons .order button {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ff0000;
  border-radius: 25px;
  background: #fff;
  color: #ff0000;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.city-buttons .order button:hover {
  background: #ff0000;
  color: #fff;
}

/* Text Content */
.text-content {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 1rem;
  color: #333;
  font-family: 'Webspecia-Regular',Arial, sans-serif;
  line-height: 1.5;
}

.text-content p {
  margin: 5px 0;
}

.text-content strong {
  font-weight: bold;
}

.text-content .call {
  color: #ff0000;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
}

/* Appointment Button */
.appointment-button {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.appointment-button .bttn {
  background-color: #ff0000;
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.appointment-button .bttn:hover {
  background-color: #c0392b;
}

.appointment-button .icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* Features */
.features {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.features p {
  font-size: 1rem;
  color: #ff0000;
  font-family: 'Webspecia-Regular',Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .location-section {
    flex-direction: column;
    align-items: center;
  }

  .map-container,
  .city-buttons {
    flex: 1 1 100%;
  }

  .map-container img {
    max-width: 400px;
  }

  .city-buttons .unorder {
    grid-template-columns: repeat(2, 1fr);
  }

  .features p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .location-section h2 {
    font-size: 1.8rem;
  }

  .map-container img {
    max-width: 350px;
  }

  .city-buttons .unorder {
    grid-template-columns: repeat(2, 1fr);
  }

  .features p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .location-section {
    padding: 20px 10px;
  }

  .location-section h2 {
    font-size: 1.5rem;
  }

  .map-container img {
    max-width: 100%;
  }

  .city-buttons .unorder {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .city-buttons .order button {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .text-content {
    font-size: 0.9rem;
  }

  .features p {
    font-size: 0.8rem;
  }
}

/* =======testomonial========== */
.reviews-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.reviews-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.reviews-container {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding-bottom: 10px;
  margin: 0px 100px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reviews-container::-webkit-scrollbar {
  display: none;
}

.reviews-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}

.review-card {
  flex: 0 0 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  scroll-snap-align: start;
  text-align: left;
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.review-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 10px 0 5px;
}

.stars {
  color: #ffb400;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .review-card {
    flex: 0 0 250px;
  }
}

@media (max-width: 480px) {
  .review-card {
    flex: 0 0 220px;
    padding: 15px;
  }

  .reviews-section h2 {
    font-size: 2rem;
  }
  .reviews-container {
    margin: 0px 10px;
  }
}
/* ===========FAQs================== */
/* FAQs */
.faq-section {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #f9f9f9;
}

.faq-section h2 {
  
  /*color: #ff0000;*/
  margin-bottom: 2rem;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.faq {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  background: #ffffff;
  color: #333;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #eaf4ff;
}

/*.faq-question::after {*/
/*  content: "+";*/
/*  position: absolute;*/
/*  right: 20px;*/
/*  font-size: 1.5rem;*/
/*  color: #ff0000;*/
/*  transition: transform 0.3s ease, content 0.3s ease;*/
/*}*/

/*.faq.open .faq-question::after {*/
/*  content: "–";*/
/*}*/

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq.open .faq-answer {
  max-height: 500px; /* adjusted to fit most answers */
  padding: 1rem 2rem 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}

/* ===================Footer=========== */
.Footer {
  background-color: #3B0707;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.Footer .content h2 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.Footer .content h2 span {
  color: #ff0000;
}

.Footer .content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.Footer .content .btn {
  background-color: #e74c3c;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.Footer .content .btn:hover {
  background-color: #c0392b;
}

.Footer .ratings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.Footer .ratings .badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.Footer .ratings .badge img {
  width: 200px;
  height: 60px;
  margin-bottom: 0.5rem;
}

.Footer .ratings .badge p {
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.4;
}

.Footer .ratings .badge p .rating {
  font-size: 1rem;
  font-weight: bold;
  color: #f39c12;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .Footer .content h2 {
    font-size: 1.25rem;
  }

  .Footer .content p {
    font-size: 0.95rem;
  }

  .Footer .content .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }

  .Footer .ratings {
    gap: 1rem;
  }

  .Footer .ratings .badge {
    max-width: 150px;
  }

  .Footer .ratings .badge img {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .Footer .content h2 {
    font-size: 1rem;
  }

  .Footer .content p {
    font-size: 0.85rem;
  }

  .Footer .content .btn {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }

  .Footer .ratings .badge {
    max-width: 100px;
  }

  .Footer .ratings .badge img {
    width: 100px;
  }
}
