#mainNavbar {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999;
      background-color: #F9F6F3 !important;
      transition: box-shadow 0.3s ease, border-radius 0.3s ease;
      padding: 12px 0;
    }

    #mainNavbar:hover {
      box-shadow: 0 4px 20px rgba(79, 183, 179, 0.3);
      border-radius: 15px;
    }

    .nav-link {
      color: #2F5755 !important;
      font-family: "Courier New", monospace;
      font-weight: 600;
      transition: color 0.3s ease, transform 0.2s ease;
      border-radius: 20px;
      padding: 8px 18px;
    }

    .nav-link:hover {
      color: #fff !important;
      background-color: #A1C2BD;
      box-shadow: 0 0 14px rgba(90, 150, 144, 0.6);
      border-radius: 25px;
      transform: scale(1.05);
    }

    .btn-login {
      border: 2px solid #4FB7B3;
      color: #2F5755;
      font-family: "Courier New", monospace;
      font-weight: 600;
      background: transparent;
      border-radius: 10px;
      padding: 8px 24px; /* ✅ Restored padding */
      transition: all 0.3s ease;
    }

    .btn-login:hover {
      background-color: #A1C2BD;
      color: #FEFAE0;
      border-color: #A1C2BD;
    }

    .language-toggle {
      font-family: "Courier New", monospace;
      font-weight: 600;
      color: #2F5755;
    }

    .language-toggle .lang-link {
      color: #2F5755;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .language-toggle .lang-link:hover {
      color: #A1C2BD;
    }

    .language-toggle .lang-link.active {
      font-weight: bold;
      color: #4FB7B3;
    }

    /* Default desktop */
    .hero-title {
      font-size: 5rem;
      font-family: 'Fredoka', serif;
      font-weight: 700;
      color: #294544;
      line-height: 1.2;
    }

    .hero-text {
      font-size: 1.3rem;
      font-family: 'Poppins', sans-serif;
      color: #2F5755;
    }

    /* Tablet */
    @media (max-width: 992px) {
      .hero-title { font-size: 4rem; }
      .hero-text { font-size: 1.1rem; }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .hero-title { 
        font-size: 3rem; 
      }
      .hero-text { 
        font-size: 1rem;  
      }
      .myscat-word {
        display: block;
      }
      .hero-section {
        text-align: center;
        padding-top: 100px;
      }
    }

    /* Small phones */
    @media (max-width: 576px) {
      .hero-title { font-size: 2.2rem; }
      .hero-text { font-size: 0.9rem; }
    }



    .about-section {
      background-size: cover;        /* Makes image cover full section */
      background-position: center top 200px;
      background-position: center;   /* Centers the image */
      background-repeat: no-repeat;  /* Prevents tiling */
      min-height: 100vh;
      height:auto;                 /* Make it full screen like other sections */
      color: rgb(130, 50, 50);                  /* Text readable on image (optional) */
    }

    .about-section .container {
        position: relative;
        z-index: 2;
        text-align: center;
        padding-top: 150px; /* 🔹 Push text downward */
    }

    .about-text h2 {
        font-size: 2.3rem;
        font-weight: 700;
        color: #2F5755;
        font-family: 'Poppins', serif;
    }

    .about-desc {
        font-family: 'Poppins', sans-serif;
        color: #555;
        font-size: 1rem;
        margin-top: 15px;
        line-height: 1.7;
    }

    .about-image img {
        width: 100%;         /* Make it full width of its container */
        max-width: 1000px;    /* Increase this value to make it bigger */
        height: auto;        /* Keep the aspect ratio */
        display: block;
        margin: 0 auto;      /* Center the image */
    }

    /* Responsive for mobile */
    @media (max-width: 768px) {
        .about-section .container {
            flex-direction: column;
            text-align: center;
        }
        .about-text, .about-image {
            margin-bottom: 25px;
        }
    }

    .myscat-footer {
        background: linear-gradient(to bottom, #ffffff, #c5c2c2);
        padding: 40px 20px;
        text-align: center;
        font-family: 'Poppins', sans-serif;
        color: #2F5755;
    }

    /* Partners Logo Row */
    .footer-partners img {
        width: 100px;
        margin: 0 15px;
        opacity: 0.9;
        transition: transform 0.3s;
    }

    .footer-partners img:hover {
        transform: scale(1.05);
    }

    /* Links */
    .footer-links {
        margin: 20px 0;
    }

    .footer-links a {
        margin: 0 15px;
        color: #2F5755;
        font-weight: 500;
        text-decoration: none;
    }

    .footer-links a:hover {
        text-decoration: underline;
    }

    /* Divider */
    .footer-line {
        width: 80%;
        margin: 20px auto;
        border: 0.5px solid #ccc;
    }

    /* Bottom */
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        max-width: 800px;
        margin: auto;
    }

    .footer-bottom p {
        margin: 0;
    }

    .footer-social img {
        width: 28px;
        margin: 0 8px;
        opacity: 0.8;
    }

    .footer-social img:hover {
        opacity: 1;
    }

    