@import url('https://fonts.googleapis.com/css2?family=Anton&family=Great+Vibes&display=swap');
*{
    margin: 0;padding: 0;box-sizing: border-box;
}
:root{
  --darker-b:#030423;
    --dark-b:#06202B;
    --darklight-b:#077A7D;
    --light-b:#7AE2CF;
    --cream-b:#F5EEDD;
    --yellowh:#FF6A00;
}
body{
    scroll-behavior: smooth; 
    /* height: 300vh;  */
    position: relative;
    background-color: var(--darker-b);
    color: white;
}

main{
  
  overflow: hidden;
  min-height: 80vh;
  padding-top: 80px;
}

section{
max-width: 1380px;
margin: 0 auto;
/* height: 100vh; */
}

.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.header.fixed {
    position: fixed;
    top: 0;
}

/* Hide the header on scroll down */
.header.hide {
    transform: translateY(-100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    color: white;
    max-width: 1320px;
    height: 80px;
    margin: 0px auto;
}
.navbar .logo{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 400;
    color: white;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    background: rgba( 255, 255, 255, 0.25 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
padding: 5px;

}

.nav-links li {
    position: relative;
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--light-b);
}



/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        justify-content: left;
        align-items: center;
        position: absolute;
        /* background-color: #5a67d8; */
        width: 100%;
        top: 70px;
        left: 0;
        text-align: left;
        /* margin: 5px; */
        padding: 20px;
        transition: all 0.4s;
        max-height: 700px;
        /* overflow: scroll; */

         background: rgba( 255, 255, 255, 0.25 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 15px );
-webkit-backdrop-filter: blur( 15px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
    }
    .nav-links li{
        margin: 10px;

    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}


/* contact-us */
#contact-us{
            min-height: 100vh;
            background-color:  var(--darker-b);
            background-image: repeating-radial-gradient(  #06013c 80%,#2f312f 90%,#3f4549 90%);
  background-size: 65px 65px;
  display: grid;
  place-items: center;
        }
        .contact-detail{
            max-width: 1300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: rgb(231, 229, 229);
            font-family: arial;
            text-align: center;
            padding: 50px;
            z-index: 2;
        }
        .contact-detail .about-item{
            margin-bottom: 20px;
        }
        .contact-detail img{
            width: 100px;
            border-radius: 50px;
        }
        .contact-detail .titlebox{
            font-size: 2rem;
        }
        .contact-detail .titlebox h1{
            font-weight: 100;
            margin: 0;
            color: rgb(206, 203, 203);
        }
        .contact-detail .titlebox span{
            font-weight: 800;
            filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.418));

        }
        .contact-detail .contact-desc{
            width: 80%;
        }
        .contact-detail .contact-desc h2{
            font-size: 24px;
            margin: 20px 0px;
        }
        .contact-detail .contact-desc p{
            color: rgb(194, 191, 191);
            /* width: 80%; */
            text-align: center;
            font-size: 18px;
            width: 80%;
            margin: 0px auto;
        }
        @media (max-width: 798px){
            .contact-detail .about-item{
            margin-bottom: 40px;
        }
            .contact-detail{
                padding: 10px;
            }
            .contact-detail .titlebox{
            font-size: 1rem;
        }
        .contact-detail .contact-desc{
            width: 100%;
        }
        .contact-detail .contact-desc h2{
            font-size: 18px;
        }
        .contact-detail .contact-desc p{
            font-size: 16px;
            width: 100%;
            margin: 0px auto;
        }
        }
        /* butoon */
        /* From Uiverse.io by gharsh11032000 */ 
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: rgb(47, 161, 255);
  box-shadow: 0 0 0 2px rgb(47, 137, 255);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: rgb(47, 154, 255);
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: rgb(47, 154, 255);
  /* filter: drop-shadow(0px 0px 5px white); */
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #ffffff;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px rgb(47, 255, 227);
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

        /* butoon */

/* Hidden state */
/* Panel styles */
#slidePanel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222;
  color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 20px;
  z-index: 999;
  max-width: 500px;
  height: 400px;
  margin: 0 auto;

  transform: translateY(100%);
  transition: transform 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

#slidePanel.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}


/* Drag bar */
.drag-bar {
  width: 50px;
  height: 6px;
  background: #888;
  border-radius: 3px;
  margin: 0 auto 15px auto;
  cursor: pointer;
  transition: all 0.3s ease;

}

/* Slide-up animation */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}

/* form */
.social-icons{
  display: flex;
  justify-content: center;
}
.social-icons a {
  margin-right: 10px;
  color: rgb(218, 216, 216);
  font-size: 20px;
  width: 20px;
  height: 20px;
}
.social-icons a i{
  font-size: 20px;
}

.tab-buttons {
  display: flex;
  margin: 20px 0;
}

.tab {
  flex: 1;
  padding: 10px;
  background: #222;
  border: none;
  cursor: pointer;
  color: #ccc;
}

.tab.active {
  background: #444;
  color: #fff;
  border-radius: 20px;
  border: 1px solid rgba(161, 160, 160, 0.425);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.contact-card {
  background: #1a1a1a;
  margin-bottom: 10px;
  min-height: 150px;
}
.contact-card h1{
padding: 20px;
/* border: 1px solid; */
margin-top: 0;
border-radius: 8px 8px 0px 0px;
background: linear-gradient(to right, #5fb2ff73, #feb47b00);
font-size: 24px;
}
.contact-card h1 i{
  margin-right: 5px;
  color: #4ec8b8;
}
.contact-card div{
  padding: 10px;
  margin-top: 20px;
}
.contact-card div h4 a{
  /* margin: 0 0 5px; */
  /* padding: 10px; */
  margin-top: 0px;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 22px;
  font-family: Arial, Helvetica, sans-serif;

}
.contact-card div p{
    margin: 15px 0px;
}


.availability {
  margin-top: 15px;
  font-size: 14px;
  color: #69ffa8;
  display: flex;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
}

.dot {
  margin: 3px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background-color: #69ffa8;
  animation: 1.5s pulse infinite ease-in-out;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #69ffa8;
  }

  100% {
    box-shadow: 0 0 0 14px #69ffa800;
  }
}
.contact-form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  /* margin: 0 auto; */
  margin-bottom: 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: white;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background: linear-gradient(to right, #4e54c8, #8f94fb);
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* footer */
footer{
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: space-evenly;

}

.footer-text{
    display: flex;
    align-items: end;
    justify-content: center;
    color: white;
}
.footer-text-1{
    width: 50%;

}
.footer-social a{
    color: white;
    text-decoration: none;
}

.footer-links{
    display: grid;
    place-items: center;
    color: white;
}
.footer-links ul li{
    list-style: none;
    /* color: white; */
}
.footer-links ul li a{
    text-decoration: none;
    color: white;
}

/* footer */
@media (max-width: 798px){
    footer{
        flex-direction: column;
    }
    .footer-text-1{
    width: 100%;
    padding: 10px;
}
}