/* ============================= */
/* GLOBAL RESET & BASE STYLES   */
/* ============================= */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
}

@media (max-width: 486px) {
  body {
    font-size: 14px;
    padding: 10px;
  }
}

/* ============================= */
/* HEADER / LOGO / SLOGAN       */
/* ============================= */
.slogan {
  color: #c60000;
  text-align: center;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  animation: fadeInSlideUp 0.6s ease-out forwards;
}

.banner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo {
  max-width: 350px;
  width: 100%;
  height: 9rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .logo {
    max-width: 250px;
    margin: left;
    height: auto;
  }
}

/* ============================= */
/* NAVIGATION / MENU            */
/* ============================= */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 14px 16px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 60%;
  height: 2px;
  background-color: #00bfff;
  transition: transform 0.3s ease;
}

nav ul li a:hover {
  color: #00bfff;
}
nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ============================= */
/* HAMBURGER MENU               */
/* ============================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 1000;
  overflow-y: auto;
  box-shadow: -2px 0 8px rgba(0,0,0,0.15);
}
.mobile-menu nav ul {
  padding: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  height: 100vh;
  justify-content: flex-start;
}


.mobile-menu nav ul li {
  margin-bottom: 20px;
}
.mobile-menu nav ul li a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 5px 0;
  }
}



/* INFO SECTION CONTAINER */
.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

/* INDIVIDUAL CARD */
.info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 450px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center; /* Center content inside cards */
}

/* HEADINGS */
.info-card p strong,
.info-card .hours,
.info-card .conu {
  font-size: 18px;
  font-weight: 700;
  color: #2c363f;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

/* PARAGRAPH TEXT */
.info-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

/* HR LINE */
.info-card hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 15px 0;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center social icons */
  gap: 12px;
  margin-top: 15px;
}
.social-icons a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}
.social-icons a:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .info-card {
    width: 100%;
    max-width: 100%;
  }
}
.red {
color:red;
}
.blue {
color:#007BFF;	
	
}		
.footer-center{
text-align:Center;
}	
.gogo-login-section {
  background-color: #f1f1f1;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.gogo-login-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.gogo-login-heading {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 24px;
}

.gogo-login-info {
  margin-bottom: 20px;
}

.gogo-login-question {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.gogo-login-instruct {
  font-size: 14px;
  color: #000;
  margin: 4px 0 16px;
}

.gogo-login-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #d71920;
  color: #fff;
  font-weight: bold;
  border: 2px solid #000;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.gogo-login-btn:hover {
  background-color: #b5151a;
}

/* Responsive */
@media (max-width: 600px) {
  .gogo-login-container {
    padding: 30px 20px;
  }

  .gogo-login-heading {
    font-size: 20px;
  }

  .gogo-login-question {
    font-size: 14px;
  }

  .gogo-login-instruct {
    font-size: 13px;
  }

  .gogo-login-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }
}
