/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
   font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #2e2e2e;
  overflow-x: hidden;
  h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);

  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: 0.4s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
}

/* NAV LINKS */
.navbar ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-link {
  color: #2f2f2f;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  position: relative;
  transition: 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -8px;
  left: 0;
  background: linear-gradient(90deg,#d3a655,#627945);
  transition: 0.4s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #d3a655;
}

/* CTA */
.cta {
  padding: 10px 25px;
  border-radius: 40px;
  background: linear-gradient(135deg,#d3a655,#f5e6c5);
  color: #2b2b2b;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(211,166,85,0.5);
}

/* LOGO */
.logo img {
  height: 55px;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  background: url('https://picsum.photos/1920/1080?nature') center/cover no-repeat;
}

/* GREEN + GOLD OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(98,121,69,0.65),
    rgba(0,0,0,0.55)
  );
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  text-align: center;
  animation: fadeUp 1.2s ease forwards;
}

.hero h1 {
 font-size: 80px;
  letter-spacing: 4px;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.hero p {
  margin-top: 15px;
  font-size: 16px;
  letter-spacing: 3px;
  color: #f1f1f1;
}

/* HERO BUTTON */
.hero-btn {
  margin-top: 30px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 40px;
  background: linear-gradient(135deg,#d3a655,#ffffff);
  color: #2e2e2e;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(211,166,85,0.6);
}

/* ================= ABOUT ================= */
.about-section {
  padding: 140px 20px;
  background: linear-gradient(180deg,#ffffff,#f4f4f4);
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

/* TITLE */
.about-title {
  font-size: 46px;
  color: #627945;
  letter-spacing: 4px;
  margin-bottom: 80px;
    font-weight: 600;

}
.box1 {
  width: 100%;
  height: 400px;
}

.box2 {
  width: 100%;
  height: 400px;
}

.box3 {
  width: 100%;
  height: 400px;
}

.box1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-title::after {
  content: "";
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg,#d3a655,#627945);
  display: block;
  margin: 20px auto;
}

/* CARD */
.about-card {
  display: grid;
  gap: 40px;
}

/* ITEM */
.about-item {
  padding: 40px;
  border-radius: 20px;

  background: linear-gradient(145deg,#ffffff,#f0f0f0);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.08),
    inset 0 0 20px rgba(255,255,255,0.5);

  transition: 0.4s;
}

.about-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* HEADINGS */
.about-item h3 {
  font-size: 26px;
  color: #d3a655;
  margin-bottom: 15px;
}

/* TEXT */
.about-item p {
  color: #444;
  line-height: 1.9;
  font-size: 15px;
}

/* HIGHLIGHT */
.about-item span {
  color: #627945;
  font-weight: bold;
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.15);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* SECTION */
.directors {
  padding: 100px 60px;
  text-align: center;
  background: #f8f8f8;
}

/* TITLE */
.section-title {
  font-size: 42px;
  margin-bottom: 60px;
  color: #627945;
  letter-spacing: 3px;
}

/* CONTAINER */
.director-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* CARD */
.director-card {
  text-align: center;
  transition: 0.4s;
}

/* IMAGE BOX */
.img-box {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 6px;

  /* PREMIUM BORDER EFFECT */
  background: linear-gradient(135deg, #d3a655, #627945);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.4s;
}

/* IMAGE */
.img-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
}

/* NAME */
.director-card h3 {
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 1px;
}

/* HOVER EFFECT */
.director-card:hover {
  transform: translateY(-10px);
}

.director-card:hover .img-box {
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* MOBILE */
@media(max-width: 768px){
  .director-container {
    flex-direction: column;
    align-items: center;
  }
}
/* SECTION */
.partners {
  padding: 100px 60px;
  text-align: center;
  background: #f8f8f8;
  margin-top: -90px;
}

/* TITLE */
.section-title {
  font-size: 42px;
  margin-bottom: 60px;
  color: #627945;
  letter-spacing: 3px;
}

/* CONTAINER */
.partners-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD */
.partners-card {
  text-align: center;
  width: 180px; /* controls 3 in a row */
  transition: 0.4s;
}

/* IMAGE BOX (SMALLER THAN MD) */
.partners-card .img-box {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 5px;

  background: linear-gradient(135deg, #d3a655, #627945);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto;
  transition: 0.4s;
}

/* IMAGE */
.partners-card .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

/* NAME */
.partners-card h3 {
  margin-top: 15px;
  font-size: 16px;
  letter-spacing: 1px;
}

/* HOVER */
.partners-card:hover {
  transform: translateY(-8px);
}

.partners-card:hover .img-box {
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* MOBILE */
@media(max-width: 768px){
  .partners-container {
    flex-direction: column;
    align-items: center;
  }
}
.gallery-cta {
  position: relative;
  overflow: hidden;

  padding: 140px 20px; /* more height */
  text-align: center;

  /* BASE GREEN GRADIENT */
  background: linear-gradient(
    135deg,
    #627945,
    #4e6336,
    #2f3e21
  );

  color: white;
}

/* PATTERN OVERLAY */
.gallery-cta::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;

  opacity: 0.4;
}

/* CONTENT ABOVE PATTERN */
.gallery-cta * {
  position: relative;
  z-index: 2;
}

/* BIG HEADING */
.gallery-cta h2 {
  font-size: 64px; /* bigger */
  letter-spacing: 4px;
}

/* BIG TEXT */
.gallery-cta p {
  margin-top: 20px;
  font-size: 22px;
  letter-spacing: 2px;
}

/* BIG BUTTON */
.gallery-btn {
  display: inline-block;
  margin-top: 40px;

  padding: 18px 50px; /* bigger button */
  border-radius: 50px;

  font-size: 18px;
  letter-spacing: 1px;

  background: linear-gradient(135deg, #d3a655, #ffffff);
  color: #2e2e2e;

  text-decoration: none;
  font-weight: 600;

  transition: 0.4s;
}

/* HOVER */
.gallery-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(211,166,85,0.6);
}
/* CONTACT SECTION */
.contact-details {
  padding: 100px 20px;
  background: #f8f8f8;
  text-align: center;
}

/* CONTAINER */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

/* CARD */
.contact-card {
  padding: 40px 20px;
  border-radius: 20px;

  background: linear-gradient(145deg, #ffffff, #f0f0f0);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.08),
    inset 0 0 20px rgba(255,255,255,0.6);

  transition: 0.4s;
}

/* ICON */
.contact-card i {
  font-size: 30px;
  margin-bottom: 15px;
  color: #627945;
}

/* TITLE */
.contact-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* TEXT */
.contact-card p {
  font-size: 14px;
  color: #555;
}

/* HOVER EFFECT */
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ICON HOVER COLOR */
.contact-card:hover i {
  color: #d3a655;
}
/* MAKE CARD CLICKABLE */
.contact-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* CLICK EFFECT */
.contact-card:active {
  transform: scale(0.97);
}
.contact-card:hover {
  transform: translateY(-10px) scale(1.03);
}
/* FOOTER */
.footer {
  background: #1f2a1a;
  color: #ddd;
  padding-top: 80px;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 60px;
}

/* COLUMN */
.footer-col h2,
.footer-col h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
}

/* LINKS */
.footer-col a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #d3a655;
}

/* LIST */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* SOCIAL ICONS */
.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  color: #ccc;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #d3a655;
  transform: scale(1.2);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f8f8f8;
}

/* NAV */
.navbar {
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  background: white;
}

.navbar a {
  text-decoration: none;
  color: black;
}

/* HERO */
.gallery-hero {
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: linear-gradient(
    135deg,
    #627945,
    #2f3e21
  );

  color: white;
}

.gallery-hero h1 {
  font-size: 60px;
}

.gallery-hero p {
  margin-top: 10px;
}

/* GRID */
.gallery-section {
  padding: 80px 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* IMAGES */
.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.4s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

#lightbox span {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
/* ================= NAVBAR BASE ================= */
.nav-left,
.nav-right {
  display: flex;
  gap: 30px;
  list-style: none;
}

/* LINKS */
.nav-link {
  text-decoration: none;
  color: #2e2e2e;
  font-size: 14px;
  letter-spacing: 2px;
}

/* CTA */
.cta {
  padding: 8px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg,#d3a655,#f5e6c5);
  text-decoration: none;
  color: black;
}

/* LOGO */
.logo img {
  height: 50px;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 2000;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: black;
  transition: 0.4s;
}

/* ANIMATION */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px,-6px);
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;

  transition: 0.4s;
}

/* ACTIVE */
.mobile-menu.active {
  right: 0;
}

/* MOBILE LINKS */
.mobile-menu a {
  text-decoration: none;
  font-size: 18px;
  color: #2e2e2e;
}

/* MOBILE CTA */
.mobile-cta {
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg,#d3a655,#ffffff);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px){

  /* HIDE DESKTOP MENU */
  .nav-left,
  .nav-right {
    display: none;
  }

  /* SHOW HAMBURGER */
  .menu-toggle {
    display: flex;
    position: absolute;
    top: 25px;
    right: 20px;
  }

  /* NAVBAR PADDING */
  .navbar {
    padding: 15px 20px;
  }

}
@media (max-width: 768px){

  /* FORCE HIDE DESKTOP NAV */
  .nav-left,
  .nav-right {
    display: none !important;
  }

  /* SHOW HAMBURGER */
  .menu-toggle {
    display: flex !important;
  }

}