/* ================== ROOT COLOR PALETTE (Brand Colors from Logo) ================== */
:root {
  --eco-green: #2f8c36;        /* Green from 'eco' */
  --eco-green-dark: #1c8a00;   /* Dark green from navbar text */
  --mountain-purple: #8b2ccf;  /* Purple from mountain graphic */
  --carbon-black: #111111;     /* Strong dark text */
  --soft-grey: #f3f3f3;        /* Light background */
  --white: #ffffff;            /* Pure white */
}

/* ===================== RESET ===================== */
body {
  margin: 0;
  padding: 0;
}

/* ===== Floating Navbar ===== -----------------------------------------------------------------------------------*/
.navbar {
  display: flex;
  font-family: "Poppins", sans-serif;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  width: 92%;
  height: 50px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* ===== Logo ===== */
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar .logo img {
  height: 60px;
  width: auto;
  display: block;
}

.navbar .logo a {
  text-decoration: none;
  font-size: 1.7em;
  font-weight: bold;
  color: var(--eco-green-dark);
  letter-spacing: 0.5px;
}

/* ===== Menu List ===== */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--eco-green);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--carbon-black);
  background: rgba(28, 138, 0, 0.1);
}

/* ===== Hamburger Icon ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle .bar {
  height: 3px;
  width: 22px;
  background-color: var(--eco-green-dark);
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 30vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 25px;
    gap: 25px;
    transition: right 0.3s ease;
    box-shadow: -3px 0 8px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

/* ===== Mobile ===== */
@media (max-width: 480px) {
  .navbar {
    width: 85%;
    padding: 10px 15px;
  }

  .navbar .logo img {
    height: 50px;
  }

  .nav-menu {
    width: 220px;
  }
}

/* ===== About SECTION ===== ----------------------------------------------------------------------------------*/
.hero-section {
  background: var(--white);
  padding: 1px 10px;
  margin-top: -10px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  flex: 1 1 45%;
  position: relative;
  padding: 20px;
}

.hero-right {
  flex: 1 1 45%;
  padding: 20px;
}

.hero-left .tag {
  background: var(--mountain-purple);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.hero-left h1 {
  font-size: 2.5rem;
  color: var(--carbon-black);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero-left p {
  color: #444;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
}

.btn-contact {
  background: var(--carbon-black);
  color: var(--white);
  padding: 10px 22px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-left, .hero-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  iframe {
    width: 100%;
    height: 250px;
  }
}

/* ===== Why ORCCI ECO PRODUCTS Section =====------------------------------------------------------------------- */
.whyus-section {
  background-color: var(--soft-grey);
  color: var(--mountain-purple);
  padding: 20px 20px;
}

.whyus-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1px;
}

/* Left Side */
.whyus-left {
  flex: 1 1 5%;
  position: relative;
}

.whyus-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
  width: 100%;
  max-width: 200px;
}

.whyus-main-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Right Side */
.whyus-right {
  flex: 1 1 70%;
}

.whyus-top-logo {
  width: 120px;
  margin-bottom: 15px;
}

.whyus-right h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.whyus-right p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--eco-green);
}

/* Responsive */
@media (max-width: 992px) {
  .whyus-container {
    flex-direction: column;
    text-align: center;
  }

  .whyus-left, .whyus-right {
    flex: 1 1 100%;
  }

  .whyus-logo-card {
    position: static;
    margin: 20px auto 0;
  }

  .whyus-right h2 {
    font-size: 24px;
  }
}

/* ================ YOUTUBE SECTION ================== */
.youtube-section {
  padding: 10px 20px;
  text-align: center;
  background: var(--soft-grey);
}

.youtube-section h2 {
  font-size: 1.8rem;
  margin-bottom: 2px;
  font-weight: 600;
  color: var(--carbon-black);
}

.youtube-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 0;
  padding-bottom: 36.25%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Zoho Form Section */
.zoho-form-section {
    padding: 10px 20px;
    background: #f9f9f9; /* light background */
    display: flex;
    justify-content: center;
}

.zoho-form-container {
    width: 100%;
    max-width: 900px; /* keeps form centered & neat */
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* iFrame styling */
.zoho-form-container iframe {
    width: 100%;
    height: 1300px; /* Increase height if needed */
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .zoho-form-section {
        padding: 40px 15px;
    }

    .zoho-form-container {
        padding: 15px;
    }

    .zoho-form-container iframe {
        height: 700px; /* taller for mobile scrolling */
    }
}

@media (max-width: 480px) {
    .zoho-form-container iframe {
        height: 800px;
    }
}
/* Dropdown container */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    top: 100%;
    left: 0;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 999;
}

.nav-menu .dropdown-menu li {
    list-style: none;
}

.nav-menu .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.nav-menu .dropdown-menu li a:hover {
    background: #f0f0f0;
}

/* Show on hover */
.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}
/* Arrow styling */
.nav-menu .dropdown .arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: 0.3s;
}

/* Rotate arrow on hover */
.nav-menu .dropdown:hover .arrow {
    transform: rotate(180deg);
}
  