header {
    padding-top: 90px;
    width: 100vw;
    height: auto;
    position: relative;
}

header nav * {
    color: var(--heading-color-2);
    font-family: var(--fontfamily-1);
    font-weight: 700;
}

header section * {
    color: var(--heading-color-2);
    font-family: var(--fontfamily-1);
}

.contact-number p {
    margin-left: 10px;
}

.navigation-bar {
    width: 100vw;
    position: fixed;
    top: 0px;
    height: 90px;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.839);
    padding: 0px 3rem;
    transition: transform 0.35s ease;
    z-index: 999;
}

header nav ul li {
    margin-right: 40px;
    list-style: none;
    position: relative;
    padding: 5px 0;
}

header nav ul li a {
    position: relative;
    text-decoration: none;
    padding: 5px 0;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #776b6b;
    transition: all 0.2s ease-in-out;
    transform: translateX(-50%);
}

header nav ul li a:hover::after {
    width: 100%;
    left: 0;
    transform: translateX(0);
}

.header-content {
    width: 100vw;
    /* margin-top: 100px; */
}
.header-heading {
    font-weight: 800 !important;
}
.header-paragraph{
  font-size: .95rem;
  text-align: center;
}
.whatsapp-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #25D366;
  transition: all 0.3s ease;
}

.whatsapp-link .tooltip {
  visibility: hidden;
  width: 80px;
  background-color: #25D366;
  color: white;
  text-align: center;
  border-radius: 4px;
  padding: 4px 8px;
  position: absolute;
  z-index: 1;
  top: 100%; /* Position below the link */
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5px; /* Add some space between link and tooltip */
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.8rem;
  font-weight: 500;
}

.whatsapp-link .tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%; /* Position arrow above the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #25D366 transparent; /* Arrow pointing up */
}

.whatsapp-link:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.whatsapp-link i {
  color: #25D366;
  font-size: 1.5rem;
}
.nav-hide {
  transform: translateY(-100%);
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--heading-color-2);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.logos br {
  display: none;
}

/* Responsive Navigation Bar */
@media (max-width: 1200px) and (min-width: 1050px) {
  .navigation-bar {
    padding: 0px 2.5rem;
  }
  
  header nav ul li {
    margin-right: 30px;
  }
  
  header nav ul li a {
    font-size: 0.95rem;
  }
  
  .whatsapp-link span {
    font-size: 0.9rem;
  }
  
  .whatsapp-link i {
    font-size: 1.4rem;
  }
}

@media (max-width: 1050px) and (min-width: 950px) {
  .navigation-bar {
    padding: 0px 2rem;
  }
  
  header nav ul li {
    margin-right: 20px;
  }
  
  header nav ul li a {
    font-size: 0.9rem;
  }
  
  .logos br {
    display: block;
  }
  
  .logos .logo {
    margin-bottom: 8px;
  }
  
  .whatsapp-link span {
    font-size: 0.85rem;
  }
  
  .whatsapp-link i {
    font-size: 1.3rem;
  }
  
  .header-content {
    padding-top: 12%;
  }
  
  .header-heading {
    width: 600px;
  }
  
  .header-paragraph {
    width: 40vw;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 950px) {
  header {
    padding-top: 80px;
  }
  .hamburger {
    display: flex;
  }
  
  .navigation-bar {
    padding: 0px 1rem;
    height: 80px;
  }
  
  .sections {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 60px);
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding: 2rem;
  }
  
  .sections.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: flex-start;
  }
  
  header nav ul li {
    margin-right: 0;
    margin-bottom: 25px;
    width: 100%;
  }
  
  header nav ul li a {
    font-size: 1.1rem;
    padding: 10px 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  header nav ul li a:hover::after {
    width: 0;
  }
  
  .whatsapp-link span {
    display: none;
  }
  
  .whatsapp-link i {
    font-size: 1.2rem;
  }
  
  .contact-number {
    margin-left: auto;
    margin-right: 15px;
  }
  
  .header-content {
    padding-top: 15%;
  }
  
  .header-heading {
    font-size: 2.3rem !important;
    /* width: 400px; */
  }
  
  .header-paragraph {
    width: 70vw;
    font-size: 0.75rem !important;
  }
  
  .button {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 180px;
  }
}

@media (max-width: 450px) {
  .header-content {
    padding: 30px;
  }
  
  .header-heading {
    width: 100%;
    padding: 0rem 1rem; 
    font-size: 2rem !important;
  }
  
  .header-paragraph{
    width: 100vw;
    font-size: 0.65rem !important;
  }
  
  .button {
    padding: 0px 15px;
    font-size: 0.65rem;
    width: 120px;
    height: 45px;
  }
}

