/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  padding-top: 120px; /* Avoid content overlap with fixed header */
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 10px 10px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 30px;
  padding-top: 60px;
}
.site-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: red; /* adjust color */
  margin: 0;
  padding: 0 15px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons img {
  height: 100px;
  width: 100px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

nav {
  width: 100%;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 15px;
  flex-wrap: wrap;
}

.menu li {
  position: relative;
}

.menu li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  padding: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.menu li a:hover,
.dropdown-menu li a:hover {
  color: red;
  background-color: whitesmoke;
  border-radius: 5px;
  text-decoration: underline;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  min-width: 160px;
  padding: 10px 0;
  text-align: center;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  text-decoration: none;
  color: black;
  display: block;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  background-color: greenyellow;
  color: black;
  font-weight: bold;
  padding: 6px 12px;
  border: none;
  cursor: pointer;
}
/* Mobile (<= 768px) */
@media (max-width: 768px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px 12px;
    gap: 10px;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  body {
    padding-top: 200px; /* Enough space to push below header */
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .logo img {
    width: 70px;
    height: auto;
  }

  .menu-toggle {
    display: block;
    font-size: 22px;
    background-color: transparent;
    border: none;
    color: white;
    cursor: pointer;
    align-self: flex-end;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
  }

  .social-icons img {
    height: 22px;
    width: 22px;
  }

  nav {
    width: 100%;
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: whitesmoke;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ccc;
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    list-style: none;
  }

  .menu li a {
    color: black;
    padding: 10px;
    font-size: 15px;
    display: block;
    text-decoration: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background-color: #f0f0f0;
  }
}

/* 🔽 Extra optimization for screens <= 480px */
@media (max-width: 480px) {
  header {
    padding: 8px 10px;
    gap: 8px;
  }

  body {
    padding-top: 190px;
  }

  .logo img {
    width: 65px;
  }

  .menu-toggle {
    font-size: 20px;
  }

  .social-icons img {
    width: 20px;
    height: 20px;
  }

  .menu li a {
    font-size: 14px;
  }
}

/* 🔽 Optional tweak for ultra-small screens (iPhone SE, Galaxy A01, etc.) */
@media (max-width: 375px) {
  header {
    gap: 6px;
    padding: 6px 8px;
  }

  body {
    padding-top: 180px;
  }

  .logo img {
    width: 60px;
  }

  .menu-toggle {
    font-size: 18px;
  }

  .social-icons img {
    width: 18px;
    height: 18px;
  }

  .menu li a {
    font-size: 13px;
    padding: 8px;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  header {
    height: 90px;
    padding: 10px;
  }

  .logo img {
    width: 90px;
  }

  .social-icons img {
    height: 50px;
    width: 50px;
  }

  .menu li a {
    font-size: 12px;
    padding: 8px;
  }
}

/* Laptop (1025px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
  header {
    height: 90px;
    padding: 10px 15px;
  }
 
.logo img {
  width: 180px;
  height: auto;
  object-fit: contain;
}


  .social-icons img {
    height: 40px;
    width: 40px;
  }

  .menu li a {
    font-size: 14px;
    padding: 10px 8px;
  }
}

/* Desktop (>= 1367px) */
@media (min-width: 1367px) {
  .logo img {
    width: 200px;
  }

  .social-icons img {
    height: 50px;
    width: 80px;
  }

  .menu li a {
    font-size: 18px;
    padding: 10px 12px;
  }

  .menu-toggle {
    display: none;
  }
}
 /*home -section*/

 .home-section {
  width: 100%;
  height: 100vh; /* Full screen height */
  background-color: #000; /* Pure black background */
}


 /*about -section*/

 .about-section {
  width: 100%;
  height: 100vh; /* Full screen height */
  background-color: #000; /* Pure black background */
}

 /*services -section*/

 .services-section {
  width: 100%;
  height: 100vh; /* Full screen height */
  background-color: #000; /* Pure black background */
}

 /*FAQS -section*/

 .faq-section {
  width: 100%;
  height: 100vh; /* Full screen height */
  background-color: #000; /* Pure black background */
}

 /*contact -section*/

 .contact-section {
  width: 100%;
  height: 100vh; /* Full screen height */
  background-color: #000; /* Pure black background */
}


