@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&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&family=Protest+Revolution&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", serif;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

/* Header and Navbar */
header {
  background: linear-gradient(to right rgb(255, 0, 0),black);
  padding: 25px 35px;
  top: 0;
  z-index: 1000;
}
#title{
  font-size: 35px;
  font-weight: bold;
}
.cta{
  display: flex;
  flex-direction: column;
  gap: 20px;

}
#services{
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  h2{
    font-size: 30px;
  }
  ul li{
    font-size: 20px;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

nav .logo h3 {
  color: #ff8a00;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}

.tag {
  list-style-type: none;
  display: flex;
  gap: 20px;
  margin-top: 5px;
}

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

.tag a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-weight: bold;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.tag a:hover {
  color: #ff8a00;
}

/* Hero Section */
.hero {
  background-image: url('bck.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: rgb(5, 5, 5);
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.hero-content {
  text-align: left;
  padding-left: 90px;
  padding-top: 250px;
}

.hero h1 {
  font-size: 3.5rem;
  color: #ff8a00;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.hero h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #3a3939;
}

.hero p {
  font-size: 1.5rem;
  margin-top: 20px;
  color: #5a5757;
}

/* "Who We Are" Section */
#who-we-are {
  background-color: #fdf1e0;  /* Creamy white background */
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#who-we-are .section-header {
  margin-bottom: 40px;
}

#who-we-are h2 {
  font-size: 48px;
  color: #ff8a00;  /* Bold Tomato Color */
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

#who-we-are p {
  color: #555;
  font-size: 18px;
  margin-top: 10px;
}

/* Section Content Styling */
#who-we-are .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

/* Intro Text Styling */
#who-we-are .intro-text {
  max-width: 800px;
  font-size: 20px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.7;
  text-align: left;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.8);  /* Semi-transparent background for contrast */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#who-we-are .intro-text strong {
  color: #ff8a00; /* Highlighted words in Tomato */
}

/* Values Section Styling */
#who-we-are .values {
  max-width: 800px;
  text-align: left;
  font-size: 20px;
  color: #333;
}

#who-we-are .values h3 {
  font-size: 32px;
  color: #ff8a00;  /* Tomato color for section heading */
  margin-bottom: 20px;
  font-weight: bold;
}

#who-we-are .values ul {
  list-style-type: none;
  padding-left: 0;
}

#who-we-are .values li {
  margin-bottom: 15px;
  position: relative;
  font-size: 18px;
  padding-left: 25px;
  line-height: 1.6;
}

#who-we-are .values li::before {
  content: '✔';  /* Checkmark icon before each item */
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8a00;  /* Tomato color for icons */
  font-size: 24px;
}

/* Call-to-Action (CTA) Styling */
#who-we-are .cta {
  margin-top: 30px;
}

#who-we-are .cta a {
  color: #fff;
  background-color: #ff8a00; /* Tomato background for CTA */
  text-decoration: none;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 20px;
  display: inline-block;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#who-we-are .cta a:hover {
  background-color: #ff4500; /* Darker Tomato on hover */
  transform: translateY(-4px);
}

#who-we-are .cta a:active {
  transform: translateY(0);
}

/* Footer Styling */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

footer p {
  font-size: 14px;
  color: #ccc;
}

footer .social-links a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  margin: 0 10px;
}

footer .social-links a:hover {
  color: #FF6347; /* Tomato color for hover effect */
}



/* Responsive Design */
@media (max-width: 1024px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .tag{
    display: none;
  }

  .hero-content {
    padding-left: 20px;
    padding-top: 150px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  .tag{
    display: none;
  }

  #title {
    font-size: 28px;
    margin-top:10px;
  }

  nav .tag {
    flex-wrap: wrap;
    gap: 10px;
  }

  nav .tag a {
    font-size: 18px;
    padding: 6px 10px;
  }

  .hero-content {
    padding-left: 15px;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  #who-we-are h2 {
    font-size: 36px;
  }

  #who-we-are .intro-text,
  #who-we-are .values {
    font-size: 18px;
    padding: 15px;
  }

  #who-we-are .values h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 15px;
  }
 .tag{
    display: none;
  }
  #title {
    font-size: 24px;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  nav .tag {
    gap: 5px;
    text-align: center;
  }

  nav .tag a {
    font-size: 16px;
    padding: 5px 8px;
  }

  .hero {
    height: auto;
    padding-bottom: 20px;
  }

  .hero-content {
    padding-left: 10px;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  #who-we-are h2 {
    font-size: 28px;
  }

  #who-we-are .intro-text,
  #who-we-are .values {
    font-size: 16px;
    padding: 10px;
  }

  #who-we-are .values h3 {
    font-size: 24px;
  }

  footer {
    padding: 15px 10px;
  }

  footer p {
    font-size: 12px;
  }

  footer .social-links a {
    font-size: 16px;
  }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  margin-top:10 ;
}
.nav{
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
  margin-right: 10px;

}
.hamburger .line {
  width: 35px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;

}
.hamburger.active span:nth-child(1){
  position: absolute;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2){
  opacity: 0;
}
.hamburger.active span:nth-child(3){
  position: absolute;
  transform: rotate(-45deg);
}

.off-screen-menu {
  background-color: rgba(200, 231, 231, 0.707); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
  height: 100vh;
  width: 100%;
  max-width: 450px;
  position: fixed;
  top: 0;
  gap: 10px;
  right: -450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2rem;
  transition: 0.3s ease;
}

.off-screen-menu.active {
  right: 0;
}

.off-screen-menu a{
  text-decoration: none;
  list-style: none;
  color: black;
  font-weight: 500;
}
.off-screen-menu ul li{
  list-style: none;
  gap: 25px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .tag {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 70px; /* Adjust based on header height */
    right: 20px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    z-index: 1000;
  }

  .tag.active {
    display: flex;
  }

  .tag a {
    font-size: 18px;
    color: #333;
    text-align: left;
    padding: 8px 12px;
  }
}



