/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #006341;
  --dark-green: #004d33;
  --light-green: #e8f4ef;
  --accent-green: #00a862;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --text-light: #999999;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.container-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Navigation */
.top-nav {
  background: var(--white);
  padding-top: 6px;
  padding-bottom: 10px;
  z-index: 1000;
}

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

.logo img {
  height: 60px;
  width: 60px;
}

.nav-links {
  display: flex;
 
}
.box {
  padding: 10px;
  padding-top: 0;
  padding-right: 4px;

  width: fit-content;
  height: 30px;
}

.br {
  border-right: 1px solid grey;
}

.bl {
  border-left: 1px solid grey;
}

.bb {
  border-bottom: 1px solid grey;

}

.alphabets a {
  color: #404040;
  text-decoration: underline;
  padding-right: 5px;
}

.alphabets a:hover {
  text-decoration: none;
}

.alphabets a:nth-child(1) {
  font-weight: 300;
  font-size: 13px;
}
.alphabets a:nth-child(2) {
  font-weight: 300;
  font-size: 15px;
}
.alphabets a:nth-child(3) {
  font-weight: 300;
  font-size: 18px;
  padding-bottom: 0;
}

.languages select {
  border: none;
  font-size: 16px;
  font-weight: 300;
  color: #404040;
  text-decoration: underline;
}
.languages select {
  border: none;
  outline: none;
}
.languages select:active {
  border: 1px dashed red;
}

.login a {
  font-size: 16px;
  font-weight: 500;
  color: #404040;
}

.login a:hover {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--primary-green);
}

/* Hero Banner Section */

.cover-div {
  display: flex;
  max-width: 1350px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  gap:200px;
}


.hero-banner {
  background-image: url("Assets/WhatsApp\ Image\ 2025-12-07\ at\ 18.36.58_a043a647.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  width: 100%;
  padding-left: 9rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pinkbox {
  height: 50px;
  width: 100%;
  background-color: #FDF2DF;
}

.profile-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  background: var(--white);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  width: 340px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.705);
  backdrop-filter: blur(10px);
  text-align: center;
}



.profile-image {
  width: 170px;
  height: 170px;
  flex-shrink: 0;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info h1 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 300;
}

.profile-info .title {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 200;
  letter-spacing: 1px;
  margin-top: 20px;
}

.man {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.hero-contact-info {
  display: flex;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 4px;
}

.contact-item i {
  color: #008A00;
  font-size: 1.1rem;
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 300;
  font-size: 1rem;
  text-decoration: underline;
}

.contact-btn {
  display: inline-block;
  background: #008A00;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: var(--dark-green);
}

.contact-item a:hover {
  text-decoration: none;
}

.contact-item a:hover {
  color: green;
}



/* About Section */

.total-about {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 30px;
  border-bottom: 1px solid grey;
    
}
.about-section {
  padding: 60px 0;
  background: var(--white);
}

.about-section h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 400;
}


.about-content {
  padding-right: 150px;
}

 p {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 17px;
  line-height: 1.8;
}

.info-box {
  padding: 20px;
  padding-top: 0;
  border-radius: 6px;
}

.info-box h3 {
  font-size: 1.1rem;
  color:#007c16;
  margin-bottom: 3px;

  font-weight: 400;
}

.info-box p {
  color: var(--text-gray);
  font-size: 1rem;
}

/* Resources Section */
.resources-section {
  padding: 60px 0;
}

.resources-section h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 40px;
  text-align: center;
  font-weight: 300;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resource-card {
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.resource-image {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.resource-image img {
  font-size: 4rem;
  color: var(--white);
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.resource-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 500;
  margin: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.336);
}

.resource-links {
  list-style: none;
  margin-left: 20px;
}

.resource-links li {
  margin-bottom: 12px;
}

.resource-links a {
  color: var(--primary-green);
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  transition: color 0.3s;
  padding-left: 10px;
  text-decoration: underline;
  color: green;
}

.resource-links a:hover {
  text-decoration: none;
}

.resource-links a:hover {
  color: var(--dark-green);
  text-decoration: underline;
}

.resource-links a::before {
  content: "›";
  margin-right: 10px;
  font-weight: 300;
  font-size: 2rem;
}

/* Calculator Section */
.calculator-section {
  padding: 40px 0;
  background: #f5f5f5;
}

.calculator-box {
  padding: 20px;
  border-radius: 8px;
}

.calculator-icon {
  width: fit-content;
  height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto 20px;
  gap: 10px;
}

.icon-question i {
  font-size: 1.5rem;
  height: 40px;
  width: 40px;
  border: 2px solid green;
  border-radius: 50%;
  color: green;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-cont {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.text-cont h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 300;
}

.calculator-box p {
  color: var(--text-gray);
  margin-bottom: 25px;
  margin-left: 0;
  font-size: 1rem;
  font-weight: 300;
}

.question-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 20px;
}

.question-form input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
}

.question-form input:focus {
  outline: none;
  border-color: var(--primary-green);
}

.submit-btn {
  background: #007c16;
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--dark-green);
}

.faq-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  text-align: center;
}

.faq-link:hover {
  text-decoration: underline;
}

/* Share Section */
.share-section {
  padding: 100px 0;
  text-align: center;
}

.share-section h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 300;
}

.share-subtitle {
  color: var(--text-gray);
  margin-bottom: 25px;
  font-size: 1rem;
}

.social-share {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid grey;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  text-decoration: none;
  font-size: 1.5rem;
}

.social-btn:hover {
  border: 2px solid green;
}

/* Footer */
.footer {
  background: #1a5336;
  color: var(--white);
  padding: 50px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-section p {
  margin-bottom: 10px;
  opacity: 0.9;
  color: rgb(18, 190, 18);
}

.footer-section a {
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
  color: rgb(18, 190, 18);
}

.footer-section a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}


.footer-bottom p {
  font-size: 1rem;
  margin-bottom: 4px;
  color: white;
}

.disclaimer {
  font-size: 0.85rem !important;
  font-style: italic;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 40px;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
  position: relative;
}

.close {
  color: var(--text-gray);
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: var(--text-dark);
}

.modal-content h2 {
  margin-bottom: 30px;
  color: var(--text-dark);
  font-weight: 700;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: var(--primary-green);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 968px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content-wrapper {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .total-about {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-content {
  padding-right: 0;
}

.about-section h2 {
  text-align: center;
}


}

@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

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

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .question-form {
    flex-direction: column;
  }

  .social-share {
    flex-wrap: wrap;
  }

  .modal-content {
    width: 95%;
    padding: 25px;
    margin: 10% auto;
  }

  .cover-div {
    width: 100%;
  }

  .hero-banner {
    padding-left: 0;
  }

  .profile-section {
  padding: 20px;
  width: 300px;
}
}

@media (max-width:580px) {
  .man {
  flex-direction: column-reverse;
  gap: 20px;
  padding: 30px;

}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
 
}

.bl {
  border: 0px solid grey;
}

.hero-contact-info {
  flex-direction: column;
  align-items: center;
}
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  .profile-info h1 {
    font-size: 1.5rem;
  }

  .hero-banner {
    min-height: 300px;
  }

  section {
    padding: 40px 0;
  }
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.resource-card {
  animation: fadeIn 0.6s ease-in-out;
}
