@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@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;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: smooth;
  overflow-x: hidden;
  /* Prevents horizontal scroll */
}

body {
  user-select: none;
  /* Prevents text selection */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  background-color: #fff9f5;
  color: #3c3c3c;
  line-height: 1.7;
  font-family: "Montserrat", serif;
}

/* Navbar styles */
nav {
  padding: 0px 10%;
  background-color: rgba(0, 0, 0, 0.322);
  backdrop-filter: blur(15px);
  position: fixed;
  z-index: 1000;
  flex-wrap: wrap;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Poppins, sans-serif;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  padding: 2vw;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #dca854;
  font-size: 1.2rem;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #006600;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: rgba(0, 0, 0, 0.418);
}

nav ul li:hover .dropdown-menu {
  display: block;
  transition-duration: 0.3s;
}

.dropdown-menu ul {
  display: block;
  margin: 10px;
}

.dropdown-menu ul li {
  padding: 10px 30px;
}

/* Button styles */
button {
  font-size: 18px;
  font-weight: bold;
  color: #006600;
  border-radius: 5px;
  border: none;
  background-color: #ffffff;
  padding: 8px 12px;
  transition: 0.5s;
  width: auto;
  font-family: Poppins;
  height: auto;
}

.hero-text button {
  margin-top: 2%;
}

button:hover {
  color: #ffffff;
  background-color: #006600;
  transform: scale(1.2);
}

/* Logo styles */
.logo {
  display: block;

  transition-duration: 0.3s;
  overflow: hidden;
}

.logo:hover {
  transform: scale(1.2);
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* first image with text  */
/* mid-section-text-left */
.about-hero-card {
  background: #e4e3e2;
 
}




.hero-container {
      max-width: 1200px;
    margin: 150px auto 0 auto;
}
.hero-card {
  display: flex;
  flex-wrap: wrap;
  background: #6d1818;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.hero-text-box {
  flex: 1 1 50%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text-box h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f8d6d6;
}
.hero-text-box p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.hero-text-box .btn {
  background-color: #d35400;
  color: white;
  padding: 0.8rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
  margin: auto;
}
.hero-text-box .btn:hover {
  background-color: #b84300;
}
.hero-image-box {
  flex: 1 1 50%;
}
.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section {
  padding: 3rem 2rem;
}

h1, h2 {
  color: #9b2c2c;
  margin-bottom: 1rem;
  text-align: center;
}
p {
  font-size: 1.1rem;
  max-width: 800px;

}

/* Grid Section */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.culture-card {
  background: #fff4ec;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.culture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card-content {
  padding: 1.2rem;
}
.card-content h3 {
  margin-bottom: 0.5rem;
  color: #d35400;
  text-align: center;
}


/* CTA */
.about-cta {
  text-align: center;
  background-color: #e06c4b;
  color: white;
  border-radius: 8px;
  padding: 3rem 2rem;
  margin-top: 3rem;
}
.about-cta h2 {
  color: white;
}
.about-cta p {
  max-width: 700px;
  margin: 1rem auto;
}
.btn {
  background-color: white;
  color: #e06c4b;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn:hover {
  background-color: #ffe3d6;
}

/* ------------------------------------------------------------------------------footer-----------------------------------------------------------------------------*/
/* Footer Base */

footer {
  background-color: #333b41;
  padding: 40px 5%;
  color: #d3d3d3;
  font-family: Poppins, sans-serif;
}

/* Footer Main Container */
.main-fot-container {
  display: flex;
  justify-content: space-between;
  /* Equal spacing */
  align-items: flex-start;
  /* Align to the top */
  gap: 5vw;
  /* Adjusts spacing between sections */
  padding: 20px 5%;
  /* Adds some padding */
  flex-wrap: nowrap;
  margin-top: 5%;
  /* Prevents wrapping */
}

/* Logo Section */
.first-fot-container {
  width: 30%;
  margin-top: 10px;
}

.first-fot-container .logo {
  width: 25vh;
  height: auto;
}

.footer-text-one {
  text-align: justify;
  font-size: 20px;
  margin-top: 20px;
}

/* Contact Section */
.second-fot-container {
  width: 30%;
  text-align: left;
}

.second-fot-container h5 {
  color: #006600;
  font-size: 30px;
  margin-bottom: 15px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}
.second-fot-container p{
  text-align: left;
}

.second-fot-container h5:hover {
  border-bottom: 3px solid #006600;
  color: white;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.first-fot-container,
.second-fot-container,
.third-fot-container {
  width: 30%;
  /* Ensures equal width */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.second-fot-container {
  
  display: inline;
  justify-content: center;
  margin-top: 4%;
}

.third-fot-container {
  margin-top: 10%;
}

/* Contact Icon Background */
.fot-icon {
  width: 50px;
  height: 50px;
  background-color: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

/* Icon Images */
.fot-icon img {
  width: 35px;
  height: 35px;
  transition: 0.3s ease;
  padding: 0;
}

.contact-item p {
  letter-spacing: 1;
}

.fot-icon:hover img {
  transform: scale(1.3);
}

/* Footer Navigation */
.third-fot-container {
  width: 20%;
  text-align: left;
  pointer-events: fill;
}

.third-fot-container ul {
  padding: 0;
}

.third-fot-container ul li {
  list-style: none;
  margin-bottom: 15px;
}

.third-fot-container ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #dca854;
  transition: 0.3s;
  font-size: 20px;
}

.third-fot-container ul li a:hover {
  color: #006600;
}

.third-fot-container a {
  position: relative;
  z-index: 10;
}

.LinkdIn {
  width: 100%;
  text-align: left;
  padding-top: 10px;
}

/* Footer Decorative Image */
.footer-decor {
  width: 600px;
  height: auto;

  margin-top: 50px;
  margin-right: -180px;
  margin-left: -600px;
  margin-bottom: -59px;
  position: relative;
  overflow: hidden;
}