/* Reset some default browser styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:'Times New Roman', Times, serif;
    line-height:2.5;
}

/* Style for the navigation bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 1rem 2rem;
}
nav h2{
  color: #e4dd26;
}
/* Logo and title section */
.abc {
    display: flex;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

.abc img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

/* Style for the navigation links */
.nav-link {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-link li {
    display: inline;
}

.nav-link a {
    color: #faf4f4;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.nav-link a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-link {
        flex-direction: column;
        gap: 10px;
    }
}
.css2{
  color:rgb(255, 0, 0);
  background-color:rgb(226, 206, 47);
  font-size:30px;
  font-family:'Times New Roman', Times, serif;
  font-style:oblique;
  font-weight:600;
  letter-spacing: 1px;
}
.hero {
  background-image: url('background.webp');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

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


.section {
    padding: 50px;
    text-align: center;
  }
    body {
      line-height: 1.6;
      font-family: Arial, sans-serif;
      background-color: rgb(178, 209, 181);
    }

    #awareness h2 {
      font-size: 2.2rem;
      text-align: center;
      margin-bottom: 20px;
      color: rgb(79, 8, 8);
      font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    .group-card {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
    }

    .project-card {
      position: relative;
      height: 400px;
      font-size:12px;
      width: 300px;
      margin: 20px;
      overflow: hidden;
      border-radius: 60ppx;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      background-color: rgb(255, 255, 255);
      color: rgb(50, 16, 16);
      font-family: Georgia, 'Times New Roman', Times, serif;
      text-align: center;
    }

    .project-img img {
      width: 300px;
      height: 200px;
      object-fit: cover;
    }

    .project-description {
      position: absolute;
      top: 0%;
      left: -100%;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: left 0.5s ease;
    }


section {
    padding: 60px; /* Increase section padding if needed */
    text-align: center;
  }
  
  .awar-container {
    display: flex;
    justify-content: center;
  }
  
  .awar {
    width: 600px; /* Increase card width */
    height: 600px;
    padding: 10%; /* Increase card padding */
    border: 50px solid #ddd;
    border-radius:8px;
    background-color: #f9f9f9;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  .awar img {
    max-width: 100%; /* Keep image responsive */
    max-height: 100%;
    border-radius: 0px;
  }
  
  .awar p {
    font-size: 1.3em; /* Increase text size */
    margin-top: 15px;
  }
#statistic h2{
  color: rgb(255, 230, 0);
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode';
}
.stat-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem; 
}
    .stat p{
      color: #270404;
    }
.stat .statistic {
  
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 1rem;
    transition: transform 0.3s ease;
}
    
.stat:hover, .statistic:hover {
    transform: scale(1.05);
}
    
.stat img, .statistic img {
    width: 100%;
    border-radius: 8px;
}
    

#tips .tips-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat, .tip {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.stat:hover, .tip:hover {
    transform: scale(1.05);
}

.stat img, .tip img {
    width: 100%;
    border-radius: 8px;
}
/* contact section */
#contact{
    background-color: #f9f9f9db;
    padding: 50px;
    text-align: center;
}
.contact-card{
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #6ff1fa;
    box-shadow:0 4px 12px rgb(0, 0, 0.1);
    border-radius: 5px;
}
.contact-card h2{
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}
.contact-card p{
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}
.form-group{
    margin-bottom: 20px;
    text-align: left;
}
.form-group label{
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}
.form-group input,
.form-group text area{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 10px;
    border-radius: 3px;
}


  body {
    line-height: 1.6;
    font-family: Arial, sans-serif;
  }

  

  #host {
    padding: 50px;
    background-color: rgb(86, 146, 195);
  }

  #host h2 {
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 10px;
    color: #050542;
    font-family: Georgia, Times, 'Times New Roman', serif;
  }
  #host h1 {
    text-align: center;
    font-size: 2rem;
    color: #190367;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Sans Unicode',Verdana;
  }

  .host-card {
    background: #fdfa33;
    border: 2px solid#ddd;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .host-card img {
    border-radius: 60px;
  }
  #host h5 {
    text-align: center;
    margin-bottom: 20px;
    color: #5c1c1c;

  }
  

  .know-more {
    text-decoration: none;
    color: #fff;
    background-color: #0e9f1a;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
  }

  .read-more:hover {
    background-color: #f5cbc0;
  }
  #project {
    padding: 50px;
    background-color: rgb(209, 233, 195);

  }

  #project h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .group-card {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;

  }

  .project-card {
    position: relative;
    height: 400px;
    width: 300px;
    margin: 20px;
    overflow: hidden;
    border-radius: 60ppx;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

  }

  .project-img img {
    width: 300px;
    height: 200px;
    object-fit: cover;
  }

  .project-description {
    position: absolute;
    top: 0%;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.5s ease;
  }

  .project-description h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #ffdd77;
  }

  .project-description p {
    margin: 10px 0;
    padding: 0 20px;
    font-size: 1em;
  }

  .project-card:hover .project-description {
    left: 0;

  }

  .view-botton {
    text-decoration: none;
    color: #fff;
    background-color: #ff704d;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
  }
  .scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ff5733 transparent;
  }

  .scroll-container::-webkit-scrollbar {
    height: 8px;
  }

  .scroll-container::-webkit-scrollbar-thumb {
    background-color: #ff5733;
    border-radius: 10px;
  }

  .scroll-container::-webkit-scrollbar-track {
    background-color: #ffffff;
  }
  #tool-section {
    padding: 50px 0;
    background-color: rgb(0, 0, 0);
    text-align: center;
  }

  #tool-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #fffefe;
  }

  .scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ff5733 transparent;
  }

  .scroll-container::-webkit-scrollbar {
    height: 8px;
  }

  .scroll-container::-webkit-scrollbar-thumb {
    background-color: #ff5733;
    border-radius: 10px;
  }

  .scroll-container::-webkit-scrollbar-track {
    background-color: #ffffff;
  }

  .tool-card {
    min-width: 300px;
    background-color: #050472;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .tool-card:hover {
    transform: scale(1.05);
  }

  .tool-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .tool-card h3 {
    margin: 20px 0 10px;
    font-size: 1.5em;
    color: #f6f609;
  }

  .tool-card p {
    padding: 0 20px;
    font-size: 1em;
    color: #fefafa;
  }

  .know-more {
    text-decoration: none;
    color: #fff;
    background-color: #06400f;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
  }

  .read-more:hover {
    background-color: #ff704d;
  }

  /* Resetting some default button styles */
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* Styling the button */
.styled-button {
  background-color: #4CAF50; /* Green background */
  color: white;              /* White text */
  padding: 10px 20px;        /* Padding for button size */
  font-size: 16px;           /* Font size */
  border-radius: 5px;        /* Rounded corners */
  border: 2px solid #4CAF50; /* Border matching background */
  transition: 0.3s;          /* Smooth transition for hover effect */
}

