body{
  font-family: Calibri;
  margin: 0px ;
  width: 100%;
  padding: 0px;
}
a{
  color: inherit;
  text-decoration: none;
}


.navbar {
  background-color: rgb(231, 226, 226);
  color: black;
  position: relative;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  position: relative;
}

.nav-logo {
  font-size: 1.6em;
  font-weight: bold;
  color: black;
}
.nav-logo  img{
    width: 90%;
    height: 70px;
}
.nav-menu {
  display: flex;
  gap: 25px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-menu a,
.nav-button a {
  text-decoration: none;
  color: black;
  font-weight: 900;
  font-size: 1.2rem;
}

.btn {
  background-color: blue !important;
  padding: 8px 15px;
  border-radius: 4px;
  color: white !important;
  transition: background 0.3s;
}

.btn:hover {
  background-color: blue;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile Dropdown */
.mobile-dropdown {
  display: none;
  flex-direction: column;
  background-color: #2a2a2a;
  padding: 10px 25px;
}

.mobile-dropdown a {
  color: white;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid #444;
}
/* HERO-SECTION */
   .hero{
  background-image:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./img/BIJI-HERO.jpg');
  background-repeat: no-repeat;    
  background-size: cover;  
  height: 500px;
  width: 100%;  
  margin-top: -30px;  
  color: white;  
   background-position: center;  
  background-attachment: fixed;
       }
       .hero h1{
        padding-top: 90px;
        padding-left: 30px;
        font-weight: 900;
       }
        .hero h2{
            
        padding-left: 30px;
        }
         .hero p{
            
        padding-left: 30px;  
         }
            .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .hero-buttons button {
      padding: 12px 24px;
      font-size: 1em;
      border: none;
      cursor: pointer;
      border-radius: 5px;
   
      transition: background 0.3s ease;
    }
.hero-buttons{
       margin-left: 30px;
}
    .discover-btn {
      background-color: #007BFF;
      color: white;
    }

    .discover-btn:hover {
      background-color: #0056b3;
    }

    .contact-btn {
      background-color: #007BFF;
      color: white;
    }

    .contact-btn:hover {
      background-color: #1e7e34;
    }

    /* invent section */
   
     .invent-section {
      padding: 60px 20px;
      text-align: center;
      max-width: 1200px;
      margin: auto;
    }

    .invent-section h2 {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: black;
    }

    .invent-section h3 {
      font-size: 1.5em;
      color: black;
      margin-bottom: 40px;
    }

    .card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .card {
      background-color: white;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 25px;
      border-radius: 10px;
      max-width: 350px;
      flex: 1 1 300px;
      text-align: left;
      transition: transform 0.2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h4 {
      color: #007BFF;
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .card p {
      color: black;
      font-size: 0.95em;
      line-height: 1.6;
    }

    .legal-note {
      margin-top: 40px;
      color: black;
      font-size: 1em;
    }

    .cta-button {
      display: inline-block;
      margin-top: 30px;
      padding: 14px 28px;
      background-color: #007BFF;
      color: white;
      font-size: 1em;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .cta-button:hover {
      background-color: #0056b3;
    }
    /* africa section */

     .africa-section {
      display: flex;
      flex-wrap: wrap;
      padding: 30px 20px;
      align-items: center;
      justify-content: center;
      max-width: 1200px;
      background-color: black;
      color: white;
      margin: auto;
     margin-bottom: 30px;
    }

    .africa-image {
      flex: 1 1 400px;
      padding: 20px;
    }

    .africa-image img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    .africa-content {
      flex: 1 1 500px;
      padding: 20px;
    }

    .africa-content h2 {
      font-size: 1.6em;
      margin-bottom: 20px;
    }

    .africa-content p {
      font-size: 1.1em;
      line-height: 1.7;
      margin-bottom: 15px;
    }

    .cta-button {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 28px;
      background-color: #007BFF;
      color: white;
      font-size: 1em;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .cta-button:hover {
      background-color: #0056b3;
    }
    /* cta section */
       .cta-banner {
      background-color: #0056b3; 
      color: white;
      padding: 60px 20px;
      text-align: center;
    }

    .cta-banner h2 {
      font-size: 2.5em;
      margin-bottom: 15px;
    }

    .cta-banner p {
      font-size: 1.2em;
      line-height: 1.6;
      max-width: 800px;
      margin: 10px auto;
    }

    .cta-buttons {
      margin-top: 30px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .cta-buttons a {
      padding: 14px 28px;
      font-size: 1em;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      color: white;
      background-color: #007BFF;
      transition: background 0.3s ease;
    }

    .cta-buttons a:hover {
      background-color: #003d80;
    }

    /* faqs */
        .faq-section {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      padding: 50px 20px;
      max-width: 1200px;
      margin: auto;
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .faq-container {
      flex: 1 1 60%;
      min-width: 300px;
    }

    .faq {
      margin-bottom: 15px;
      border-bottom: 1px solid #ddd;
    }

    .faq-question {
      font-weight: bold;
      cursor: pointer;
      padding: 15px;
      background-color: #e6f0ff;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .faq-question:hover {
      background-color: #d0e5ff;
    }

    .faq-answer {
      display: none;
      padding: 15px;
      padding-top: 5px;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .faq.active .faq-answer {
      display: block;
    }

    .faq-image {
      flex: 1 1 35%;
      min-width: 250px;
    }

    .faq-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
    }
    /* Footer */

     .footer {
      background-color: #1a1a1a;
      color: white;
      padding: 50px 20px 20px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
      gap: 30px;
    }

    .footer-column {
      flex: 1 1 250px;
      min-width: 200px;
    }

    .footer-logo {
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .footer-logo img{
        width: 50%;
        height: 70px;
    }
    .footer-description {
      font-size: 0.95em;
      line-height: 1.6;
    }

    .footer-links h4,
    .footer-contact h4 {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: #f2f2f2;
    }

    .footer-links ul,
    .footer-contact ul {
      list-style: none;
      padding: 0;
    }

    .footer-links li,
    .footer-contact li {
      margin-bottom: 10px;
      font-size: 0.95em;
    }

    .footer-links a {
      color: white;
      text-decoration: none;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-contact i {
      margin-right: 10px;
      color: #007BFF;
    }

    .footer-bottom {
      border-top: 1px solid #444;
      text-align: center;
      padding: 20px 10px 10px;
      margin-top: 30px;
      font-size: 0.9em;
      color: white;
    }

    .footer-bottom a {
      color: white;
      margin: 0 10px;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: #fff;
    }

    /* ABOUT SECTION */
    
    .about-container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }

    .about-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .about-header h4 {
      font-size: 2.1em;
      margin-bottom: 10px;
      color: #0056b3;
    }

    .about-header h3 {
      font-size: 1.4em;
      color: black;
      font-weight: normal;
    }

    .about-section {
      margin-bottom: 30px;
    }

    .about-section p {
      font-size: 1.05em;
      line-height: 1.8;
      margin-bottom: 20px;
      color: black;
    }

    .about-section h2 {
      color: #007BFF;
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .about-section ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .about-section ul li {
      margin-bottom: 10px;
      font-size: 1.05em;
    }
        .section-wrapper {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
      font-size: 2em;
      color: #0056b3;
    }

    .grid-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    .card {
      background-color: #fff;
      padding: 30px 25px;
      flex: 1 1 300px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h2 {
      color: #007BFF;
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .card p,
    .card ul {
      font-size: 1em;
      line-height: 1.6;
      color: black;
    }

    .card ul {
      padding-left: 20px;
    }

    .card ul li {
      margin-bottom: 10px;
    }
    /* SERVICES SECTION */
    
        .service-page {
      text-align: center;
      margin-bottom: 40px;
    }

    header h1 {
      font-size: 2rem;
      color: blue;
    }

    header p {
      color: black;
      font-size: 1rem;
      margin-top: 10px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .intro {
      max-width: 800px;
      margin: 0 auto 40px auto;
      text-align: center;
      font-size: 1.05rem;
      color: black;
    }

   
    .services-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service {
      background-color: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
     margin-bottom: 40px;
    }

    .service:hover {
      transform: translateY(-5px);
    }

    .service h2 {
      font-size: 1.1rem;
      color: blue;
      margin-bottom: 10px;
    }

    .service p {
      font-size: 0.95rem;
      margin-bottom: 10px;
      color: black;
    }

    .service ul {
      padding-left: 18px;
    }

    .service ul li {
      font-size: 0.9rem;
      margin-bottom: 6px;
    }

   .cta-section {
  background-color: #007BFF;
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-section .cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-button {
  background-color: white;
  color: #007BFF;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #e6e6e6;
  color: #0056b3;
}


    .why-we-invent-section {
      display: flex;
      flex-wrap: wrap;
      padding: 50px 20px;
      background-color: #fff;
      align-items: center;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .why-image {
      flex: 1 1 45%;
      min-width: 280px;
    }

    .why-image img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    .why-content {
      flex: 1 1 50%;
      min-width: 280px;
    }

    .why-content h2 {
      font-size: 2rem;
      color: #045D56;
      margin-bottom: 20px;
    }

    .why-content p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .book-button {
      display: inline-block;
      background-color: #007BFF;
      color: white;
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .book-button:hover {
      background-color: #0056b3;
    }
    /* terms and conditions */
    .container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  margin-bottom: 50px;
  margin-top: 50px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Header */
.terms {
  text-align: center;
  margin-bottom: 30px;
}

.terms h1 {
  color: black;
  font-size: 2.2rem;
}

.subtitle {
  color: black;
  font-size: 1.8rem;
  margin-top: 10px;
}

/* Section Styling */
section {
  margin-bottom: 25px;
}

section h2 {
  color: blacl;
  font-size: 1.4rem;
  margin-bottom: 10px;
  border-bottom: 2px solid black;
  padding-bottom: 5px;
}

p {
  margin-bottom: 10px;
  font-size: 1rem;
}

ul {
  margin-left: 20px;
}

li {
  margin-bottom: 8px;
}
/* Policy | Privacy */
.privacy {
  text-align: center;
  margin-bottom: 30px;
}

.privacy h1 {
  color: black;
  font-size: 2.4rem;
}



