/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* Body Styling */
body {
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #012c60;
  padding: 15px 50px;
  color: white;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Logo */
.header-logo {
  width: 260px;
  transition: all 0.3s ease;
}

.header-logo img {
  width: 90%;
  height: auto;
  display: block;
  margin-top: 10px;
}

/* Navigation Links */
.header-links {
  display: flex;
  gap: 20px;
}

.header-links h1 {
  margin: 0;
  font-size: 1.1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Apply transition correctly to the entire link */
.header-links h1 a {
  text-decoration: none;
  color: white;
  display: inline-block; /* Ensures transform works properly */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.header-links h1 a:hover {
  color: #e2ae3f;
  transform: scale(1.1); /* Smooth zoom-in effect */
}

/* Hide Menu Toggle Checkbox */
.menu-toggle {
  display: none;
}

/* Menu Icon */
.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .header-logo {
    position: absolute;
    left: 20px;
  }

  header {
    height: 80px;
    padding: 15px 50px;
  }

  /* Show Menu Icon */
  .menu-icon {
    display: block;
  }

  /* Hide Navigation Links Initially */
  .header-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 0;
    background: #012c60;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .header-links h1 {
    margin: 10px 0;
  }

  /* Show Dropdown When Checkbox is Checked */
  .menu-toggle:checked + .menu-icon + .header-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: -34px;
  }
}

.top-banner {
  width: 100%;
  height: 65vh; /* Default for desktops */
  background-color: #012c60;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-banner img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: 95px; /* Default top margin */
}

/* ✅ Tablet view adjustments */
@media (max-width: 1024px) {
  .top-banner {
    height: 55vh;
  }

  .top-banner img {
    margin-top: 75px;
  }
}

/* ✅ Mobile view adjustments */
@media (max-width: 768px) {
  .top-banner {
    height: 43vh;
  }

  .top-banner img {
    margin-top: 65px;
  }
}

/* ✅ Extra small devices (optional) */
@media (max-width: 480px) {
  .top-banner {
    height: 35vh;
  }

  .top-banner img {
    margin-top: 60px;
  }
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45); /* semi-transparent overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.banner-overlay h1 {
  color: #fff;
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
  .banner-overlay h1 {
    font-size: 3.6rem;
  }
}

@media (max-width: 768px) {
  .banner-overlay h1 {
    font-size: 2.8rem;
  }

  .banner-overlay {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .banner-overlay h1 {
    font-size: 2.2rem;
  }

  .banner-whatsapp-btn {
    padding: 10px 18px;
    font-size: 16px;
  }
}

.banner-whatsapp-btn {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #e2ae3f;
  color: #012c60;
  padding: 12px 50px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  font-size: 20px;
  white-space: nowrap;
  border: 1px solid #ffffff;
  text-transform: uppercase;
}

/* Hover effect */
.banner-whatsapp-btn:hover {
  background-color: #012c60;
  color: #ffffff;
}

/* ✅ Tablet screens */
@media (max-width: 1024px) {
  .banner-whatsapp-btn {
    font-size: 18px;
    padding: 10px 20px;
    top: 70%;
  }
}

/* ✅ Mobile screens */
@media (max-width: 768px) {
  .banner-whatsapp-btn {
    font-size: 16px;
    padding: 8px 16px;
    top: 70%;
  }
}

/* ✅ Extra small screens */
@media (max-width: 480px) {
  .banner-whatsapp-btn {
    font-size: 14px;
    padding: 7px 14px;
    top: 65%;
  }
}

.top-banner {
  position: relative; /* Needed for absolute button positioning */
}

/*why book*/
.why-book-section {
  background: #f8faff;
  padding: 40px 20px;
  text-align: center;
}

.why-book-title h2 {
  font-size: 2.2rem;
  color: #012c60;
  margin-bottom: 10px;
  font-weight: bold;
}

.why-book-title p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: #eeefff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card i {
  font-size: 40px;
  color: #f39c12;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.2rem;
  color: #040e31;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
}

/*Inquiry form-section*/
.inquiry-section {
  background: #f9f9f9;
  padding: 20px 20px;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.inquiry-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #012c60;
}

