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

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

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

    p {
      font-size: 18px; /* default is about 16px, increase to 18 or more */
    }
   /* Header */
header {
  position: relative; /* important for absolute positioning inside */
  height: 400px;      /* or your actual height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

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

/* Navbar brand logo */
.navbar-brand img {
  height: 50px;
}


/* Nav list - make sure it's flex, horizontal, no wrapping */
.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; /* Prevent wrapping to multiple lines */
}

nav a {
  border: none;
  outline: none;
}

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



/* Nav links styling */
.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: 0 0 6px 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;
}


/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

a:hover {
  color:  #e53935 !important; /* Tailwind yellow-400 hex */
}

.welcome-text {
  position: absolute;
  bottom: 1rem;               /* Push to bottom – adjust to 0 if needed */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  z-index: 10;
  padding: 0.5rem 1rem;
  width: 100%;                /* Optional: makes it easier to center inside */
}


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

.welcome-text p {
  font-family: 'Lora', serif;
  font-size: 1.125rem; /* lg equivalent */
}
.logo {
  width: 200px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
  max-width: 300%; /* Responsive size */
}


/* Footer Section start*/
/* 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;
}
/* Footer Section end */
/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 1.25rem;
  right: 4rem;
   bottom: 70px; /* Previously maybe 20px? Increased to move it up */
  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;
}

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

.call-button:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.call-button {
  outline: 2px solid rgb(0, 0, 0) !important;
}
.section-divider {
  width: 100%;
  height: 5px; /* Adjust the thickness here */
  background-color: white; /* White color for the border */
  margin: 20px 0; /* Add spacing above and below the divider */
}

 .card {
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    .highlight {
      font-weight: bold;
      font-size: 1.4rem;
      color: #0d0d0d;
    }