@import url('https://fonts.googleapis.com/css2?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&display=swap');

    /* ===== General Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #e8f1ff;
}

/* ===== Header Style ===== */
    header {
  background-color: rgb(113, 176, 239);
   color: rgb(60, 60, 255);
  position: relative;
  z-index: 1000;
}


  


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:rgb(113, 176, 239);
  padding: 15px 40px;
  flex-wrap: wrap;
  height:150px
}

/* ===== Brand Section ===== */
.brand {
  color: #fff;
  line-height: 1.2;
}

.brand h1 {
  font-size: 2em;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 5px #020638;
  letter-spacing: 1px;
  letter-spacing: 4px;
}

.brand h3 {
  font-size: 1em;
  font-style: italic;
  margin-top: 4px;
  color: #1e57d1;
  letter-spacing: 2px;

}

.brand h2 {
  font-size: 0.85em;
  opacity: 0.9;
  letter-spacing: 2px;
  font-weight: 100;
}

/* ===== Navigation Left (Menu) ===== */
.nav-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-left ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-left ul li {
  position: relative;
}

.nav-left ul li a {
  text-decoration: none;
  color: #fff;
white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s;
  
}

.nav-left ul li a:hover {
  color: #1e1e1e;
}

/* Dropdown positioning fix */
.services {
      position: relative;
    }

    .services:hover .dropdown {
      display: block;
    }

    .services i {
      margin-left: 6px;
    }

    .services .dropdown li a {
      text-decoration: none;
      color: #ffffff;
      text-shadow: #050718;
      text-shadow: 1px 1px 2px #000000;
      font-size: 1.2em;
    }

    .services .dropdown {
      position: absolute;
      top: 30px;
      z-index: 8;
      width: 300px;
      background: rgb(113, 176, 239);
      color: #ffffff;
      padding: 20px;
      text-align: left;
      list-style: none;
      display: none;

    }

    .services .dropdown li {
      margin-bottom: 15px;

    }
/* ===== Enquire Now Button ===== */
.order-now {
  background-color: #fff3e0;
  border: 2px solid #f4c97d;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.order-now a {
  text-decoration: none;
  color: #1e1e1e;
  font-weight: 600;
  font-size: 1rem;
}

.order-now:hover {
  background-color: #f4c97d;
}

/* ===== Hamburger Menu ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  
}

.bar {
  height: 3px;
  width: 25px;
  background: white;
  align-items: center;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Responsive Section ===== */

/* For Tablets and Mobiles */
@media (max-width: 992px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 25px;
  }

  /* Hamburger visible */
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 25px;
    top: 25px;
  }

  /* Hide menu initially */
  .nav-left {
    display:none;
    position: absolute;
    width: 90%;
    align-items: center;
    flex-direction: column;
    background: #5d9cec;
    border-radius: 8px;
    padding-right: 30px;
    top: 60px;

  }


  .nav-left ul {
    flex-direction: column;
    width: 100%;
    gap: 5px;
    text-align: center;
  }

  .nav-left ul li {
    width: 100%;
  }

  .nav-left ul li a {
    display: block;
    font-size: 1.2rem;
    padding: 10px;
    width: 100%;
  }

  .order-now {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  /* When menu checked */
  input[type="checkbox"]:checked ~ .nav-left {
    display: flex;
  }
.services {
      position: relative;
    }

    .services:hover .dropdown {
      display: block;
    }

    .services i {
      margin-left: 10px;
    }

    .services .dropdown li a {
      text-decoration: none;
      color: #ffffff;
      text-shadow: #050718;
      text-shadow: 1px 1px 2px #000000;
      font-size: 1.2em;
    }

    .services .dropdown {
      position: absolute;
      top: 30px;
      z-index: 8;
      width: 300px;
      background: rgb(113, 176, 239);
      color: #ffffff;
      padding-left: 20px;
      text-align: center;
      list-style: none;
      display: none;
      border-radius: 8px;

    }

    .services .dropdown li {
      margin-bottom: 15px;

    }

  .brand {
    margin-bottom: 10px;
  }
}


/* For very small screens */
@media (max-width: 480px) {
  .brand {
    text-align: left;
    width: 100%;
  }

  .brand h1 {
    font-size: 1.5em;
  }

  .brand h3 {
    font-size: 0.9em;
  }

  .brand h2 {
    font-size: 0.7em;
  }
}