/* Basic Reset */

html,
body {
  height: 100%;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  min-height: 100%;
  position: relative;
  margin: 0;
  padding-bottom: 50px;
  box-sizing: inherit;
}

/* Navbar Container */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* Transparent at the top */
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 50px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

/* Logo Styling */
.navbar .logo {
  width: 221px;
  height: auto;
  margin-top: 7px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 80px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  font-size: 18px;
  /* Light text for transparent background */
  color: #fff;
  transition: color 0.3s ease;
}

/* Hover Effect for Links */
.nav-links a:hover {
  color: #ffcc00;
}

/* Navbar SCROLLED State */
.navbar.scrolled {
  background: #fff;
  /* White background on scroll */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Change link color when scrolled (dark text on white background) */
.navbar.scrolled .nav-links a {
  color: #333;
}


.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  min-width: 250px;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-content li {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s ease;
  letter-spacing: 1px;
  line-height: 1.6;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: #444;
  border-radius: 4px;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  /* Fade in */
  transform: translateY(0);
}

.navbar.scrolled .dropdown-content {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .dropdown-content a {
  color: #333;
}

.navbar.scrolled .dropdown-content a:hover {
  background: #eee;
}

.dropdown-content li a:hover {
  color: #ffcc00;
  background: #333;
}


/* Hero Section (Just an Example) */
.hero {
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  max-width: 600px;
}



/* The footer section starts here*/
footer {
  background-color: #070707;
  color: #fff;
  padding: 15px 20px;
  border-top: 1px solid #666;
}

/* Flex container for footer content */
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left text styling */
.footer-text {
  font-size: 14px;
}

/* Icon styling */
.footer-icons a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  font-size: 18px;
  /* Adjust as needed */
}

/* Hover effect */
.footer-icons a:hover {
  color: #ccc;
}

/* The footer section ends here*/

/* The whatsapp section starts from here*/
.whatsapp-float {
  position: fixed;
  bottom: 60px;
  /* Adjust vertical position */
  right: 25px;
  /* Adjust horizontal position */
  display: inline-block;
  width: 60px;
  height: 60px;
  /* Radial gradient from lighter green to WhatsApp green */
  background: radial-gradient(circle at 30% 30%, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  /* Icon size */
  line-height: 60px;
  /* Vertically center the icon */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Subtle hover scale */
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Optional: Add a soft pulse animation around the button */
.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: transparent;
  animation: whatsappPulse 1.5s infinite;
}

/* Keyframes for the pulse effect */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 30px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* The whatsapp section ends here */