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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif !important;
  background: #EFEEE5 !important;
  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;
}

/*=======================*/
/* 2. Header & Navbar    */
/*=======================*/

/* 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 inside header */
header > div.bg-black {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.logo {
  width: 200px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
  max-width: 300%; /* Responsive size */
}

/* Navbar */
.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 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; /* 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 menu */
.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;
}

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

/*=======================*/
/* 3. Hero Section       */
/*=======================*/
.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;
}

/*=======================*/
/* 4. Section Styling    */
/*=======================*/
.section {
  padding: 40px 30px;
  max-width: 1200px;
  margin: auto;
}

.section h2, .subsection h3 {
  text-align: center;
  color: #2c3e50;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.subsection h3 {
  margin: 30px 0 10px;
  font-size: 26px;
}

.subsection ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.subsection ul li {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  cursor: default;
  opacity: 0.8;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.subsection ul li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  color: green;
  font-weight: bold;
}

.subsection ul li:hover {
  opacity: 1;
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/*=======================*/
/* 5. Gallery & Grids    */
/*=======================*/
.gallery img, .grid-3 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.grid-3 img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

/*=======================*/
/* 6. Swiper Slider      */
/*=======================*/
.swiper-container, .swiper-wrapper, .swiper-slide {
  height: 100%;
  width: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/*=======================*/
/* 7. About Section      */
/*=======================*/
#about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 40px 30px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.about-content,
.about-logo {
  flex: 1;
  min-width: 300px;
}

.about-logo {
  display: flex;
  justify-content: flex-end;
  align-items: center !important;
  padding: 2rem 1rem 2rem 2rem;
  margin-right: 2rem;
}

.about-logo img {
  width: 400px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/*=======================*/
/* 8. Misc Components    */
/*=======================*/
iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}

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

.zoom-effect {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.zoom-effect img {
  transition: transform 0.4s ease;
  display: block;
  width: 100%;
  height: auto;
}

.zoom-effect:hover img {
  transform: scale(1.1);
}

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

/*=======================*/
/* 9. 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;
}

.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;    /* 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;
}

/*=======================*/
/* 10. Scroll & Buttons  */
/*=======================*/

/* 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;
}

/*=======================*/
/* 11. Breadcrumb        */
/*=======================*/
.breadcrumb a {
  color: #000000;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #dc2626 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">" !important;
  padding: 0 0.5rem;
  color: #6c757d;
}

/*=======================*/
/* 12. Documents Section */
/*=======================*/
.documents-section {
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EFEEE5 !important;
}

.section-title {
  font-family: 'montserrat', sans-serif;
  color: #2c3e50;
  margin: 30px 0 10px;
  font-size: 26px;
}

.doc-box {
  border: 1px solid #ccc;
  background: #f9f9f9;
  max-width: 500px;
  text-align: left;
}

.section-underline {
  margin-left: auto;
  margin-right: auto;
}

.doc-download {
  color: #f26522;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.doc-download:hover {
  color: #000000 !important;
  text-decoration: underline;
}

/*=======================*/
/* 13. Modal Close Btn   */
/*=======================*/
#closeModal {
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 40px;
  z-index: 3000;
}

/*=======================*/
/* 14. Responsive Media  */
/*=======================*/
@media (max-width: 768px) {
  .navbar-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .navbar-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

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

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

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

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

  nav ul {
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    display: none;
  }

  nav ul.show {
    display: flex;
  }

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

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