@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Colours */
.bg-primary {
  background-color: #e3000e;
}

.text-primary-color {
  color: #e3000e;
}

.bg-custom-black {
  background-color: #1a1818;
}

.text-custom-black {
  color: #1a1818;
}

.active {
  color: #e3000e;
}

.custom-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1400px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.custom-btn {
  background-color: #e3000e;
  padding: 0.75rem 2rem;
  color: white;
  font-weight: 500;
  display: inline-block;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: black;
  border: 3px solid #e3000e;
  color: #e3000e;
  cursor: pointer;
}

.active-list {
  color: #e3000e;
}

.footer-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
}

.discont-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.65);
}

.zomato-btn {
  background-color: #dc2626;
  color: #ffffff;
  font-weight: 600;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 9999px;
  transition: background-color 0.3s;
}

.zomato-btn:hover {
  background-color: #b91c1c;
}

.swiggy-btn {
  background-color: #f97316;
  color: #ffffff;
  font-weight: 600;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 9999px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.swiggy-btn:hover {
  background-color: #ea580c;
}

.menu-list {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 9999px;
  cursor: pointer;
  background-color: #e5e7eb;
  font-weight: 600;
}

.menu-list:hover {
  color: #e3000e;
}

.circle-bg {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease-in-out;
}

.circle-bg:hover {
  background-color: #e3000e;
}

.about-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 10%;
  min-height: 400px;
  background: url("assets/images/footer-bg.jpg") no-repeat right center;
  background-size: cover;
  background-color: black; /* fallback */
}

.about-content {
  max-width: 500px;
  z-index: 2;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #e3000e;
  margin-bottom: 20px;
}

/* Optional overlay for readability */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9) 50%,
    /* dark left side */ rgba(0, 0, 0, 0) 100% /* fade to transparent */
  );
  z-index: 1;
}

.services-section {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-card.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
  min-width: 300px;
}

.service-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #e3000e;
}

.service-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.service-image {
  flex: 1;
  min-width: 300px;
}

.service-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.mission-vision {
  background: #f8f9fa;
  padding: 60px 20px;
}

.mv-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.mv-icon {
  font-size: 3rem;
  color: #e3000e;
  margin-bottom: 15px;
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #111;
}

.mv-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Contact Page Base */
.contact-page {
  padding: 60px 20px;
  background: #f8f9fa;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Contact Form */
.contact-form,
.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form h2,
.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #e3000e;
}

.form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e3000e;
}

/* Address & Map */
.contact-info p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-info i {
  margin-right: 10px;
  color: #e3000e;
}

.map {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

/* Social Media Section */
.social-media {
  margin-top: 25px;
}

.social-media h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.5);
}

.footer-column {
  width: 16.6%; /* same as lg:w-1/6 */
  padding: 0 16px;
  margin-bottom: 48px;
  color: white;
}

.footer-column h4 {
  font-size: 1.125rem; /* ~text-lg */
  font-weight: bold;
  margin-bottom: 24px;
}

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

.footer-column li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.footer-column i {
  color: #e3000e; /* red accent */
  margin-right: 8px;
  font-size: 1rem;
}

.error {
  color: red;
  font-size: 0.8rem;
  display: block;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-column {
    width: 25%; /* ~md:w-1/4 */
  }
}

@media (max-width: 768px) {
  .footer-column {
    width: 50%; /* ~w-1/2 */
  }
}

@media (max-width: 480px) {
  .footer-column {
    width: 100%; /* full width for small screens */
  }
}

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

  .social-links {
    justify-content: center;
  }
}

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

/* Responsive */
@media (max-width: 768px) {
  .service-card,
  .service-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-image {
    order: -1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
    background-position: center;
  }

  .about-content {
    max-width: 100%;
  }
}

/* Responsive padding variations */
@media (min-width: 640px) {
  .custom-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .custom-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* WhatsApp Icon Styles */
.whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.2s ease-in-out;
  animation: pulse 1.5s infinite ease-in-out;
}

.whatsapp-icon img {
  width: 30px;
  display: block;
}

/* Hover Effect */
.whatsapp-icon:hover {
  transform: scale(1.2);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}