/* Universal Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
  font-family: 'Lora', serif !important;
  background: #EFEEE5 !important;
  color: #000000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif !important;
}

p {
  font-size: 18px;
}

a {
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
  background: transparent !important;
}

a:hover {
  color: #e53935 !important;
}

/* Header */
header {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header > div.bg-black {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Navbar */
.navbar-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: transparent;
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  align-items: center;
  white-space: nowrap;
}

.navbar-nav a {
  color: white !important;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease;
  display: block;
}

.navbar-nav a:hover {
  color: yellow;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 6px;
  min-width: 160px;
  padding: 0.25rem 0;
  z-index: 20;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
}

.dropdown-menu li a:hover {
  color: #e53935 !important;
  background-color: transparent !important;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Welcome Text */
.welcome-text {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  z-index: 10;
  padding: 0.5rem 1rem;
  width: 100%;
}

.welcome-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.welcome-text p {
  font-family: 'Lora', serif;
  font-size: 1.125rem;
}

/* Contact Section */
.container1 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.contact-form, .contact-info-information {
    flex: 1 1 48%;
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.contact-form h3,
.contact-info-information h3 {
  margin-bottom: 1rem;
  color: #e63946;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #000000;
  color: #ffffff;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #e63946;
  outline: none;
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}

.contact-form textarea {
  height: 200px;
  resize: vertical;
}

.contact-form button {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  align-self: flex-start;
}

.contact-form button:hover {
  background-color: #c43030;
  transform: translateY(-2px);
}

.success-message {
  display: none;
  background: #1d1d1d;
  padding: 15px;
  color: #4caf50;
  margin-top: 20px;
  border: 1px solid #4caf50;
  border-radius: 4px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  /* margin: 40px 0; */
  background-color: #000;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
}

.contact-info-card .info-box {
  text-align: center;
  color: white;
}

.contact-info-card .info-box i {
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
  margin-right: 10px;
  animation: fadeInOut 4s ease-in-out infinite;
}

.info-box a {
  color: white;
  text-decoration: none;
}

.contact-info-card .info-box h4 {
  margin: 10px 0 5px;
  font-size: 16px;
  font-weight: 600;
}

.contact-info-card .info-box p {
  font-size: 14px;
  color: #ccc;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; }
}

/* Map */
.map-container {
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
  height: 300px;
}

.map {
  margin-top: 1rem;
  width: 100%;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer-area {
  background-color: #111;
  color: #fff;
  padding: 30px 0;
}

.footer-widget h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
  color: #fff;
}

.footer-left-widget p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}
/* Container styling for social icons */
.social-icons {
  display: flex;            /* Align icons horizontally */
  gap: 10px;                /* Space between icons */
  margin-top: 15px;         /* Margin above the container */
  flex-wrap: wrap;          /* Allow wrapping if needed */
}

/* Individual social icon styling */
.social-icon {
  display: inline-flex;      /* Center icon inside the circle */
  justify-content: center;   /* Horizontal centering */
  align-items: center;       /* Vertical centering */
  color: #ccc;               /* Default icon color */
  font-size: 16px;           /* Size of the icon */
  width: 40px;               /* Circle width */
  height: 40px;              /* Circle height */
  border: 1px solid #444 !important;   /* Border color for the circle */
  border-radius: 50%;        /* Make it circular */
  transition: all 0.3s ease; /* Smooth transition on hover */
  text-decoration: none;     /* Remove underline for links */
}

/* Hover effect for icons */
.social-icon:hover {
  background-color: #fff !important; /* Change background color on hover */
  color: #000 !important;           /* Change icon color on hover */
  border-color: #000;               /* Optional: change border color */
}

.contact-widget .contact-info li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #ccc;
}

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

.copyright a {
  color: #ed3538;
}

/* Fixed Buttons */
.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 80px;
  background-color: #C0C0C0;
  color: rgb(0, 0, 0);
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 999;
}

.scroll-top:hover {
  background-color: #ffffff;
}

.call-button {
  position: fixed;
  bottom: 20px;
  right: 1rem;
  background-color: #C0C0C0 !important;
  color: #000000 !important;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  z-index: 999;
  border: none;
  outline: 2px solid #000000 !important;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  box-shadow: none;
}

.call-button:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}

/* Section Divider */
.section-divider {
  width: 100%;
  height: 5px;
  background-color: white;
  margin: 20px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
  }

  .navbar-nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: white;
    font-size: 24px;
  }

  .footer-widget h3 {
    font-size: 18px;
  }

  .footer-area {
    padding: 40px 0;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }

  .container1 {
    flex-direction: column;
  }

  .welcome-text h1 {
    font-size: 2rem;
  }

  .welcome-text p {
    font-size: 1rem;
  }

  .welcome-text {
    bottom: 2rem;
    padding: 1rem;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

#menu-toggle:hover {
  color: inherit;
  background: none;
  cursor: default;
}

/* Custom Contact Info Card Order Styling */
.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-info-card .info-box {
  text-align: center;
}

.contact-info-card .address-box {
  order: 2;
}
.error {
    color: red;
}