@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ================= NAVBAR ================= */
.nav-head{
    background-color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    flex-wrap: wrap;

    /* FIX: navbar must stay above hero */
    position: relative;
    z-index: 9999;
}

.logo-section{
    display: flex;
    align-items: center;
    color: blue;
}

.logo-section img{
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.logo-section h2{
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
.logo-link {
    text-decoration: none;   /* removes underline */
    color: inherit;          /* keeps text color same */
}

.logo-link:hover,
.logo-link:focus {
    text-decoration: none;   /* ensures no underline on hover */
}


ul.nav-links1{
    list-style: none;
    display: flex;
    gap: 20px;
}

ul.nav-links1 li a{
    color: navy;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color .3s ease;
}

ul.nav-links1 li a:hover{
    background-color: darkcyan;
    color: #fff;
}

.login-btn{
    color: navy;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    transition: .3s ease;
}

.login-btn:hover{
    background-color: darkcyan;
    color: #fff;
}

.login-mobile{ display: none; }
.login-desktop{ display: block; }

/* Hamburger */
.hamburger{
    font-size: 28px;
    display: none;
    cursor: pointer;

    /* FIX: keep hamburger above hero */
    position: relative;
    z-index: 99999;
}

/* ================= MOBILE MENU ================= */
@media(max-width:900px){

    .hamburger{ display: block; }
    .login-desktop{ display: none; }
    .login-mobile{ display: block; }

    .nav-links1{
        position: fixed;
        top: 90px;          /* FIXED — matches navbar height */
        left: -100%;
        width: 100%;
        background: blue;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        transition: .3s ease;

        /* FIX: keep mobile menu on top */
        z-index: 9999;
    }

    .nav-links1.open{
        left: 0;
    }

    .nav-links1 a{
        color: white !important;
        font-size: 18px;
    }

    .login-btn{
        width: 140px;
        text-align: center;
    }
}

/* Extra adjustments */
@media (max-width:428px){
    .logo-section h2{ font-size: 15px; }
}

@media (max-width:323px){
    .logo-section h2{ font-size: 13px; }
}





.about-section {
  background-color: #fff;
  color: #333;
  padding: 80px 20px;
  line-height: 1.8;
  font-family: "Poppins", sans-serif;
}

.about-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007BFF; /* Blue Highlight */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #007BFF; /* Fixed missing background */
  margin: 10px auto 0;
  border-radius: 2px;
}

.about-section p {
  margin-bottom: 20px;
  font-size: 1rem;
  text-align: justify;
}

.about-section h3 {
  color: #007BFF;
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 15px;
  padding-left: 10px;
}

.about-section ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.about-section ul li {
  margin-bottom: 10px;
}

.about-section .closing {
  margin-top: 40px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .about-section {
    padding: 60px 15px;
    text-align: left; /* Align entire section left */
  }

  .about-section h3 {
    font-size: 1.2rem;
    text-align: left;
  }

  .about-section p, 
  .about-section li {
    font-size: 0.95rem;
    text-align: left; /* Override justified text */
  }

  .about-section .closing {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .about-section {
    padding: 40px 10px;
    text-align: center;
  }

  .about-section .closing {
    font-size: 1rem;
    text-align: left;
  }
}
