@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");

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

body {
  font-family: "Poppins", sans-serif;
  width: 100vw;
  overflow-x: hidden;
}

:root {
  /* ===== Core Theme Colors ===== */
  --primary: #286527;
  /* Deep green – main background */
  --secondary: #92c48d;
  /* Soft green – section backgrounds */
  --accent: #3db741;
  /* Bright green – buttons, highlights */
  --light: #e6f7e6;
  /* Light green-white – text on dark backgrounds */
  --dark: #1a3a1a;
  /* Near-black green – footer or text contrast */

  /* ===== Text Colors ===== */
  --text-primary: #ffffff;
  /* Main text color */
  --text-secondary: #cce5cc;
  /* Muted text for paragraphs/subheadings */
  --text-accent: #a3e39f;
  /* Accent text for hover or emphasis */

  /* ===== Background Colors ===== */
  --bg-main: var(--primary);
  --bg-section: var(--secondary);
  --bg-light: var(--light);
  --bg-dark: var(--dark);

  /* ===== Gradients ===== */
  --gradient-1: linear-gradient(135deg, #286527 0%, #92c48d 50%, #3db741 100%);
  --gradient-2: linear-gradient(90deg, #1a3a1a 0%, #286527 40%, #3db741 100%);
  --gradient-glow: linear-gradient(
    180deg,
    #3db741 0%,
    #92c48d 70%,
    #1a3a1a 100%
  );
}

header {
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--accent);
}

.logo img {
  width: 250px;
  padding: 0px 5px;
}

.logo1 {
    width: 250px;
    height: 80px;
    object-fit: cover;
}

.nav_links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: larger;
  font-weight: 600;
  gap: 25px;
}

.nav_links li {
  list-style: none;
  position: relative;
}

.nav_links li a {
  text-decoration: none;
  color: white;
}

i {
  cursor: pointer;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 200;
}

.icons i {
  color: white;
  font-size: larger;
  padding-right: 50px;
}

.hamburger {
  display: none;
}

.lines {
  width: 25px;
  background-color: white;
  height: 3px;
  margin: 5px;
}

header nav ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: -8px;
}

header nav ul li a:hover::after {
  width: 100%;
  background-color: white;
}

.page {
  position: relative;
}

.drop_menu {
  display: none;
}

.drop_menu1 {
  display: block;
  position: absolute;
  left: 0;
  bottom: -65px;
  padding: 10px 6px;
  background-color: rgb(12, 59, 12);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

@media screen and (max-width: 1200px) {
  .nav_links {
    font-size: large;
  }
}

@media screen and (max-width: 1150px) {
  .nav_links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .icons i {
    padding-right: 5px;
  }
}

/* ---------------------------------------------------------------------------- */

/* Sidebar */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: var(--dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
  transition: 1s;
  padding-top: 20px;
  margin-top: 10vh;
}

.sidebar ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 10px 15px;
  position: relative;
}

.sidebar ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.sidebar ul li div span {
  color: var(--accent);
  text-decoration: none;
}

.flexdiv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sidebar ul li a:hover {
  color: #f1f1f1;
}

.sidebar ul li .submenu {
  list-style: none;
  padding-left: 15px;
  /* max-height: 0; */
  overflow: hidden;
  display: none;
}
.sidebar ul li .submenu2 {
  padding-left: 15px;
  display: none;
}
.submenu1 {
  padding-left: 15px;
  display: block;
}

/* Close button */
.sidebar .close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  cursor: pointer;
  color: var(--accent);
}


/***********************************************************/
.login-main {
    margin-top: 120px;
}

.login h1,
h2 {
    text-align: center;
    padding: 10px;
}

.login {
    max-width: 600px;
    height: 500px;
    margin: 50px auto;
    background: var(--secondary);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.login input,
.login textarea {
    width: 100%;
    padding: 20px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    background: var(--light);
    color: var(--dark);
}

.login button {
    width: 120px;
    background: var(--accent);
    color: var(--light);
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    text-align: center;
}

.login button:hover {
    background: var(--secondary);
}

.contact-section {
	background: var(--gradient-1);
	color: var(--light);
	padding: 60px 0;
	text-align: center;
	text-transform: capitalize;
    margin-top: 45px;
}

.contact-section h2 {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 20px;
}

.contact-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	margin-top: 30px;
}

.contact-card {
	background: var(--light);
	color: var(--dark);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	width: 320px;
	transition: all 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	background: var(--gradient-2);
	color: var(--light);
}

.contact-form {
	max-width: 600px;
	margin: 50px auto;
	background: var(--secondary);
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px;
	margin: 10px 0;
	border: none;
	border-radius: 6px;
	background: var(--light);
	color: var(--dark);
}

.contact-form button {
	background: var(--accent);
	color: var(--light);
	border: none;
	padding: 12px 25px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
	transition: 0.3s;
}

.contact-form button:hover {
	background: var(--secondary);
}
/******************************************************************************/


/* ------MEDIA QUERY-------*/


/* Laptop  L */

@media screen and (max-width:1441px) {
    #menu {
        display: none;
    }
    .contact-section  h2{
        margin-top: 55px;
    }
    .logo {
        width: 280px;
    }
    h3 {
        font-size: 24px;
    }
    p {
        font-size: 24px;
    }
    .nav-links>li>a {
        font-size: 14px;
    }
