* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: white;
  color: white;
  overflow-x: hidden;
}

/* navigation bar */
.navbar {
  background-color: #0e5d0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;

  /* Fixed position to stay on top */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* stay above other elements */
}


.navbar-logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Brush Script MT', cursive;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.navbar-menu {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.navbar-menu a {
  color: white;
  text-decoration: none;
  padding: 14px 10px;
  display: block;
  transition: background 0.3s;
  border-radius: 24px;
}

.navbar-menu a:hover {
  background-color: #e3e027;
  color: #111;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu a {
    width: 100%;
  }

  .navbar-toggle {
    display: block;
  }
}


/* about header */
.about-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  flex-wrap: wrap;
  background: url('../real-image/api-solutions-banner.jpg') center/cover no-repeat;
  /* background: #bb1d0e; */
  min-height: 400px;
  margin-top: 60px;
}

.about-content {
  flex: 1 1 50%;
  color: white;
  max-width: 800px;
}

.about-content h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
}

.about-content h2 span {
  color: #FFD700;
}

.about-content p {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
}

/* Hide mobile intro by default */
.mobile-intro {
  display: none;
}

/* Responsive: Show only "This is us" on small screens */
@media screen and (max-width: 768px) {
  .about-header {
    background-size: cover;
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    min-height: auto;
  }

  .about-content{
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Reduce heading size just in case it’s shown somewhere else */
  .about-content h2 {
    font-size: 16px;
  }

  /* Hide the desktop heading and paragraph */
  .desktop-heading,
  .desktop-intro {
    display: none;
  }

  /* Show only the mobile version text */
  .mobile-intro {
  display: block;
  font-size: 18px;
  margin-top: 20px;
  font-weight: 600;
  color: white;
  text-align: left;
  margin-left: 0;
  padding-left: 0;
  width: 100%;
  position: relative;
  left: -70px; /* adjust this based on the .about-header padding */

  }
}





/* **************************************** */
/*footer */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

.site-footer {
  background-color: #007a0d;
  color: white;
  padding: 30px 20px;
  font-family: sans-serif;
  text-align: center;
}

.footer-top {
  margin-bottom: 20px;
}

.service-text {
  font-size: 18px;
  margin-bottom: 10px;
}

.flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
}

.footer-middle {
  background-color: #002c0f;
  padding: 15px 20px;
  margin: 30px auto 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
}

.footer-logo {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.footer-logo span {
  color: #ffc107;
}

.social-icons a {
  margin: 0 8px;
  color: white;
  font-size: 20px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 8px;
  display: inline-block;
  width: 36px;
  height: 36px;
  text-align: center;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #007a0d;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  margin-top: 10px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

@media (max-width: 768px) {
  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .social-icons {
    margin-top: 10px;
  }
}

.floating-support-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fcdb19;
  color: #007a0d;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-support-btn:hover {
  background-color: #e5c300;
  color: #004d0b;
}


/* sidebar and content */
body {
  font-family: Arial, sans-serif;
  background-color: #f0f2f5;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  width: 90%;
  max-width: 1000px;
  margin: 20px auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  flex-wrap: wrap;
}

/* Sidebar */
.container {
  display: flex;
  width: 90%;
  max-width: 1000px;
  margin: 20px auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  flex-wrap: wrap;
}

/* Sidebar */
.sidebar {
  width: 200px;
  background-color: #0e5d0a;
  display: flex;
  flex-direction: column;
}

.tab-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 15px;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
  font-size: 16px;
}

.tab-btn:hover, .tab-btn.active {
  background-color: #097209;
}

/* Content */
.content {
  flex: 1;
  padding: 20px;
  min-width: 250px;
}

.tab-content {
  display: flex;
  flex-direction: column;
}

label {
  margin: 10px 0 5px;
  font-weight: bold;
  color: #000;
}

input, textarea {
  padding: 8px;
  border: 1px solid black;
  border-radius: 5px;
  margin-bottom: 15px;
  width: 100%;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }
  .tab-btn {
    text-align: center;
    flex: 1;
    border-bottom: 2px solid white;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
  }
  .tab-btn {
    font-size: 14px;
    padding: 12px;
  }
  textarea {
    height: 80px;
  }
}