/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 40px; /* increase padding for thickness */
  background: rgb(5, 91, 203);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}


.logo {
  font-size: 28px;
  font-family: 'Bubblegum Sans', sans-serif;
  color: white;
}

/* Nav */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #navMenu {
    display: none;
    position: absolute;
    top: 70px;
    right: 30px;
    background: #00BCD4;
    padding: 20px;
    border-radius: 10px;
    flex-direction: column;
    z-index: 1000;
  }

  #navMenu.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, rgba(44, 216, 235, 0.8), rgba(5, 91, 203, 0.9)),
              url('./R.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 100px 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


.hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Bubblegum Sans', sans-serif;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Main Layout */
main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Sections */
section {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

section h2 {
  font-size: 28px;
  color: #055bcb;
  margin-bottom: 15px;
  font-family: 'Bubblegum Sans', sans-serif;
}

section p {
  font-size: 17px;
  color: #333;
  margin-bottom: 15px;
}

ul {
  padding-left: 20px;
  margin-top: 10px;
}

ul li {
  margin-bottom: 10px;
}

/* Call to Action */
.cta {
    text-align: center;
}
.cta a {
  display: inline-block;
  padding: 12px 6px;
  color: #2cd8eb;
  font-weight: 600;
  border-radius: 2px;
  text-decoration: none;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.cta a:hover {
  color: #028e9b;
}

/* Footer */
footer {
  background-color: #022f67;
  color: #eee;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

footer p {
  font-size: 14px;
  margin: 0;
}

footer .footer-links {
  display: flex;
  gap: 20px;
}

footer .footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

footer .footer-links a:hover {
  color: white;
}


body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f9ff;
  color: #222;
}

h1, h2 {
  font-family: 'Merriweather', serif;
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 28px;
  color: #055bcb;
}

.side-deco {
  position: fixed;
  top: 100px;
  width: 120px;
  opacity: 0.1;
  z-index: -1;
}

.deco-left {
  left: 0;
}

.deco-right {
  right: 0;
  transform: scaleX(-1);
}

.info-header {
   background: linear-gradient(to right, rgba(44, 216, 235, 0.8), rgba(5, 91, 203, 0.9)),
              url('./R.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 100px 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.info-header p {
  font-size: 22px;
}

.lds-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px;
}

.lds-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: left;
}

.lds-card h2 {
  font-size: 20px;
  color: #055BCB;
  margin-bottom: 10px;
}

.lds-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}
.lds-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px #6dd5fa;
}