.contact-card {
        width: 600px;
        font-size: 20px;
        text-align: center;
        padding: 40px 0px;
    }
}

/* Laptop nrml */
@media screen and (max-width:1025px) {
    #menu {
        display: block;
        margin-left: auto;
    }
            .mobile-dropdown .dropdown-menu li a {
    font-size: 12px;
}
    h3 {
        font-size: 22px;
    }
    p{
    font-size: 20px ;
    }
    .nav-links {
        display: none;
    }
    .contact-section h2 {
        font-size: 32px;
    }
    .anchor {
        display: none;
    }
    .contact-card {
        width: 450px;
        padding: 30px 0px;
    }
}

@media screen and (max-width:1025px) {
    
    .Logo {
        width: 150px;
        margin-top: 10px;
    }
    h3 {
        font-size: 20px;
    }
    .nav-links>li>a {
        font-size: 10px;
    }
    p {
        font-size: 18px;
    }
}

/* Tablet */

@media screen and (max-width:769px) {
    .nav-links {
        display: none;
    }
    .anchor {
        display: none;
    }
     .contact-section h2 {
        font-size: 30px;
    }
    #menu {
        display: block;
    }
}


/* Mobile L*/

@media screen and (max-width:426px) {
     .contact-section h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 18px;
    }
    p{
        font-size: 16px;
    }
    .contact-card {
        margin: 30px;
    }
    .contact-form {
        width: 350px;
        margin: auto;
    }
}

/* Mobile M */

@media screen and (max-width:376px) {
       .contact-section h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 16px;
    }
    p{
        font-size: 14px;
    }
     .contact-form {
        width: 320px;
        margin: auto;
    }
}

/* Mobile S*/

@media screen and (max-width:321px) {

       .contact-section h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 18px;
    }
    p{
        font-size: 16px;
    }
     .contact-form {
        width: 280px;
        margin: auto;
    }
    .cta-button {
        padding: 10px;
        font-size: 18px;
    }
}

footer {
  height: 100%;
  text-align: center;
  color: var(--light);
  opacity: 0.8;
}

.footer-parent {
  display: grid;
  grid-template-columns: auto auto auto auto;
  background: rgba(5, 37, 37, 0.85);
  object-fit: cover;
  margin-top: 20px;
}

.set1 {
  padding: 10px;
}

.logo1 {
  height: 80px;
  object-fit: cover;
}

.set2 {
  padding: 20px;
  text-align: center;
}

.footer-header {
  color: var(--accent);
}

.footer-li {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.footer-li a {
  margin-top: 5px;
  text-decoration: none;
  color: #f2f9f8;
  padding: 5px;
}

.footer-li a:hover {
  color: #2fa39a;
}

.set3 {
  padding: 20px;
  text-align: center;
}

.footer-para {
  color: #f2f9f8;
}

.set4 {
  padding: 20px;
  text-align: center;
}

.set4 .footer-para {
  color: #f2f9f8;
  line-height: 2;
}

.svg {
  margin-top: 5px;
  padding: 2px;
  width: 40px;
  height: 40px;
  fill: #f2f9f8;
}

.svg:hover {
  fill: var(--accent);
}

@media screen and (max-width: 1441px) {
  .footer-header {
    font-size: 26px;
  }
  .footer-li {
    font-size: 22px;
  }
  .footer-para {
    font-size: 22px;
  }
}

@media screen and (max-width: 1125px) {
  .footer-parent {
    display: grid;
    grid-template-columns: auto auto;
  }

  .footer-header {
    font-size: 24px;
  }
  .footer-li {
    font-size: 20px;
  }
  .footer-para {
    font-size: 20px;
  }
}

@media screen and (max-width: 850px) {
  .footer-header {
    margin-top: 10px;
  }

  .footer-parent {
    grid-template-columns: auto;
    padding: 30px;
  }

  .footer-li {
    font-size: 16px;
  }
  .footer-para {
    font-size: 18px;
  }
}

@media screen and (max-width: 428px) {
  .footer-header {
    margin-top: 10px;
  }

  .footer-li {
    font-size: 16px;
  }
}

@media screen and (max-width: 376px) {
  .footer-header {
    margin-top: 10px;
  }

  .footer-parent {
    grid-template-columns: auto;
    padding: 0px;
  }

  .footer-li {
    font-size: 14px;
  }

  .set1 {
    padding: 0px;
  }
  .footer-para {
    font-size: 14px;
    padding: 5px;
  }
  .logo {
    width: 200px;
  }

  .logo1 {
    width: 250px;
  }
  .footer-parent {
    padding: 0px;
  }

  .footer-header {
    margin: 0px;
    font-size: 20px;
  }

  .set1,
  .set2,
  .set3,
  .set4 {
    padding: 10px;
  }
  .footer-li {
    font-size: 14px;
  }

  .set1 {
    padding: 0px;
  }
  .footer-para {
    font-size: 14px;
    padding: 5px;
  }
  .cta-button {
    padding: 10px;
    font-size: 18px;
  }
}
