* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Poppins';
}
.body{
  padding-top: 80px;
  font-family: 'Poppins';
  line-height:1.7;
}
.nav-hero{
  position:fixed;
  top:0;
  left:0;
  background-color:#E6F0E6;
  z-index:1000;
  width:100%;
  padding:1rem 2rem;

}
.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-links{
  display:flex;
  gap:30px; 
}
.nav-links a{
  text-decoration:none;
  font-weight:300;
  font-size:1.2rem;
  color:black;
  font-weight:600px;
  cursor:pointer;
   transition:all 0.3s ease-in-out;
}
.nav-links a:hover{
color:#667eea;
transform:translateY(-3px);
}

.logo{
  display:flex;
  align-items:center;
  gap:0.5rem;
  font-size:1.25rem;
  text-decoration:none;

}
.logo h1{
  font-family:'Poppins';
  font-weight:600;
  margin:0;
}
.logo img{
  height:60px;

}
.mobile-menu-toggle {
  display: none;  /* Hamburger is hidden */
}


/*Mobile styles for screens smaller than 768px */
@media (max-width:768px){
  .nav-hero{
    padding:0.8rem 1 rem;
  }
  .logo{
    font-size:1 rem;
  }
   .logo h1 {
    font-size: 1rem;
  }
  
  .logo img {
    height: 45px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .nav-links a {
    font-size: 1rem;
  }
}
@media(max-width: 500px){
  .nav-hero{
    padding:0.5rem 1rem;
  }
  .nav-container{
    position:relative;
  }
  .logo {
    font-size:0.9rem;
  }
  .logo h1{
    font-size:0.8rem;
    display:none;
  }
  .logo img{
    height:35px;
  }
.mobile-menu-toggle{
  display:block;
}
.nav-links{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background-color:#E6F0E6;
  flex-direction:column;
  gap:0;
  padding:1rem;
  box-shadow:0 4px 6px rgba(0,0,0,0.1);
  border-top:1px solid #d1e7dd;
}

.nav-links.active{
  display:flex;
}
.nav-links a {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #d1e7dd;
    transition: all 0.2s ease;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .nav-links a:hover {
    background-color: rgba(102, 126, 234, 0.1);
    transform: none;
    padding-left: 10px;
  }
}

@media (max-width: 320px) {
  .nav-hero {
    padding: 0.4rem 0.8rem;
  }
  
  .logo img {
    height: 30px;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 0.7rem 0;
  }
}







.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
   background-image: url('assets/Backgoundimage.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(230, 240, 230, 0.85); 
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width:800px;
  margin:0 auto;
}
.title{
  color:#2C3E50;
  font-weight:800;
  font-size: clamp(2.5rem,8vw,4rem);
  margin-bottom:1rem;
  line-height:1.1;

}
.tagline{
  color:#2C3E50;
font-size:clamp(1.2rem,4vw,1.75rem);
margin-bottom:2rem;
line-height:1.3;
font-weight:400;
}
            
.Cta-button{
  
  border-radius:30px;
  background-color:#696F98;
  color:white;
  border:none;
  width: 100%;
  max-width: 320px;
  padding: 16px 40px;
  font-size: 1.2rem;
  border:none;
  cursor:pointer;
  transition:all 0.3s ease-in-out;
  font-weight:600;
}
.Cta-button:hover{
  background-color:#5a6dda;
  transform:translateY(-4px);
}

@media(maxwidth:500px){
  .hero{
    min-height:60vh;
    padding:2rem 1 rem;
    background-attachment:scroll;
  }

  .hero-content{
    max-width:100%;
  }
  .title{
    font-size:clamp(2rem,10vw,2.5rem);
    margin-bottom:0.5rem;
    word-wrap:break-word;
  }
  .tagline{
    font-size:clamp(1rem,5vw,1.3rem);
    margin-bottom:1.5rem;
    padding:0 0.5rem;
  }
   .Cta-button {
    width: 90%;
    max-width: 250px;
    font-size: 1rem;
    padding: 12px 30px;
    margin: 0 auto;
  }
  
  .Cta-button:hover {
    transform: translateY(-2px); /* Reduce hover effect on mobile */
  }

}




.audience-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

/* Toggle buttons */
.toggle-buttons {
  margin-bottom: 2rem;
}
.toggle-buttons button {
  padding: 10px 25px;
  margin: 0 10px;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 30px;
  font-weight: bold;
}
.toggle-buttons .active {
  background: #3a7d44;
  color: #fff;
}

/* Content blocks */
.audience-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeOut 0.4s forwards;
}
.audience-content.active {
  display: block;
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}


.about{
  background-color:#D4E6D4;
  padding:60px 20px;
  min-height:100vh;
}
.about-container{
  display:grid;
grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items:center;
  max-width:1200px;
  margin:0 auto;

}
.about-title{
font-size:2.5rem;
font-weight:600;
text-align:center;
margin-bottom:40px;
grid-column:1/-1;
}

.content-left{
  padding-right:20px;
  padding-top:4px;

}
.section-card{
  margin-bottom:20px;
}

.section-title{
  font-size:1.5rem;
  font-weight:600;
  margin-bottom:15px;
  padding-left:10px;
  line-height:1.4;
}
.section-subtitle{
  font-size:1rem;
  line-height:1.6;
  font-style:italic;
  
}
.image-container{
  display:flex;
  justify-content:center;
  align-items:center;
}
.about-image{
  width:100%;
  max-width:400px;
  height:auto;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width:768px){
  .about{
    padding:40px 15px;
  }

 .about-container{
  grid-template-columns:ifr;
  gap:30px;
  text-align:center;
 }
 .about-title{
   font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.2;
 }
 .content-left {
    padding-right: 0;
    padding-top: 0;
    order: 2; /* Move content below image on mobile */
  }
  
  .image-container {
    order: 1; /* Move image above content on mobile */
    margin-bottom: 20px;
  }
  
  .section-card {
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    padding-left: 0;
    text-align: center;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    max-width: 100%;
  }
  
  .about-image {
    max-width: 280px;
    width: 90%;
  }


}




.carousel-wrapper{
  position:relative;
  display:flex;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
  overflow:hidden;
}

.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
   background-color: #696F98;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}
.carousel-btn:hover{
  background-color:#5a6dda;
  box-shadow:0 6px 16px rgba(0,0,0,0.2);
}
.carousel-btn.left{
  left:-25px;
  }
.carousel-btn.right{
  right:-25px;
}
.carousel-wrapper{
  position:relative;
  display:flex;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
  overflow:visible;
  padding:0 60px;
}


@media (max-width: 480px) {
  .carousel-wrapper {
    padding: 0 30px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .carousel-btn.left {
    left: -15px;
  }
  
  .carousel-btn.right {
    right: -15px;
  }
}
.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  transform: translateY(-50%);
  background-color: #696F98;
}



.features-section {
  background-color: #f5f5f5;
  padding: 80px 20px;
  position:relative;
}

.features-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #2C3E50;
  font-family: 'Poppins';
}

