
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  z-index: 2000;
  padding: 0.75rem 2rem;
  transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  padding: 0.5rem 2rem;
}

/* Logo */
.logo {
  display: inline-block;
  padding: 0.25rem;
  overflow: visible; /* Prevent clipping of scaled image */
}

.logo img {
  height: 100px; /* Keep actual size small */
  width: auto;
  display: block;
  transform: scale(1.8); /* Visually enlarge logo */
  transform-origin: left center; /* Anchor scale from left */
  margin-top: -10px; /* Optional: adjust vertical alignment */
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #e80a0a;
  text-decoration: none;
  font-weight: 500;
}

/* Navbar Flex Layout */
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* Hero */
.hero {
  height: 120vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('images/stock3.jpg') center/cover no-repeat;
  display: flex;
  background-position: center 40px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}


.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.hero .btn {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  background: #f7931e;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #e67e00;
}

/* About */
.about {
  background-color: #f3f3f3;
  padding: 10rem 0;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.about-list {
  text-align: left;
  margin: 1.5rem auto 2rem;
  padding-left: 1.5rem;
  max-width: 700px;
  list-style: disc;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Services */
.services {
  padding: 10rem 0;
  background-color: #fff;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-box {
  background: #f1f1f1;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.icon-placeholder {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Achievements */
.achievements-field {
  height: 120vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('images/ach1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.achievements-field .overlay {
  background-color: rgba(80, 73, 73, 0.5);
  padding: 4rem 2rem;
}

.achievements-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.achievements-text {

  max-width: 700px;
}

.achievements-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.achievements-text p {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.achievement-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.achievement-box:hover {
  transform: translateY(-4px);
}

.achievement-box h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.achievement-box p {
  font-size: 1rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .achievements-flex {
    flex-direction: column;
    text-align: center;
  }

  .achievements-text,
  .achievements-grid {
    max-width: 100%;
  }

  .contact-columns {
    flex-direction: column;
    text-align: center;
  }

  .contact-left {
    align-items: center;
    text-align: center;
  }

  .contact-form {
    margin-top: 2rem;
  }
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background-color: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1b4d3e;
}

.contact-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}


.contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin: 60px auto;
  max-width: 1100px;
  padding: 0 1rem;
  align-items: center; 
}

.contact-left {
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  color: #4a6b38;
  margin-top: 1rem;
}

.contact-info-list li {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.contact-right {
  flex: 1 1 450px;
}

.contact-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  text-align: left;
}

/* Form Fields */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 1.5rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f7931e;
  box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.2);
}

.contact-form button {
  background-color: #f7931e;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e67e00;
}

/* Footer */
.footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 1.5rem 0;
}

/* mobile */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .logo img {
    height: 70px;
  }

  .achievements-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* Scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Info Cards */
.contact-info {
  background-color: transparent;
  padding: 4rem 0;
}

.contact-info-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.info-card {
  flex: 1 1 250px;
  background-color: #fff;
  color: #333;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: #1b4d3e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-card p {
  font-size: 1rem;
  color: #333;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.hamburger {
  display: none;
}

/* MOBILE  */
@media (max-width: 768px) {
  .navbar .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 0.75rem !important;
    box-sizing: border-box;
  }

  
  .nav-wrapper,
  .navbar .container.nav-wrapper {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  .logo {
    margin: 0;
    padding: 0;
    order: 0;
  }
  .logo img {
    height: 70px;
    max-width: 140px;
    width: auto;
    display: block;
    margin: 0;          
    transform: none !important;
  }

  .hamburger {
    display: block !important;
    order: 1;
    margin-left: auto;
    margin-right: 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    width: 100% !important;
    position: absolute;
    top: 100%;
    left: 0; 
    padding: 1rem 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    box-sizing: border-box;
  }
  .nav-links.active { display: flex; }

  .navbar {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }



  .nav-links li {
    margin: 0.5rem 0;
  }

  .hero {
    padding-top: 7rem; 
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
.achievements-flex {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .achievements-text,
  .achievements-grid {
    width: 100%;
    max-width: 100%;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .achievement-box h3 {
    font-size: 1.75rem;
  }

  .achievement-box p {
    font-size: 0.95rem;
  }

  .achievements-field {
    padding: 5rem 1rem;
    height: auto;
  }

  iframe {
    width: 100% !important;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}