/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  
  line-height: 1.8;
  background-color: #f9f9fb;
  color: #222;
}

/* ========== Nav Bar ========== */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #131e3d;
  height: 80px;
  z-index: 1000;
}

.logo {
  width: 120px;
  height: 50px;
  animation: slideInLeft 1s ease;
}

.sub-head {
  font-size: 32px;
  color: #f8f9ff;
  text-align: center;
  flex: 1;
  animation: slideInLeft 1s ease;
}

.contact-btn {
  background-color: #87cdc3;
  color: #000;
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: bold;
  text-decoration: none;
  animation: slideInLeft 1s ease;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #48699d;
}

/* Fixed Contact Button */
.fixed-contact-btn {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background-color: #7ccabf;
  color: #000;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 12px 12px 0 0;
  font-weight: bold;
  font-size: 1.5rem;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.fixed-contact-btn:hover {
  background-color: #48699d;
}
  

/* Hero Section */
.hero-section {
  position: relative;
  height: 54rem;
  overflow: hidden;
  animation: slideInLeft 3s ease;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slideInLeft 1s ease;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.hero-section .absolute {
  position: absolute;
  inset: 0;
  background-color: rgba(160, 175, 184, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Remove boxed background for container */
.container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  background: none; /* Remove white box */
  border-radius: 0;  /* Remove rounded corners */
  box-shadow: none;  /* Remove shadow */
}

/* Article Content */
article h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color:#255598; /* Same as blog 1/2 headings */
  margin-top: 50px;
  border-left: none; /* Remove colored left border */
  padding-left: 0;
}

article h3 {
  font-size: 1.5rem;
  color: #255598; /* Match Blog 1/2 subheading color */
  margin-top: 35px;
  font-weight: 700;
}

article p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.8;
}

article ul {
  padding-left: 1.8rem; /* Align with blog text */
  margin-bottom: 25px;
  list-style-type: disc; /* Default bullet style like Blog 1/2 */
}

article ul li {
  margin-bottom: 10px;
  line-height: 1.8;
  position: relative;
}

article ul li::before {
  content: none; /* Remove custom checkmark in box */
}


/* Info Box & CTA */
.info-box,
.cta-box {
  background-color: #f0f9ff;
  
  padding: 25px;
  margin-top: 50px;
  border-radius: 12px;
  animation: fadeInUp 0.6s ease forwards;
}

.cta-box {
  background-color: #e8fff2;
  border-color: #317e9f;
  text-align: center;
  color: #317e9f;
}

.cta-box h3 {
  font-size: 1.6rem;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #317e9f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(49, 126, 159, 0.3);
}

.cta-button:hover {
  background-color: #58c8a4;
}

/* --------- Footer --------- */
.site-footer {
  background-color: #131e3d;
  color: #d7d9dd;
  padding: 2rem 1rem;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
  gap: 1rem;
}

.footer-brand {
  flex: 1 1 auto;
  text-align: left;
}

.footer-brand p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #dcdcdc;
}

.footer-logo {
  max-height: 50px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff1a;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background-color: #ffffff33;
  transform: scale(1.1);
}

.footer-social i {
  color: white;
  font-size: 16px;
}

.lastpage {
  text-align: center;
  font-size: 1rem;
  padding-top: 1rem;
  color: #fff;
}


/* Responsive Footer */

@media (max-width: 600px) {
  .footer-info {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Animations */
.image:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .contact-btn {
    margin-top: 12px;
    padding: 8px 15px;
  }

  .container {
    padding: 0 15px;
  }

  article h2 {
    font-size: 1.5rem;
  }

  article h3 {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 10px 22px;
  }
}
@media (max-width: 480px) {
.logo {
    width: 70px;
    height: 20px;
  }
  .sub-head {
    font-size: 0.9rem;
    margin-top: 0px;
  }
  
  .contact-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }
  .hero-text h1{
    font-size: 2rem;
    justify-content: space-evenly;
    margin-bottom: 70px;
  }
  .hero-section h1{
    font-size: 2.5rem;
  }
}

