/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    background: white;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar ul li a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 20px;
    
   
    
}

.navbar ul li a:hover {
    color: #2e8b57;
}

.cta-button {
    background: #2e8b57;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #256a45;
}

/* Hero Section with Background Slideshow */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    animation: slideshow 60s infinite linear;
    z-index: -1;
    opacity: 0.85;
    height: 100%;
    width: 100%;
}

@keyframes slideshow {
    0% { background-image: url('bg2.jpg'); }
    33% { background-image: url('bg3.jpg'); }
    66% { background-image: url('bg4.jpg'); }
    100% { background-image: url('bg1.avif'); }
}

.hero-content {
    z-index: 1;
   
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Section General */
.section {
    padding: 100px 20px;
    text-align: center;
}

.section:nth-child(even) {
    background: #f9f9f9;
}

.section h2 {
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

/* Footer */
.footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px;
    z-index: 100;
    position: relative;
}

/* Chatbot */
.chatbot-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2e8b57;
    color: white;
    padding: 15px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1001;
}

.chatbot-container {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1001;
    flex-direction: column;
    overflow: hidden;
    max-height: 400px;
    display: flex;
    flex-direction: column;
}

.chatbot-header {
    background: #2e8b57;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f9f9f9;
}

.bot-message, .user-message {
    margin: 5px 0;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 80%;
    word-wrap: break-word;
}

.bot-message {
    background: #e0e0e0;
    align-self: flex-start;
}

.user-message {
    background: #2e8b57;
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

#chat-input {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
}


.footer {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 40px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-logo {
    width: 40px;
    margin-bottom: 10px;
}

.footer-heading {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 6px 0;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a img {
    background: white;
    border-radius: 4px;
    padding: 5px;
    width: 30px;
    height: 30px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom hr {
    border: 0.5px solid #444;
    margin-bottom: 10px;
}

.footer-bottom p {
    color: #ccc;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
.team-section {
    background-color: #0b151d;
    padding: 60px 20px;
    text-align: center;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.team-member {
    max-width: 300px;
    color: #ffffff;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #fff;
}

.team-member .quote {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 10px;
}

.team-member .name {
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}
.projects-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.projects-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.projects-section .subheading {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.projects-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.project-card {
  width: 320px;
  text-align: center;
}

.project-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

}

.project-card h3 {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
/* ---------- RESPONSIVE BREAKPOINTS ---------- */

/* Tablets (768px and below)
    
@media (max-width: 768px) {
    
    .footer-socials {
        justify-content: center;
    }
}
*/
    
.menu-toggle {
  display: none; 
  font-size: 28px;
  cursor: pointer;
  color: #333; 
}

/* Show menu icon on tablets and phones */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar ul {
    display: none; 
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px; 
    right: 20px;
    width: 200px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li {
    margin: 10px 0;
  }
}
@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
    }
    .navbar ul.active {
        display: flex;
    }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