/* Hover effect */
.styled-button:hover {
  background-color: white;   /* Change background to white */
  color: #e9621a;            /* Change text color to green */
}


.about-section {
  width: 80%;
  max-width: 600px;
  background-color: #fff;
  padding: 2px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}


.team {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.team-member {
  text-align: center;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 5px;
  object-fit: cover;
  margin-bottom: 10px;
}

.contact-info {
  text-align: left;
  margin-bottom: 20px;
}

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icons {
  display: flex;
  gap: 15px;
  margin-left: 10px;
}

.icon {
  color: #333;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}

.icon:hover {
  color: #0073b1; /* Optional: Change hover color */
}


#project {
  padding: 50px;
  background-color: rgb(75, 75, 75);
}

#project h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
  color: #fcfcfc;
  
}

.group-card {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.project-card {
  position: relative;
  height: 400px;
  width: 300px;
  margin: 20px;
  overflow: hidden;
  border-radius: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.project-img img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.project-description {
  position: absolute;
  top: 0%;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: left 0.5s ease;
}

.project-description h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffdd77;
}

.project-description p {
  margin: 10px 0;
  padding: 0 20px;
  font-size: 1em;
}

.project-card:hover .project-description {
  left: 0;

}

.view-botton {
  text-decoration: none;
  color: #fff;
  background-color: #ff704d;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #ff5733 transparent;
}

.scroll-container::-webkit-scrollbar {
  height: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background-color: #ff5733;
  border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-track {
  background-color: #ffffff;
}

#blog-section {
  padding: 50px 0;
  background-color: rgb(228, 234, 163);
  text-align: center;
}

#blog-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #000000;
}

.scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #02270e transparent;
}

.scroll-container::-webkit-scrollbar {
  height: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background-color: #ff5733;
  border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-track {
  background-color: #ffffff;
}

.blog-card {
  min-width: 300px;
  background-color: #68b76a;
  border-radius: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: scale(1.05);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card h3 {
  margin: 20px 0 10px;
  font-size: 1.5em;
  color: #f6f609;
}

.blog-card p {
  padding: 0 20px;
  font-size: 1em;
  color: #fefafa;
}

.read-more {
  text-decoration: none;
  color: #fff;
  background-color: #e32d18;
  padding: 10px 20px;
  margin: 20px;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #6d8770;
}
#statistic{
  background-color: #292851;
}

#tips{
  background-color: #febf7b;
}
#about{
  background: #4f80b8;
}
html {
  font: 300 100%/1.5 Ubuntu, sans-serif;
  color: #333;
  overflow-x: hidden;
}
h2 {
  margin: 0;
  color: #000408;
  font-size: 2.5em;
  font-weight: 300;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode';
}
#contact-form {
  max-width: 1208px;
  max-width: 75.5rem;
  margin: 10px auto;
}
#contact, label, input[name="submit"] {
  position: relative;
}
label > span, input, textarea, button {
  box-sizing: border-box;
}
label {
  display: block;
}
label > span {
  display: none;
}
input, textarea, button {
  width: 100%;
  padding: 0.5em;
  border: none;
  font: 300 100%/1.2 Ubuntu, sans-serif;
}
input[type="text"], input[type="email"], textarea {
  margin: 0 0 1em;
  border: 1px solid #ccc;
  outline: none;
}
input.invalid, textarea.invalid {
  border-color: #d5144d;
}
textarea {
  height: 6em;
}
input[type="submit"], button {
  background: #a7cd80;
  color: #333;
}
input[type="submit"]:hover, button:hover {
  background: #91b36f;
}
@media screen and (min-width: 30em) {
  #contact-form h2 {
    margin-left: 26.3736%;
    font-size: 2em;
    line-height: 1.5;
  }
  label > span {
    vertical-align: top;
    display: inline-block;
    width: 26.3736%;
    padding: 0.5em;
    border: 1px solid transparent;
    text-align: right;
  }
  input, textarea, button {
    width: 73.6263%;
    line-height: 1.5;
  }
  textarea {
    height: 10em;
  }
  input[type="submit"], button {
    margin-left: 26.3736%;
  }
}
@media screen and (min-width: 48em) {
  #contact-form {
    text-align: justify;
    line-height: 0;
    color: #000;
  }
  #contact-form:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  #contact-form h2 {
    margin-left: 17.2661%;
  }
  #contact-form form, #contact-form aside {
    vertical-align: top;
    display: inline-block;
    width: 65.4676%;
    text-align: left;
    line-height: 1.5;
  }
  #contact-form aside {
    width: 30.9353%;
  }
}