 body {
      margin: 0;
      font-family: sans-serif, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
      background-color: #f4f4f4;
      color: #000;
    }

   /* Header */
.header {
  /* background-color: #2e899f; */
  background-color: #901f1f; 
  color: #fff;
  padding: 25px 10px;
  display: flex;
  justify-content: center;
}

.header-container {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  text-align: center;
}

.header-logo img {
  height: 80px;
  width: auto;
    border-radius: 38px; /* Slightly rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  image-resolution: from-image; /* Ensure high-res images look sharp */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

.header-text h1 {
  margin: 0;
  font-size: 2.5em;
}

.header-text p {
  margin: 5px 0 0;
  font-size: 1.1em;
}



/* Navbar */
.navbar {
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1000;
}

.menu-wrapper {
  position: relative;
}

.nav-links {
  display: flex;
}

.navbar a {
  padding: 14px 15px;
  color: white;
  text-decoration: none;
}

.navbar a:hover {
  background-color: #1fbdec;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Search styling */
.search-container {
  position: relative;
}

#searchInput {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  outline: none;
}

#suggestions {
  position: absolute;
  top: 35px;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  width: 200px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 10;
}

#suggestions div {
  padding: 8px;
  cursor: pointer;
}

#suggestions div:hover {
  background: #f1f1f1;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #333;
    width: 130px;
    flex-direction: column;
    padding: 8px 0;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  }

  .nav-links a {
    display: block;
    padding: 10px 14px;
    text-align: left;
  }

  /* show on hover/focus */
  .menu-wrapper:hover .nav-links,
  .menu-wrapper:focus-within .nav-links {
    display: flex;
  }
}

/* navbar code end */

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.notice {
    background-color: #fff9c4;
    border-left: 5px solid #fbc02d;
    border-right: 5px solid #fbc02d;
    border-top: 5px solid #fbc02d;
    border-bottom: 5px solid #fbc02d;
    padding: 15px 20px;
    margin: 20px 0;
    font-size: 16px;
    border-radius: 4px;
}

.notice h2 {
    margin-top: 0;
    font-size: 20px;
    color: #e65100;
}


/* new code about us */

.login-btn {
  background: #2d8cf0;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 24px;
  font-weight: bold;
  cursor: pointer;
}

/* Main content styles */
.main-content {
  /*display: flex;*/
  justify-content: center;
  align-items: center;
  /*min-height: 70vh;*/
}

.about-section {
  display: flex;
  gap: 60px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
  padding: 40px 60px;
  margin: 20px 0;
}

.about-text h2 {
  font-size: 2.2em;
  margin: 0 0 12px 0;
  color: #2d8cf0;
}

.about-text h2 span {
  font-size: 0.6em;
  color: #222;
}

.about-text p {
  font-size: 1.1em;
  margin-bottom: 24px;
}

.get-started {
  background: #23bb27;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 32px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
}

/* Team illustration styles */
.team-row {
  display: flex;
  gap: 24px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.5em;
  position: relative;
}

.team-member span {
  font-size: 1.2em;
  font-weight: bold;
  color: #2d8cf0;
  margin-top: 8px;
}

/* ...existing code... */
.contact-info {
  margin-left: 16px;
  font-size: 1.1em;
  vertical-align: middle;
}

.whatsapp-link {
  color: #fafafa;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp-link i {
  margin-right: 6px;
  font-size: 1.2em;
  vertical-align: middle;
}
/* ...existing code... */

/* Footer styles */
/* Footer styles: top and bottom sections */

/* ===== FOOTER STYLES ===== */
.footer-top {
    background-color: #222;
    color: white;
    padding: 40px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    /*gap: 30px;*/
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-section h3 {
    color: #1fbdec;
    margin-bottom: 20px;
    font-size: 1.2em;
    position: relative;
    padding-bottom: 10px;
    text-decoration: none;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #901f1f;
}

.footer-section p {
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: #1fbdec;
    text-decoration: none;
}

.footer-section ul li a i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #1fbdec;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.85em;
    border-top: 1px solid #333;
}

.footer-bottom p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.footer-bottom a {
    color: #1fbdec;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 100%;
        margin: 0;
    }
    
    .footer-section h3 {
        font-size: 1.1em;
    }
}
