body {
            font-family: 'Inter', sans-serif;
            background-color: #131313;
            color: #ffffff;
            margin: 0;
            padding: 0;
        }
.container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 10px;
            min-height: 100vh;
        }
nav {
            max-width: 1240px;
            margin: 0 auto;
            padding-top: 9px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
.mizano-int {
            font-size: 160px;
        }
.logo img {
            width: 52px;
            height: 44px;
        }
.nav-links a {
            color: white;
            text-decoration: none;
            margin-right: 20px;
            font-weight: bold;
            position: relative;
            cursor: pointer;
        }
.nav-links a:hover {
            color: #E730CA;
        }
.nav-links a::before {
            content: '';
            position: absolute;
            bottom: 2.5px;
            left: 50%;
            height: 1.5px;
            width: 0;
            background-color: white;
        }
header {
            padding-top: 60px;
            text-align: center;
            height: 100%;
        }
header h1 {
            font-size: 40px;
            font-weight: bold;
            color: white;
        }
header h1 span {
            color: #FF33DE;
        }
header p {
            font-size: 18px;
            margin-top: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
.action-buttons {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }
.action-buttons a {
            padding: 10px 20px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            text-align: center;
            transition: all 0.3s;
        }
        /*buttons named as find-uni*/
.find-uni {
            background-color: #E730CA;
            color: white;
            border: 2px solid transparent;
        }
.find-uni:hover {
            background-color: transparent;
            color: #E730CA;
            border-color: #E730CA;
        }
.apply-uni {
            border: 2px solid #E730CA;
            color: #E730CA;
        }
.apply-uni:hover {
            background-color: #E730CA;
            color: white;
        }
.section {
      display: none;
        }
.section.active {
      display: block;
    }
.spec {
  padding: 30px;
}
.spec-container {
  display: flex;
  gap: 10%;
  justify-content: center;
}
.spec-box {
  width: 600px;
}
.spec-box img {
  width: 100px;
}
.ft-ct {
        color: rgb(136, 136, 136);
        font-size: 10px;
        text-align: center;
    }

button {
    background-color: #007BFF; /* business blue */
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    margin-right: 1rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  button:hover {
    background-color: #0056b3;
  }

#contactForm {
    display: none;
    padding: 2rem;
    border-top: 1px solid #ccc;
    margin-top: 2rem;
    background-color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 6px;
    max-width: 1440px;
  }

#contactForm h2 {
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.5rem;
  }

#contactForm p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

#contactForm h3 {
    margin-top: 1.5rem;
    color: #004080;
    font-weight: 600;
  }

#contactForm ul {
    list-style-type: none;
    padding-left: 0;
    line-height: 1.6;
  }

#contactForm ul li strong {
    width: 90px;
    display: inline-block;
    color: #0066cc;
  }
.hd-ul {
    color: #0066cc;
}

#contactForm a {
    color: #007BFF;
    text-decoration: none;
  }

#contactForm a:hover {
    text-decoration: underline;
  }

form label {
    font-weight: 600;
    display: block;
    color: #0056b3;
  }

  form input[type="text"],
  form input[type="email"],
  form textarea {
    width: 100%;
    padding: 0.4rem 0.5rem;
    margin-top: 0.25rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    resize: vertical;
    box-sizing: border-box;
  }

  form textarea {
    min-height: 100px;
  }

  form button[type="submit"] {
    margin-top: 1rem;
    background-color: #007BFF;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  form button[type="submit"]:hover {
    background-color: #0056b3;
  }





@media (max-width: 390px) {

.nav-links a {
                font-size: 13px;
            }
header h1 span {
            font-size: 20px;
        }
.mizano-int {
            font-size: 90px;
        }
header h1 {
            font-size: 28px;
            font-weight: bold;
            color: white;
        }
header h1 span {
            color: #FF33DE;
            font-size: 28px;
        }
header p {
            font-size: 14px;
            margin-top: 20px;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }
action-buttons a {
            padding: 6px 16px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            text-align: center;
            transition: none;
        }
}

.projects-container {
  text-align: justify;
  justify-items: center;
  display: grid;
  gap: 50px;
}
.p-box {
  display: flex;
  padding: 18px;
  gap: 40px;
}
.p-left {
  text-align: left;
  max-width: 60%;
}
.p-link {
  padding: 4px 100px 4px 12px;
  background-color: #939393;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.p-link:hover {
  background-color: #E730CA;
}
.p-img {
  width: 350px;
  height: auto;
  border-radius: 12px;
  text-align: center;
  align-items: center;
}

img {
  max-width: 100%;
  height: auto;
}

nav {
  flex-wrap: wrap;
  padding: 10px;
}

.nav-links {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #131313;
    padding: 15px;
    width: 100%;
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }
  nav {
    justify-content: space-between;
  }
  .menu-toggle {
    display: block;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
}
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

/* Responsive Typography */
header h1 {
  font-size: clamp(24px, 5vw, 40px);
}
.mizano-int {
  font-size: clamp(60px, 15vw, 160px);
}
header p {
  font-size: clamp(14px, 3vw, 18px);
}

/* Buttons */
.action-buttons {
  flex-wrap: wrap;
  gap: 12px;
}
.action-buttons a {
  padding: 10px 18px;
  font-size: 0.9rem;
}

/* Services / Specs */
.spec-container {
  flex-wrap: wrap;
  gap: 20px;
}
.spec-box {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

/* Projects */

.p-left {
  max-width: 100%;
}
.p-img {
  width: 100%;
  max-width: 320px;
}



/* Extra small screens */
@media (max-width: 390px) {
  .nav-links a {
    font-size: 14px;
    margin-right: 10px;
  }
  header p {
    max-width: 280px;
  }
  .p-link {
    padding: 6px 12px;
    font-size: 14px;
  }
}