/*hotel location base*/
.form-group {
  position: relative;
  max-width: 500px;
  margin: auto;
}

#locationInput {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.autocomplete-box {
  position: absolute;
  background: rgb(237, 237, 237);
  border-top: none;
  z-index: 1000;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
}

.autocomplete-item {
  padding: 8px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.autocomplete-item:hover {
  background-color: #eef5ff;
}

.hotel-results {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 210px;
  overflow-y: auto;
  overflow-x: hidden; /* ✅ Prevents horizontal scroll */
  margin-top: -15px;
  margin-right: 55px;
}

.hotel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.hotel-card:hover {
  background-color: #f0f8ff;
}

.hotel-name {
  font-weight: bold;
  color: #012c60;
  max-width: 100%;
  white-space: nowrap;
  font-size: 1rem;
  text-transform: uppercase;
  margin-right: -205px; /* ✅ Don't use negative margins */
}

.hotel-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #0d6efd;
  flex-shrink: 0; /* ✅ prevents checkbox from shrinking */
  pointer-events: none;
  margin-right: -100px;
}

/*guest and room*/
/* General Styling for the form group */
.form-group {
  margin-bottom: 20px;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* A more modern font stack */
  position: relative; /* Important for absolute positioning of dropdown */
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600; /* Slightly bolder */
  color: #2c3e50; /* Darker, more sophisticated text color */
}

/* Style for the main input field */
#guestInput {
  width: 100%;
  padding: 10px 18px; /* Slightly more padding */
  border: 1px solid #c9d0d6; /* Softer border color */
  border-radius: 10px; /* More rounded corners */
  cursor: pointer;
  font-size: 17px; /* Slightly larger font */
  color: #34495e;

  outline: none; /* Remove default focus outline */
}

/* Dropdown Container */
.guest-dropdown {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #ffffff; /* Clean white background */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Deeper shadow */
  padding: 20px; /* More generous padding */
  margin-top: 10px;
  position: absolute;
  z-index: 1000;
  min-width: 300px; /* Slightly wider */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease; /* Animation for show/hide */
}

.guest-dropdown.hidden {
  opacity: 0;
  transform: translateY(-10px); /* Slide up effect when hidden */
  pointer-events: none; /* Disable interactions when hidden */
}

/* Individual Guest Rows (Adults, Children, Rooms) */
.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px; /* More space between rows */
  padding-bottom: 5px;
  border-bottom: 1px solid #f0f0f0; /* Light separator line */
}

.guest-row:last-of-type {
  border-bottom: none; /* No border for the last row */
  margin-bottom: 0;
}

.guest-row span:first-child {
  /* Targets the labels (Adults, Children, Rooms) */
  font-size: 16px;
  color: #34495e;
  font-weight: 500;
  flex-grow: 1;
}

/* Increment/Decrement Buttons */
.guest-row button {
  background-color: #e9ecef; /* Lighter grey for buttons */
  color: #495057;
  border: none; /* No border */
  border-radius: 50%;
  width: 34px; /* Slightly larger buttons */
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; /* Larger +/- signs */
  line-height: 1; /* Adjust line height for better centering */
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  margin: 0 10px; /* More space around buttons */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle button shadow */
}

.guest-row button:hover {
  background-color: #012c60; /* Primary blue on hover */
  color: #ffffff; /* White text on hover */
  transform: translateY(-1px); /* Slight lift */
}

.guest-row button:active {
  background-color: #e9ecef;
  transform: translateY(0); /* Press effect */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); /* Inset shadow for pressed state */
}

/* Count Display */
.guest-row span[id$="Count"] {
  font-weight: 700; /* Bolder count */
  font-size: 20px; /* Larger count font */
  min-width: 30px;
  text-align: center;
  color: #007bff; /* Primary color for the count */
}

/* Child Ages Section */
#tempChildAges {
  margin-top: 15px; /* More space above */
  padding-top: 15px;
  border-top: 1px solid #f0f0f0; /* Solid, light separator */
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* Slightly more gap */
  align-items: center; /* Vertically align label and selects */
}

#tempChildAges label {
  width: 100%;
  margin-bottom: 8px; /* More space below label */
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

