@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    text-decoration: none;
   font-family: 'Inter', sans-serif;
    list-style-type: none;
    box-sizing: border-box;
}

html{
  overflow-x: hidden;
 }

 ::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Light grey background for the scrollbar track */
  border-radius: 10px;
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
  background-color: #3576cf; /* Blue color for the scrollbar thumb */
  border-radius: 10px;
  border: 2px solid #f1f1f1; /* Adds some padding around the thumb */
}

/* Scrollbar Thumb Hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #3576cf; /* Slightly darker blue on hover */
}

body {
    width: 100vw;
    height: 100vh;
    position: relative;

}

body.no-scroll {
  overflow: hidden;
}
 

header {
  padding: 10px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box; /* Include padding and border in total width */
  z-index: 1000; /* Ensure it's above other content */
  transition: top 0.3s ease; /* Smooth transition for hiding/showing */
}

header.hidden {
  top: -100%; /* Completely hide the header when scrolled down */
}


header .logo img {
    width: 60px;
    height: 60px;
}

header .logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
    font-size: 20px;
    font-weight: 600;
}

header .nav-container {
    display: flex;
    align-items: center;
}

header nav {
    display: flex;
    gap: 30px;
    align-items: center;
    
}

header nav ul {
    display: flex;
    gap: 30px;
    list-style-type: none;
}

header nav ul a {
    font-size: 16px;
    color: #000;
    padding: 5px 0;
    position: relative;
}

header nav ul a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

header nav ul a:hover::after {
    width: 100%;
}


.down-menu {
    font-size: 16px;
    color: #000;
    cursor: pointer;
    position: relative; /* Ensure positioning context for the dropdown */
}

.down-menu i {
    transition: transform 0.3s ease; /* Smooth transition for the rotation */
}

.drop-down {
    position: absolute;
    background: #fff;
    padding: 0 20px; /* Set initial padding to zero height */
    box-shadow: 0 4px 4px 0 rgba(119, 119, 119, 0.14);
    border-radius: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 1000; /* Ensure dropdown appears above other content */
}

.drop-down ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drop-down ul li {
    text-wrap: nowrap;
}


@media (min-width: 960px){
    .down-menu:hover .drop-down{
        max-height: 300px; /* Adjust according to the content height */
        padding: 20px; /* Reset padding when expanded */
        width: fit-content;
    }
    
    .down-menu:hover i{
        transform: rotate(180deg);
    }
}

.down-menu.open .drop-down {
    max-height: 300px; /* Adjust according to the content height */
    padding: 20px; /* Reset padding when expanded */
}

.down-menu.open i {
    transform: rotate(180deg);
}



header nav .appointment a {
  padding: 10px;
  font-size: 16px;
  background-color: #3a5bcc;
  font-weight: 500;
  color: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s; 
  display: inline-block;
}

header nav .appointment a:hover {
  transform: scale(1.1); /* Scale up the link on hover */
  background-color: #3a5bcc; /* Adjust background color on hover */
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
}

.menu-close {
    display: none;
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

@media (max-width: 960px) {
    .menu-toggle {
        display: block;
    }
    .menu {
        position: absolute;
        top: 0;
        left: 0;
        display: none;
        width: 100%;
        height: 100vh;
        background-color: #000000b2;
    }
    
    header nav {
        flex-direction: column;
        padding: 0 30px;
        position: absolute;
        top: 0;
        left: -100%;
        width: fit-content;
        height: 100vh;
        align-items: start;
        justify-content: space-between;
        background-color: #fff;
        transition: left 1s ease; 
        z-index: 1100;
        box-sizing: border-box;
    }

    header nav.active {
        left: 0;
    }

    .menu.active {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    header nav .appointment {
        margin-bottom: 30px;
    }

    .menu-close {
        display: block;
    }
}
@media (max-width: 510px) {
    header{
        padding: 10px 20px;
    }

    header .logo img{
        width: 40px;
        height: 40px;
    }

    header .logo a{
        font-size: 18px;
    }

}



/*---------------------------------------*\
                Footer
\*-------------------------------------- */
footer .container {
    margin: 0;
    padding: 100px 10%;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 166, 255, 0.1);
    gap: 20px;
  }
  
  .main-footer {
    width: 30%;
  }
  
  .foot-logo img {
    margin-right: 10px;
  }
  
  .foot-logo a {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 33.639px;
    color: #000;
  }
  
  footer p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 175% */
  }
  
  .nav-footer {
    display: flex;
    width: 65%;
    gap:50px;
    flex-wrap: wrap;
  }
  
  .footer-title {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
  }
  
  .footcontainer ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }
  
  .hire {
    color: var(--Dark-Blue, #ffffff);
    padding: 1px 14px;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 215.385% */
    border-radius: 120px;
    background: var(--Green, #0030cf);
  }
  
  .footcontainer ul li a {
    color: #000000; /* Use RGBA for better transparency control */
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    text-decoration: none; /* Ensure no underline */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for both transform and color */
}
  
  .footer-item{
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 380px;
  }
  
  .footer-item-icon{
    font-size: 20px;
    color: #000;
  }
  .social-list {
    display: flex;
    gap: 30px;
    padding: 0%;
    align-items: center; /* Align the social icons vertically in the center */
    margin-top: 10px;
  }
  
  .social-list li {
    background-color: #fff;
    width: 40px; /* Set a fixed width for the perfect circle */
    height: 40px; /* Set a fixed height for the perfect circle */
    border-radius: 50%; /* Use 50% for a circular shape */
    display: flex;
    align-items: center; /* Align the icon vertically in the center */
    justify-content: center; /* Center the content horizontally */
    font-size: 25px;
    margin-top: 20px;
  }
  
  .social-link {
    display: flex;
    align-items: center; /* Align the icon vertically in the center */
    color: #0A2640;
    
  }
  
  
  .social-list li:hover {
    background-color: #3a5bcc !important; /* Use !important to override other styles if needed */
  }

  .social-list li:hover .social-link {
    color: #fff;
    
  }
  
  .cost {
    color: #fff;
    background-color: #3a5bcc;
    display: inline-block;
    font-weight: 550;
    padding: 10px 15px; /* Increased padding for better appearance */
    border-radius: 12px;
    white-space: nowrap;
    text-decoration: none; /* Ensure it's styled like a button */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transition */
}

.cost:hover {
    transform: scale(1.1); /* Slightly enlarges the button on hover */
    background-color: #0031d1; /* Optional: slightly darker blue on hover for contrast */
}

  
  
  @media (max-width:910px){
    .nav-footer{
      flex-wrap: wrap;
      gap:30px;
      width: 100%;
    }
  
    .main-footer {
      width: 80%;
    }

    .cost{
        text-wrap: wrap;
        text-align: center;
        width: fit-content;
    }
  
    footer .container{
      flex-wrap: wrap;
    }
  }
  
  @media (max-width:510px){
    .foot-logo a {
        font-size: 30px;
    }

    .main-footer{
     width: 100%;
    }
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}