.lds-card {
  text-decoration: none;
  color: inherit;
  display: block;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.type-hero {
  text-align: center;
  background: linear-gradient(to right, #2980b9, #6dd5fa);
  color: white;
  padding: 40px 20px;
  border-radius: 20px;
  margin: 40px auto 20px;
  max-width: 900px;
}

.type-page {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.type-content {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.type-content h2 {
  margin-top: 30px;
  color: #0644a6;
}

.type-content ul {
  margin-left: 20px;
  padding-left: 20px;
  list-style: disc;
}

.back-link {
  margin-top: 30px;
}

.back-link a {
  color: #00bcd4;
  text-decoration: none;
  font-weight: bold;
}

/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header.sticky-header {
  position: sticky;
  top: 0;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #036;
}

header nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

header nav a {
  text-decoration: none;
  color: #036;
  font-weight: 500;
  transition: color 0.3s ease;
}
header nav a:hover {
  color: #ffffff;
}

/* Type Overview Page */
.main-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}
.main-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #024;
}
.main-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.type-box {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.type-box:hover {
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.type-box a {
  text-decoration: none;
  color: #024;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Individual Type Pages */
.type-hero {
  background: url('./background.jpg') center/cover no-repeat;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  background-blend-mode: overlay;
  background-color: rgba(0, 42, 89, 0.5);
}
.type-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.type-hero p {
  font-size: 1.2rem;
}

.type-content {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
}
.type-content h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  color: #036;
}
.type-content p,
.type-content ul {
  font-size: 1.05rem;
  color: #444;
}
.type-content ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}
.type-content ul li {
  margin-bottom: 0.5rem;
}

.back-link {
  margin-top: 3rem;
}
.back-link a {
  color: #0096c7;
  text-decoration: underline;
  font-weight: 500;
}

/* Footer */
footer {
  background-color: #002c4e;
  color: white;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}
footer .footer-links {
  margin-top: 1rem;
}
footer .footer-links a {
  color: #aee;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
}
footer .footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .main-section h1 {
    font-size: 2rem;
  }
  .type-hero h1 {
    font-size: 2.2rem;
  }
  .box-grid {
    grid-template-columns: 1fr;
  }
}

.about-hero {
  background: linear-gradient(to right, #005f9e, #00a4d6);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Bubblegum Sans', sans-serif;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: 'Bubblegum Sans', sans-serif;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Bubblegum Sans', sans-serif;
}

.about-content {
  padding: 60px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.info-box {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 9px #055BCB;
}

.info-box h2 {
  font-size: 1.4rem;
  color: #003366;
  margin-bottom: 10px;
}

.info-box p {
  line-height: 1.6;
  color: #444;
}

.info-header h1{
 font-family: 'Bubblegum Sans', sans-serif;
}

.download-btn {
  display: inline-block;
  background: #0077b6;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.download-btn:hover {
  background: #005f9e;
}

.timeline-page {
  padding: 60px 20px;
  background-color: #f8f9fa;
  font-family: 'Bubblegum Sans', sans-serif;
}

.timeline-page h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #05438d;
}

.timeline {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  width: 90%;
  max-width: 800px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #05438d;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 30px 0;
  width: 100%;
}

.timeline-date {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  background: #05438d;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content {
  float: left;
  clear: both;
}

.timeline-item:nth-child(even) .timeline-content {
  float: right;
  clear: both;
}

.timeline-content h3 {
  margin-top: 0;
  color: #05438d;
}

.timeline-content p {
  color: #333;
  margin: 10px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-date {
    left: 20px;
    transform: none;
  }
  .timeline-content {
    width: 100%;
    float: none;
    margin-left: 40px;
  }
}

.timeline-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-title {
  font-size: 36px;
  text-align: center;
  color: #034694;
  margin-bottom: 50px;
  font-family: 'Bubblegum Sans', sans-serif;
}

.timeline {
  position: relative;
  border-left: 4px solid #034694;
  padding-left: 30px;
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: #034694;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #034694;
}

.timeline-date {
  font-weight: bold;
  color: #034694;
  margin-bottom: 5px;
  font-size: 18px;
}

.timeline-item h3 {
  margin-top: 0;
  font-size: 22px;
  color: #222;
}

.timeline-item p {
  font-size: 16px;
  color: #333;
  max-width: 750px;
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.timeline-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #034694;
  font-family: 'Bubblegum Sans', sans-serif;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #034694;
}

.timeline-item {
  padding: 20px;
  position: relative;
  width: 50%;
}

.timeline-item .content {
  background: #f0f8ff;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  border: 1px solid #034694;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 25px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #034694;
  border: 3px solid white;
  z-index: 1;
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right::before {
  left: -10px;
}

.timeline-item h2 {
  margin: 0;
  font-size: 18px;
  color: #666;
}

.timeline-item h3 {
  margin: 5px 0 10px;
  font-size: 22px;
  color: #034694;
}

.timeline-item p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 30px;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item::before {
    left: 0;
  }
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.timeline-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #034694;
  font-family: 'Bubblegum Sans', sans-serif;
}

.timeline-single {
  position: relative;
  padding-left: 30px;
  border-left: 4px solid #034694;
}

.timeline-entry {
  position: relative;
  margin-bottom: 40px;
  padding-left: 20px;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -12px;
  width: 16px;
  height: 16px;
  background: #034694;
  border-radius: 50%;
  border: 2px solid white;
}

.timeline-entry .date {
  font-weight: bold;
  color: #034694;
  font-size: 18px;
}

.timeline-entry h3 {
  margin: 5px 0;
  font-size: 22px;
  color: #111;
}

.timeline-entry p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.timeline-entry {
  position: relative;
  margin-bottom: 40px;
  padding-left: 20px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px 20px;
}

.timeline-entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  background: #eaf4ff;
  cursor: pointer;
}

.timeline-container h1{
  font-family: 'Bubblegum Sans', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.info-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 300px; /* Match size */
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-box2 {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease;
}

.info-box2:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 9px #000000;
}

.info-box2 h2 {
  font-size: 1.4rem;
  color: #003366;
  margin-bottom: 10px;
}

.info-box2 p {
  line-height: 1.6;
  color: #444;
}

