/* Reset basic styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,body{
  overflow-x: hidden;
}
.hamburger{
  display: none;
}
.intro-div{
  padding-top: 6rem;
}
.phone_div1 form {
    display: none;
    justify-content: end;
}
.footer {

    width: 100%;
    margin-left: 0px;
    left: 0;
}
  .phone_form_container {
    display: none;
    align-items: center;
    gap: 8px;
}
.sidebar-toggle-btn {
  display: none;
}

/* body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
} */

/* Banner Section */
.about-banner-img {
    background: url('https://res.cloudinary.com/dmcfuei38/image/upload/v1755771898/pexels-jan-kroon-357445-1000057_logu8c.jpg');
    padding: 80px 20px;
    text-align: center;
    color: white;
    background-color: #2b7a2b;
    background-size: cover;        
    background-repeat: no-repeat;   
    background-attachment: fixed;  
    background-position: center; 
}
/* Section 0: Who Are We Banner */
.who-are-we-banner {
    height: 50vh;
    background-image: url('https://res.cloudinary.com/dmcfuei38/image/upload/v1755771898/pexels-jan-kroon-357445-1000057_logu8c.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.who-are-we-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.who-are-we-banner h2 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 5rem;
    text-align: center;
}



/* Section 1: About Website */
.about-website {
  display: flex;
  justify-content: center;
  padding: 1rem 1.5rem;
  background-color: #f0f8f0;
}
.about-website a{
  color: #2b7a2b;
  text-decoration: none;
}
.about-website a:hover{
  text-decoration: underline;
}
.about-website-card {
  max-width: 1350px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-website-card-text {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
  color: #333;
}



/* Section 2: About US */
.aboutus {
   background-color: #f5fffa;
   padding: 1.5rem;
}

.aboutus-content-container {
   display: flex;
   align-items: center;
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.aboutus-content-container-title {
    margin: 0;
    font-size: 2rem;
    flex-shrink: 0;  
    white-space: nowrap;
}

.aboutus-content-container p {
    font-size: 1.1rem;
    text-align: justify;
    border-left: 4px solid #4caf50;
    padding-left: 1rem;
    margin: 0;
}



/* Section 3: Vision & Mission */
.vision-mission {
    background-color: #094328;
    color: #fff;
    padding: 1.9rem;
}

.vision-mission-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.vision-mission-section-title {
    text-align: center;
    font-size: 1.9rem;
}

h5.vision-mission-card-header {
   font-size: 1.2rem;
   margin-bottom: 1rem;
}

.vision-mission .grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.vision-mission .card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vision-mission ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.vision-mission li {
    margin-bottom: 0.5rem;
    padding-left: 0; 
    position: relative;
}

.vision-mission .objectives li,
.vision-mission .differentiators li {
    padding-left: 1.75rem;
}

.vision-mission .objectives li::before,
.vision-mission .differentiators li::before {
    content: "⭐";
    position: absolute;
    left: 0;
    color: gold;
    font-size: 1rem;
}



/* Section 4: Five for Five */
.five-for-five {
   padding: 1rem 0;
   background-color: #f5fffa;
   text-align: justify;
}

.five-for-five-content-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 2px 32px;
}

.five-for-five-title {
    text-align: center;
    font-size: 1.9rem;
    margin: 1rem 0 0.5rem;
}

.five-for-five-subtitle {
    display: block;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600px;
    margin-bottom: 2rem;
    color: #333;
}

.five-for-five-flex-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.five-for-five-flex-item {
    flex: 1;
    min-width: 300px;
}

.five-for-five-rounded-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 53px;
    display: block;
    margin: 0 auto;
}

.five-for-five-image-container img {
    transition: transform 0.5s ease;
}

.five-for-five-image-container img:hover {
    transform: scale(1.03);
}



/* Section 5: Stakeholders */
.stakeholders {
    background-color: #fff;
    padding: 0rem 1rem;
}

.stakeholders-content-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.stakeholders-title {
    color: white;
    text-align: center;
    font-size: 1.9rem;
    /* margin: 1rem; */
    /* margin-bottom: 2rem; */
}

.stakeholders .card-container {
    background-color: #094328;
    border-radius: 1rem;
    padding: 1rem;
}

.stakeholders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stakeholder-item img {
    max-height: 80px;
    width: auto;
    margin-bottom: 0.5rem;
}

.stakeholder-item p {
    font-size: 0.9rem;
    color: #fff;
}



/* Section 6: Our Brands */
.our-brands {
    background-color: rgba(20, 108, 67, 0.19);
    text-align: justify;
}

.our-brands-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem;
}

.our-brands-title {
    color: black;
    text-align: center;
    font-size: 2rem;
    margin: 1rem;
    /* margin-bottom: 2rem;  */
}

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

