@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between; /* h1 left, nav right */
  align-items: center;
  padding: 10px 20px;
  background: #f5f5f5;
}

nav ul {
  list-style: none;
  display: flex; /* ek line me */
  gap: 20px; /* links ke beech gap */
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #007bff;
}

#heading {
  text-align: center;
  margin: 10px;
}

#short-para {
  text-align: center;
}

#short-para a {
  text-decoration: none;
}

#short-para a:hover {
  text-decoration: underline;
}

.second-section {
    height: 400px;
    margin-top: 100px;
    background-color: orange;
    border-top-left-radius: 30%;
    border-top-right-radius: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


footer {
  background-color: #000000;
}

footer p {
  text-align: center;
  color: white;
}

.second-section .icons {
    justify-content: center;
    align-items: center;
    display: flex;
    height: 300px;
    font-size: 30px;
    gap: 40px;
}

.second-section .icons a{
    text-decoration: none;
    color: black;
    transform: scale(1);
    transition: 0.6s;
}

.second-section .icons a:hover{
    transform: scale(1.2);
    transition: 0.6s;
}

#c-btn{
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: blue;
    padding: 10px;
    border: none;
    color: white;
    border-radius: 10px;
    transform: scale(1);
    transition: 0.6s;
}

#c-btn:hover{
    transform: scale(1.2);
    transition: 0.6s;
}

#water-mark{
    margin: 10px;
    color: rgba(0, 0, 0, 0.514);
}