#tempChildAges select {
  padding: 10px 12px; /* More padding in selects */
  border: 1px solid #d0d7de;
  border-radius: 6px; /* Nicely rounded selects */
  font-size: 15px;
  background-color: #fcfdfe; /* Very light background */
  cursor: pointer;
  flex: 1;
  min-width: 120px; /* Adequate min-width */
  appearance: none; /* Remove default select arrow */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%23495057" d="M7.646 10.854l-3.5-3.5a.5.5 0 0 1 .708-.708L8 9.793l3.146-3.147a.5.5 0 0 1 .708.708l-3.5 3.5a.5.5 0 0 1-.708 0z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

#tempChildAges select:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Done Button */
.done-btn {
  width: 100%;
  padding: 10px 25px; /* Larger padding */
  background-color: #012c60;
  color: white;
  border: none;
  border-radius: 10px; /* More rounded */
  font-size: 17px; /* Slightly larger text */
  font-weight: 600; /* Semi-bold */
  cursor: pointer;
  margin-top: 25px; /* More space above */
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3); /* Deeper shadow */
}

.done-btn:hover {
  background-color: #e2ae3f;
  transform: translateY(-2px); /* More pronounced lift */
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.done-btn:active {
  background-color: #004085;
  transform: translateY(0);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2); /* Inset shadow for pressed state */
}

.inquiry-form .form-group {
  margin-bottom: 20px;
}

.inquiry-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #444;
}

.inquiry-form input {
  width: 500px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Minimize width and align promo code with text */
.promo-group-inline .promo-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-inline input {
  width: 500px; /* smaller box */
  color: #007f5f; /* text color inside box */
  font-weight: 800; /* bold text */
  font-size: 15px;
}

/* "Get 30% off!" styling */
.promo-note-inline {
  font-size: 18px;
  font-weight: 700;
  color: #ff6600;
}

/* Start Date Field Styling */
.start-date-group .start-date-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.start-date-note {
  font-size: 14px;
  color: #777;
  font-style: italic;
}

.start-date-inline input[type="date"] {
  width: 500px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Shared form-group styling */
/* Container styling */
.form-group {
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

/* Label styling */
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

/* intl-tel-input field */
#whatsapp-number {
  width: 100%;
  max-width: 500px;
  padding: 10px 12px 10px 58px; /* extra left-padding for flag & code */
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
}

/* intl-tel-input container tweaks */
.iti {
  width: 100%;
  max-width: 500px;
}

/* dropdown list customization (optional) */
.iti__country-list {
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

.error-msg {
  color: red;
  font-size: 0.9rem;
  margin-top: 5px;
}

#check-availability-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #012c60;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: glowButton 1.5s infinite alternate;
}

#check-availability-btn:hover {
  background-color: #e2ae3f;
}

.swal-confirm-btn {
  font-weight: bold;
}

.swal-cancel-btn {
  font-weight: bold;
}

/* Responsive Inquiry Form */
@media (max-width: 768px) {
  .inquiry-section {
    padding: 15px 15px;
    max-width: 90%;
  }

  .inquiry-form input,
  .promo-inline input,
  .start-date-inline input[type="date"],
  .custom-dropdown,
  .vehicle-select,
  #whatsapp-number {
    width: 350px; /* Full width on smaller screens */
    max-width: 100%;
    box-sizing: border-box;
  }
  .vehicle-select {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .inquiry-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  #check-availability-btn {
    max-width: 100%;
    font-size: 1rem;
    padding: 10px 15px;
  }

  #whatsapp-number {
    width: 350px;
  }
}

/*hotel card*/
.kandy-hotel-section {
  padding: 30px 20px;
  background-color: #ebe5e5;
  text-align: center;
  font-family: Arial, sans-serif;
  margin-top: 25px;
}

.kandy-hotel-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #012c60;
  font-weight: bold;
  font-size: 32px;
}

.hotel-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.single-hotel-card {
  width: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.hotel-bg {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.card-details {
  padding: 20px;
  background: linear-gradient(to top, rgba(91, 127, 212, 0.8), transparent);
  margin-top: -60px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px; /* Adjust as needed */
}

.card-details h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 50px;
  text-transform: uppercase;
}

.card-details p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.card-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 15px;
}