.features-container {
  display:flex;
  gap: 30px;
  overflow-x: hidden; /*Hide scrollbar but allow scrolling */
  scroll-behavior:smooth;
  padding:10px 0;
  scrollbar-width:none; /*  Firefox*/
  width:100%;
}
.features-container::-webkit-scrollbar{
  display:none;
}

.feature-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  text-align:center;
  width:320px;
  min-width:320px;
  overflow:hidden;
  flex-direction: column;
  padding-bottom:30px;
  flex-shrink:0;
 
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-emoji {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-align: left;
}

.feature-image {
  height: 150px; 
  background: linear-gradient(to bottom, #b9e5b9, #d4e6d4);
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  
}

.feature-image.two{
  background: linear-gradient(to bottom, #FFF9C4, #FFE082);
}
.feature-image.three{
 background: linear-gradient(to bottom, #F8BBD0, #F48FB1);

}

.feature-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom:4px;
  color: #2C3E50;
}

.feature-subheading {
  font-size: 14px;
  font-weight: 500;
  color: #3A7D44;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding:0 20px;
}

.feature-details{
  border-left: 6px solid #4FACFE;
  border-radius:8px;
  margin-top:0px 20px;
  padding-left:16px;
  text-align:left;
}
.feature-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}

.feature-highlight {
  font-size: 14px;
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 8px;
}

.feature-description {
  font-size: 0.7rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .features-section {
    padding: 40px 10px;
  }
  
  .features-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  .carousel-wrapper {
    padding: 0 30px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .carousel-btn.left {
    left: -12px;
  }
  
  .carousel-btn.right {
    right: -12px;
  }
  
  .features-container {
    gap: 20px;
  }
  
  .feature-card {
    width: 260px;
    min-width: 260px;
    border-radius: 12px;
    padding-bottom: 20px;
  }
  
  .feature-image {
    height: 100px;
  }
  
  .feature-emoji {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .feature-heading {
    font-size: 16px;
    padding: 0 12px;
    margin-bottom: 3px;
  }
  
  .feature-subheading {
    font-size: 12px;
    padding: 0 12px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }
  
  .feature-details {
    margin: 0 12px;
    padding-left: 10px;
    border-left-width: 4px;
  }
  
  .feature-details h4 {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .feature-highlight {
    font-size: 12px;
    margin-bottom: 6px;
  }
  
  .feature-description {
    font-size: 10px;
    line-height: 1.3;
  }
}


.testimonial-section{
  padding:80px 20px;
  text-align:center;
  background-color:#F9FAFB;
  text-align:center;

}

.container-testimonial{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  margin-top:20px;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;

}
.cardone{
  display:flex;
  flex-direction:column;
  max-width:480px;
  background:#fff;
  padding:30px 24px;
  border-radius:24px;
  background-color:#E6F0E6;
  border-top: 8px solid #667EEA;
  margin:20px;
  text-align:left;
  gap:16px;

}


.testimonial-stars{
font-size:1.1rem;
color:#F8A401;
margin-bottom:8px;

}
.test-subtitle{
  font-weight:400;
  font-style:italic;
  margin-bottom:8px;
  line-height:1.6;
}

.pic_name{
  display:flex;
  align-items:center;
  margin-top:10px;
  gap:12px;
}
.pic_name img{
  border-radius:8px;
  object-fit:cover;
  flex-shrink:0;
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 40px 10px;
  }
  
  .testimonial-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  
  .container-testimonial {
    gap: 20px;
  }
  
  .cardone {
    padding: 20px 16px;
    border-radius: 16px;
    gap: 14px;
    border-top-width: 6px;
  }
  
  .testimonial-stars {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .test-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  
  .pic_name {
    gap: 8px;
    margin-top: 6px;
  }
  
  .pic_name img {
    width: 40px;
    height: 40px;
  }
  
  .first_name {
    font-size: 0.9rem;
  }
  
  .school {
    font-size: 0.75rem;
    line-height: 1.3;
  }
}


.slogans-section{
  padding:60px 20px;
  background:linear-gradient(to bottom,#E6F0E6,#EFF5F0,#F8F9FA);
    text-align:center;
    box-shadow:0px 8px 4px rgba(0,0,0,0.36);


}
.s_title{
  margin-bottom:30px;
  font-weight:600;
  font-size:2rem;
  font-style:italic;

}
.container-slogan{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:20px;
  max-width:1200px;
  margin:0 auto;
  
}
.s-btn{
  background-color:#696F98;
  border-color:#2C3E50;
  color:white;
  max-width:600px;
  border-radius:10px;
  font-size:1rem;
  font-weight:400;
  padding:14px 36px;
  cursor:pointer;
  transition:background 0.3s ease,transform 0.2s ease;
}
.s-btn:hover{
  background-color:#5a6dda;
  transform:translateY(-2px);
}

.team-section {
  padding: 60px 20px;
  background-color: #F5FAF5;
  text-align: center;
    background-color:#F5FAF5;

}

.t_title {
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 40px;
  color: #2c3e50;
}

.team_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 4px rgba(0, 0, 0, 0.36);
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display:flex;
  flex-direction:column;
  align-items:center;
  border: 1px solid #219297;


}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 8px rgba(0, 0, 0, 0.4);
}

.card img {
  width: 80px;
  height: 90px;
  object-fit: cover;
  border-radius:80px;

}

.name_role {
  margin-top: 15px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  color: #34495e;
  text-align:left;

}

.t_text {
  font-size: 0.95rem;
  margin-top: 10px;
  font-style: italic;
  color: #666;
}



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

    .header {
      text-align: center;
      margin-bottom: 30px;
    }

    .header h1 {
      font-size: 2rem;
      margin-bottom: 10px;
      font-weight: 700;
      font-style: italic;
    }

    .header p {
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 20px;
    }

    .user-instructions {
      background-color: #E6F0E6;
      padding: 15px 20px;
      border-radius: 12px;
      text-align: center;
      margin-bottom: 30px;
      border-left: 4px solid #3A7D44;
    }

    .user-instructions p {
      font-size: 1rem;
      color: #2C3E50;
      font-weight: 500;
    }

    .main-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: start;
    }

    .ai-section {
      background-color: white;
      border-radius: 12px;
      border: 1px solid #2C3E50;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 400px;
    }

    .chat-header {
      background-color: #696F98;
      color: white;
      padding: 15px 20px;
      text-align: center;
      font-weight: 600;
      font-size: 1.1rem;
    }

    .chat-area {
      flex: 1;
      padding: 20px;
      overflow-y: auto;
      background-color: #f8f9fa;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .message-container {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .message-container.user {
      flex-direction: row-reverse;
    }

    .avatar {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .avatar.ai {
      background-color: #696F98;
      color: white;
    }

    .avatar.user {
      background-color: #3A7D44;
      color: white;
    }

    .message {
      max-width: 80%;
      padding: 12px 16px;
      border-radius: 18px;
      font-size: 14px;
      line-height: 1.4;
    }

    .message.ai {
      background-color: white;
      border: 1px solid #e9ecef;
      color: #2c3e50;
    }

    .message.user {
      background-color: #696F98;
      color: white;
    }

    .typing-indicator {
      display: none;
      align-items: center;
      gap: 12px;
    }

    .typing-dots {
      display: flex;
      gap: 4px;
    }

    .typing-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #696F98;
      animation: typing 1.4s infinite ease-in-out;
    }

    .typing-dots span:nth-child(1) { animation-delay: -0.32s; }
    .typing-dots span:nth-child(2) { animation-delay: -0.16s; }

    @keyframes typing {
      0%, 80%, 100% { transform: scale(0); }
      40% { transform: scale(1); }
    }

    .input-section {
      padding: 20px;
      background-color: white;
      border-top: 1px solid #e9ecef;
    }

    .input-container {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .message-input {
      flex: 1;
      padding: 12px 16px;
      border: 2px solid #e9ecef;
      border-radius: 25px;
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s;
    }

    .message-input:focus {
      border-color: #696F98;
    }

    .send-button {
      background-color: #696F98;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 25px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .send-button:hover {
      background-color: #5a6dda;
    }

    .send-button:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .sample-questions {
      background-color: white;
      border-radius: 12px;
      border: 1px solid #2C3E50;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 25px;
    }

    .sample-questions h3 {
      font-size: 1.3rem;
      color: #2C3E50;
      margin-bottom: 20px;
      text-align: center;
      font-weight: 600;
    }

    .question-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .question-btn {
      background-color: #E6F0E6;
      border: 1px solid #3A7D44;
      color: #2C3E50;
      padding: 12px 16px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      text-align: left;
      transition: all 0.3s ease;
    }

    .question-btn:hover {
      background-color: #3A7D44;
      color: white;
      transform: translateY(-2px);
    }

    .error-message {
      background-color: #f8d7da;
      color: #721c24;
      padding: 10px 15px;
      border-radius: 8px;
      margin: 10px 0;
      font-size: 14px;
      text-align: center;
    }

    .auth-status {
      background-color: #d4edda;
      color: #155724;
      padding: 10px 15px;
      border-radius: 8px;
      margin: 10px 0;
      font-size: 14px;
      text-align: center;
    }

    .auth-status.error {
      background-color: #f8d7da;
      color: #721c24;
    }

    @media (max-width: 768px) {
      .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .header h1 {
        font-size: 2rem;
      }
      
      .ai-section {
        height: 450px;
      }
    }
      
    .contact-section{
      padding:60px 20px;
      display:flex;
      flex-direction:column;
      align-items:center;
      text-align:center;
      justify-content:center;
      background-color:#D4E6D4;
    }

    .contact-container{
    display:flex;
    background-color:white;
    flex-direction:column;
    gap:20px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    width:100%;
    max-width:600px;
    padding:30px;
    border:1px solid #2C3E50;
    

    }
    .required-label::after {
    content: " *";
     color: red;
}
.name_input{
  display:flex;
  flex-direction:column;
  text-align:left;
}
.input_name,
.input_email,
.input_message {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  margin-top: 6px;
  resize: vertical;
}
.input_message {
  min-height: 100px;
}
.btn-contact {
  background-color: #696F98;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-contact:hover {
  background-color: #2980b9;
}
.contact-text1{
  font-weight :600;
  font-size:32px;
  font-style:italic;
  margin-bottom:6px;
  margin-top:10px;
}.faq-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: #2d3e50;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background-color: #f0f4f8;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  text-align: left;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  transition: transform 0.3s ease;
}

.faq-question.active .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: white;
  padding: 0 16px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 12px 0;
  margin: 0;
}

/* Smooth scroll for anchor navigation */
html {
  scroll-behavior: smooth;
}

.footer-section {
  background-color: #aac3a2;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 1s ease-in;
  position: relative;
}

.footer-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0d2e13;
  margin-bottom: 30px;
}

.visitor-counter {
  display: inline-flex;
  align-items: center;
  background-color: #e7eee5;
  padding: 15px 30px;
  border-radius: 40px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  font-style: italic;
  color: #333;
}

.visitor-icon {
  font-size: 1.5rem;
  margin-right: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.footer-link {
  color: #0a0a0a;
  font-weight: 500;
  text-decoration: underline;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link i {
  font-size: 1.2rem;
}

.back-to-top {
  display: none; /* hidden by default */
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: #3a7d44;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
  background: #2c5e33;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .visitor-counter {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .back-to-top {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}



.about-title,
.features-title,
.testimonial-section h2,
.s_title,
.t_title,
.ai-title,
.contact-text1,
.faq-title,
.footer-title {
  font-size: 2rem !important; /* 32px equivalent */
  font-weight: 700 !important; /* Bold */
  font-style: italic !important;
  text-align: center !important;
  margin-bottom: 2rem !important;
  color: #000000 !important;
  font-family: 'Poppins', !important;
}
