/* Reset */
body, h1, h4, p {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* ===== HEADER ===== */
header {
  background-color: #87CEEB;   /* light blue background */
  display: flex;
  justify-content: space-between;  /* logo on left, buttons on right */
  align-items: center;             /* vertically aligned */
  padding: 20px 40px;
  height: 170px;
}

/* Logo wrapper */
.logo-box {
  display: flex;
  flex-direction: column;  /* stack logo1 above logo2 */
  align-items: flex-start; /* left aligned */
}

/* Logo main title */
#logo {
  font-size: 40px;
  font-weight: bold;
  color: red;
  padding-left: 35px;
  line-height: 1.2;
}

/* Logo subtitle */
#logo2 {
  font-size: 25px;
  font-weight: 600;
  color: #0000cc;
  margin-top: 0px;
}

/* ===== NAV BUTTONS ===== */
.button {
  display: flex;
  gap: 20px;
  margin-top: 100px;
}

.btnn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  text-decoration: underline;
  color:white;
  font-weight: bold;
}

.btnn:hover {
  color: orange;
  text-decoration: none;
}

/* Divider line below header */
#line {
  width: 100%;
  height: 1px;
  background-color: white;
}

/* ===== MAIN CONTENT ===== */
#main {
  padding: 40px;
  text-align: justify;
  text-align: center;
  margin-top: 50%;
}

#why {
  max-width: 900px;
  margin: auto;
  margin-top: 10%;
  align-items: center;
  font-size: 17px;
  line-height: 1.6;
  color: #000;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #f5f5f5;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  position: fixed;       /* stick to bottom of screen */
  bottom: 0;
  left: 0;
}


  /* Mobile screen adjustments */
@media (max-width: 1500px) {
  /* Reset some defaults */
body, h1, h4, p {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* ===== HEADER ===== */
header {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers everything horizontally */
  justify-content: center;
  padding: 20px 0;
  background-color: skyblue;
  text-align: center;
}

/* Main logo */
#logo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 40px;
  margin-right: 30px;
  color: red;   /* from your text-danger class */
  margin-bottom: 0px;
}

/* Sub logo */
#logo2 {

  margin-bottom: 10px;
  color:blue;
  font-weight: normal;
  color:blue;  /* optional: same color as logo */
  margin-bottom: 20px;
  font-size:1.4rem;
  font-weight: bold;
  margin-left: 40px;
  margin-bottom: 0%;
}

/* ===== MAIN CONTENT ===== */
#main {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
  margin-bottom: 0%;
  content: justify;
  
   line-height: 1.6;
}

/* Highlighted text */
#why span {
  color: orange;
  font-size: 25px;
  font-weight: bold;
  margin: 10% 10% 10% 10%;
  margin: 0 10px;
}

/* ===== FOOTER ===== */
.footer {
  background-color: gray;
  text-align: center;
  position: sticky;
  padding: 15px 0;
  margin-top: 40px;
}

.footer-content p {
  margin: 5px 0;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
  #logo {
    font-size: 2rem;
  }
  #logo2 {
    font-size: 1rem;
  }
  .btnn {
    padding: 8px 16px;
    font-size: 14px;
  }
.button {
  display: flex;
  flex-wrap: nowrap;       /* keep in one line */
  overflow-x: auto;        /* enable horizontal scroll */
  gap: 10px;               /* space between buttons */
  padding: 10px;
  width: 100%;
  justify-content: flex-start;
  scrollbar-width: thin;   /* Firefox thin scrollbar */
  text-decoration: underline;
}

.button::-webkit-scrollbar {
  height: 6px;             /* horizontal scrollbar height */
}
.button::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.btnn {
  flex: 0 0 auto;          /* prevent shrinking */
  background-color:skyblue;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;     /* keep text in one line */
}

.btnn:hover {
  color: orange;
  transform: scale(1.05);
}
header {
  display: flex;
  flex-direction: column;   /* stack logos and buttons vertically */
  justify-content: space-between; /* push buttons to bottom */
  align-items: center;      /* center logos horizontally */
  height: 170px;            /* adjust based on your design */
  padding: 10px 20px;
  position: relative;
  text-align: center;
}


/* Buttons container */
.button {
  display: flex;
  flex-wrap: nowrap;       /* keep in a single row */
  overflow-x: auto;        /* horizontal scroll if needed */
  gap: 10px;
  width: 100%;
  justify-content: flex-start;  /* buttons aligned from left */
  scrollbar-width: thin;
}

.button::-webkit-scrollbar {
  height: 6px;
}


/* Individual buttons */
.btnn {
  flex: 0 0 auto;
  background-color: skyblue;
  color: white;
  height: 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, color 0.2s, background-color 0.2s;
}

.btnn:hover {
  color: orange;
  transform: scale(1.05);
}


/* ===== HEADER ===== */
header {
  display: flex;
  flex-direction: column;
   /* push buttons to bottom */
  align-items: center;
  height: 180px;   /* adjust if needed */
  padding: 10px 20px;
  position: relative;
  text-align: center;
}


/* Buttons container */
.button {
  display: flex;
  flex-wrap: nowrap;       /* single line */
  overflow-x: auto;        /* horizontal scroll if needed */
  gap: 10px;
  width: 100%;
  margin-top: 10px;
  justify-content: flex-start; 
  scrollbar-width: thin;
}
.button::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* Individual buttons */
.btnn {
  flex: 0 0 auto;
  background-color: skyblue;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, color 0.2s, background-color 0.2s;
}

.btnn:hover {
  color: orange;
  transform: scale(1.05);
}

/* ===== MAIN CONTENT ===== */
#main {
  flex: 1; /* allow content to take space */
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer.footer {
  background-color: #f5f5f5;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  position: fixed;       /* stick to bottom of screen */
  bottom: 0;
  left: 0;
}

/* Footer text */
.footer-content p {
  margin: 5px 0;
  font-size: 14px;
}

}
.footer{
 position: fixed;
}


@media (max-width:1500px){
  #why{
    padding-left: 20px;
    padding-top: 40px;
    padding-right: 20px;
    font-size:small;
    font-style:;
    text-align:justify
  }
}