.reserve-btn {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 14px;
  font-weight: bold;
}

.reserve-btn:hover {
  background-color: #adacde;
}

.view-all-hotels-btn {
  background-color: #012c60;
  color: white;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 30px;
}

.view-all-hotels-btn:hover {
  background-color: #e2ae3f;
  transform: scale(1.05);
}

/* footer */
footer {
  background: url('https://dxk1acp76n912.cloudfront.net/images/homepage/waterma.png')
    no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding: 30px 20px; /* Adjust padding as needed */
  text-align: center;
  margin-top: 0px;
}

/* Footer Logo */
.footer-logo {
  position: relative; /* Changed from absolute to relative */
  padding: 10px;
  width: 140px; /* Adjusted the width as per your requirement */
  height: auto; /* Keeps the aspect ratio of the logo */
  margin: 0 auto;
  font-weight: bold;
  margin-top: 40px;
}

.footer-logo img {
  width: 240%; /* Ensure the image fills the container */
  height: auto;
  margin-top: -300px !important;
  margin-left: -80px;
}
.footer-social {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  gap: 20px;
  font-size: 1.4rem;
  text-align: center;
  margin-top: -5px !important;
}

.footer-social a {
  color: white;
}

/* Footer Content Section */
.footer-content {
  max-width: 1200px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
  gap: 5;
  text-align: center; /* Ensure text is centered */
}

.footer p a {
  color: #ffffff;
  text-decoration: none;
}

.footer p a:hover {
  text-decoration: none;
}

.footer p a:active {
  color: #f0a500; /* Optional color change on click */
}

.payment-box {
  background-color: white;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 1px 0; /* Add some vertical padding */
  text-align: center;
  box-sizing: border-box;
  height: 60px;
}

.inline-payment-icons {
  display: inline-flex;
  flex-wrap: wrap; /* Wrap on small screens */
  justify-content: center;
  gap: 15px;
  align-items: center;
  opacity: 1;
}

/* Base icon size for large screens */
.inline-payment-icons img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.inline-payment-icons img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

/* Responsive adjustments */

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991px) {
  .inline-payment-icons img {
    height: 45px; /* Slightly smaller icons */
  }
}

/* Small devices (mobiles, less than 768px) */
@media (max-width: 768px) {
  .inline-payment-icons img {
    height: 45px; /* Smaller icons for small screens */
  }

  .payment-box {
    padding: 8px 5px; /* Less padding on very small screens */
    height: 60px;
  }
}

/* Very small devices (extra small phones, less than 480px) */
@media (max-width: 479px) {
  .inline-payment-icons {
    gap: 10px; /* Less gap on very small screens */
  }

  .inline-payment-icons img {
    height: 32px; /* Smallest icons */
  }
  .payment-box {
    height: 50px;
  }
}

.reference-link {
  margin-top: 20px;
  font-size: 18px;
  color: #555;
  text-align: left;
}

.reference-link a {
  color: #012c60;
  text-decoration: underline;
  word-break: break-word;
}

.reference-link a:hover {
  color: #e2ae3f;
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 20px 10px; /* Adjust padding for smaller screens */
    height: auto; /* Remove fixed height for flexibility */
    font-size: 14px; /* Slightly smaller font size for mobile */
    flex-direction: column; /* Stack elements vertically */
  }

  .footer-logo {
    position: relative; /* Changed from absolute to relative */
    padding: 10px;
    width: 140px; /* Adjusted the width as per your requirement */
    height: auto; /* Keeps the aspect ratio of the logo */
    margin: 0 auto;
    margin-top: 40px;
  }

  .footer-logo img {
    width: 240%; /* Ensure the image fills the container */
    height: auto;
    margin-top: -300px !important;
    margin-left: -80px;
  }

  .footer-social {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    text-align: center;
  }

  .footer-social a {
    color: white;
  }

  /* Footer Content Adjustments */
  .footer-content {
    font-size: 14px; /* Adjust text size for mobile */
    margin-top: 20px; /* Reduce margin-top */
    line-height: 1.5;
  }
}