.our-brands-card {
    background-color: rgba(245, 255, 250, 0.856);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.our-brands-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.our-brands-logo {
    width: 7rem;
    margin: 1rem auto;
    display: block;
}

.our-brands-card-title {
    color: #08284d;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
}

.our-brands-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.our-brands-list li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.our-brands-list li::before {
    content: "🌿";
    position: absolute;
    left: 0;
}

.our-brands-kannada-text {
    font-size: 0.9rem;
}



/* Section 7: Services We Offer */
.services-we-offer-section {
  background-color: #094328;
  padding: 2rem 0;
  color: #fff;
}

.services-we-offer-section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-we-offer-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.services-we-offer-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.services-we-offer-card {
  background-color: rgba(248, 248, 255, 0.9);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #000;
}

.services-we-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.services-we-offer-card img {
  width: 7rem;
  margin: 1rem auto;
  display: block;
}

.services-we-offer-card-body {
  padding: 1rem;
}

.services-we-offer-card-title {
  text-align: center;
  color: #08284d;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.services-we-offer-card-subtitle {
  color: #094328;
  font-weight: bold;
  margin-top: 1rem;
  font-size: 1rem;
}

.services-we-offer-card ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
  text-align: justify;
}

.services-we-offer-card ul li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.services-we-offer-english {
  display: block;
  font-weight: 500;
}

.services-we-offer-kannada-text {
  display: block;
  font-size: 0.9rem;
  color: #333;
  margin-top: 0.1rem;
}



/* Section 8: Our Online Services */
.our-online-services-section {
  background-color: #094328;
  color: #fff;
  padding: 2rem 0;
  margin-top: 2rem;
  border-radius: 10px;
}

.our-online-services-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.our-online-services-title {
  text-align: center;
  font-size: 2rem;
  /* margin-bottom: 2rem; */
}

.our-online-services-flex-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.our-online-services-flex-item {
  flex: 1;
  min-width: 300px;
}

.our-online-services-text-content h5 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.our-online-services-service-brief ul,
.our-online-services-online-max ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.our-online-services-service-brief ul li,
.our-online-services-online-max ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.our-online-services-kannada-text {
  font-size: 0.9rem;
  color: #ffeb3b;
  margin-left: 0.3rem;
}

.our-online-services-image-container {
  text-align: center;
}

.our-online-services-image {
  max-width: 400px;
  width: 100%;
  display: block;
  margin: 0 auto;
}



/* Section 9: Resource Section */
.resource-section {
  padding: 2rem 0;
  background-color: #f5fffa;
  color: #000;
}

.resource-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.resource-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.resource-intro-text {
  text-align: justify;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.resource-flex-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.resource-flex-item {
  flex: 1;
  min-width: 300px;
}

.resource-video-column video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.resource-subtitle {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.resource-brochure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.resource-brochure-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  padding-bottom: 1rem;
}

.resource-brochure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.resource-brochure-card img {
  width: 100%;
  height: auto;
  display: block;
}

.resource-brochure-card p {
  padding: 0.5rem 1rem 0.5rem;
  font-size: 1rem;
}

.resource-download-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #094328;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.resource-download-btn:hover {
  background-color: #166534;
  transform: translateY(-2px);
}

/* 768px */
@media (max-width: 768px) {
  .flex-layout,
  .five-for-five-flex-layout,
  .aboutus-content-container,
  .our-online-services-flex-layout,
  .resource-flex-layout {
      flex-direction: column;
  }

  .vision-mission .grid-layout,
  .stakeholders-grid,
  .our-brands-card-grid,
  .services-we-offer-card-grid,
  .resource-brochure-grid {
      grid-template-columns: 1fr;
  }

  .who-are-we-banner h2 {
      font-size: 3rem;
  }

  .about-website-card {
    padding: 1.5rem;
  }

  .about-website-card-title {
    font-size: 1.7rem;
  }

  .about-website-card-text {
    font-size: 1rem;
  }

  .aboutus-content-container-title {
      white-space: normal;
      text-align: center;
  }
  
  .aboutus-content-container p {
      border-left: none;
      padding-left: 0;
  }
  
  .five-for-five-rounded-image {
      width: 100%;
      height: auto;
      border-radius: 20px;
  }
  
  .our-online-services-image {
      max-width: 100%;
  }

  .aboutus-content-container .aboutus-image-container {
    order: -1;
  }

  .five-for-five-flex-layout .five-for-five-image-container {
    order: -1;
  }

  .our-online-services-flex-layout .our-online-services-image-container {
      order: -1;
  }

  .resource-flex-layout .resource-video-column {
      order: -1;
  }
}