 /* Importing Google fonts - Inter */
 @import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');
 @import url('https://fonts.cdnfonts.com/css/ica-rubrik-black');
 @import url('https://fonts.cdnfonts.com/css/poppins');

html {
   font-size: 100%;
   overflow-x: hidden;
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   text-decoration: none;
   border: none;
   outline: none;
   font-family: 'Poppins', sans-serif;
}

body {
   width: 100%;
   height: 100%;
   margin: 0;
   overflow: hidden; /* Prevent scrolling */
   background-color: black;
   color: white;
   position: relative; /* To position absolute elements correctly */
}

::selection {

   background-color: #10a4b0; /* Yellow background color */
 
   color: black; /* Optional: Set text color within the selection */
 
 }

.divider {
   width: 50%; /* Width of the divider */
   height: 2px; /* Thickness of the divider */
   background-color: #10a4b0; /* Color of the divider */
   margin: 0px auto; /* Center the divider and add vertical space */
}

/* Navigation Bar */
header {
   position: fixed;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 20px;
   background-color: black;
   transition: background-color 0.3s ease;
   width: 100%;
   top: 0;
   left: 0;
   z-index: 1500;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
   display: flex;
   align-items: center;
}


.logo:hover {
   transform: scale(1.1);
   transition: transform 0.3s ease, color 0.3s ease;
}

.logo-text {
   margin-top: 50;
   color: white;
   font-size: 1.2rem;
}

.nav-links {
   list-style: none;
   display: flex;
   gap: 15px;
}

.nav-links a {
   font-size: 1rem;
   font-weight: 500;
   color: white;
   padding: 8px 12px;
   border-radius: 5px;
}

.nav-links a.active,
.nav-links a.current {
  background: linear-gradient(134deg, #10a4b0, #008996);
   color: white;
}

.nav-links a:hover,
.nav a.active {
  background: linear-gradient(134deg, #10a4b0, #008996);
   color: white;
}

.scrolled {
   background-color: black;
   transition: color 0.3s ease;
}

.golden{
   color: #ba901c;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
   .navbar {
       background-color: black;
       flex-direction: row;
       padding: 10px 15px;
   }

   .toggle-btn {
       display: block;
       margin-left: 30%;
   }

   .nav-links {
       flex-direction: column;
       position: absolute;
       top: 50px;
       left: 0;
       background-color: black;
       width: 100%;
       padding: 0; /* Remove padding for animation */
       border-radius: 5px;
       text-align: center;
       opacity: 0; /* Start with opacity 0 */
       max-height: 0; /* Start with max-height of 0 */
       overflow: hidden; /* Hide overflow to prevent content from showing */
       transition: max-height 0.5s ease, opacity 0.5s ease; /* Add transition for max-height and opacity */
   }

   .nav-links.active {
       opacity: 1; /* Fully visible when active */
       max-height: 300px; /* Set a max-height that is greater than the content height */
       padding: 10px 0; /* Add padding when active */
   }

   .nav-links a {
       font-size: 0.8rem;
       text-align: center;
       padding: 10px; /* Add padding for better touch targets */
   }
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
   .menu-toggle {
       font-size: 1rem;
   }

   .logo, .logo-text {
       font-size: 1rem;
   }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
   width: 12px; /* Width of the scrollbar */
   height: 12px; /* Height of the scrollbar */
}

::-webkit-scrollbar-track {
   background: linear-gradient(180deg, #0a0a0a, #222113); /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #10a4b0, #10a4b069); /* Gradient for the scrollbar thumb */
   border-radius: 10px; /* Rounded corners for the scrollbar thumb */
}


::-webkit-scrollbar-corner {
   background: transparent; /* Background for the corner where scrollbars meet */
}


/* Hamburger Menu */
.block {
   height: 40px; 
   width: 40px;  
   border-radius: 5px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-left: 40%;
   transition: all 1s ease;
   background: linear-gradient(134deg, #10a4b0, #00eaff);

}

.cta {
   height: 40px; 
   width: 40px;  
   cursor: pointer;
}

.toggle-btn {
   height: 2px;
   border-radius: 6px;
   width: 18px; 
   background-color: #fff;
   position: relative;
   top: 50%;
   left: 0;
   transition: all 0.3s ease-in-out;
   text-align: center;
}

.toggle-btn:before {
   content: "";
   height: 2px;
   border-radius: 6px;
   width: 18px; 
   box-shadow: 0 -10px 0 0 #fff;
   position: absolute;
   top: 0;
   left: 0;
   transition: all 0.3s ease-in-out;
   text-align: center;
}

.toggle-btn:after {
   content: "";
   height: 2px;
   border-radius: 6px;
   width: 18px; 
   box-shadow: 0 10px 0 0 #fff;
   position: absolute;
   top: 0;
   left: 0;
   transition: all 0.3s ease-in-out;
   text-align: center;
}

.active .toggle-btn {
   background-color: transparent;
   transition: all 0.2s ease-in-out;
}

.active .toggle-btn:before {
   left: 6px;
   transform: translateY(6px) rotate(-45deg);
}

.active .toggle-btn:after {
   left: 6px;
   transform: translateY(-8px) rotate(45deg);
}

/* Removes Hamburger Menu on larger screeens as it for mobile devices only */
@media (min-width: 769px) {
   #menuToggle, .toggle-btn,.toggle-btn:after,.toggle-btn:before,.block ,.mobile-typing-text {
       display: none;
   }
}




/* ANIMATIONS */

@keyframes slideDown {
   from {
       opacity: 0; /* Start fully transparent */
       transform: translateY(-50px); /* Start 50px above */
   }
   to {
       opacity: 1; /* End fully opaque */
       transform: translateY(0); /* End at its original position */
   }
}

/*     animation: animate 5s linear infinite;
   outline: none; */

@keyframes animate{
   0%,18%,20%,50.1%,60%,65.1%,80%,90.1%,92% {color: #ba901c;
       text-shadow: none;
}
18.1%,20.1%,30%,50%,60.1%,65%,80.1%,90%,92.1%,100%
{
   color: white;
   text-shadow: 0 0 10px #ba901c,
   0 0 20px #ba901c,
   0 0 40px #ba901c,
   0 0 80px #ba901c,
   0 0 160px #ba901c,

}
}

.Contactsec{
   width: 100vw;
   height: 100vh;
   padding-top: 50px;

}
/* CONTACT SECTION */
.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #10a4b0;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #c7faff);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #10a4b0;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 100;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #10a4b0;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #10a4b0;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #10a4b0;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #10a4b0, #00eaff);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #10a4b0;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(45deg, #10a4b0, #b8f9ff);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #000000;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}



@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}
@media (max-width: 480px) {
  .Contactsec{
    height: auto ;

  }}

  /* Stars Background */
.star {
  position: absolute;
  border-radius: 50%;
  background-color: rgb(255, 255, 255); /* Faded white */
  animation: twinkle 2s infinite alternate;
  opacity: 0.2;
  z-index: -1;
}

@keyframes twinkle {
  0% {
      transform: scale(1);
      opacity: 0.5;
  }
  100% {
      transform: scale(1.2);
      opacity: 0.3; /* Faded effect */
  }
}

.dust {
  position: absolute;
  border-radius: 50%;
  background-color: #10a4b0;
  animation: float 5s infinite alternate;
  opacity: 0.4;
  z-index: -1;
}

@keyframes float {
  0% {
      transform: translateY(0);
  }
  100% {
      transform: translateY(-10px);
  }
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Make sure the canvas is behind other content */
}

/* Default styles */
.animated-content {
  opacity: 0; /* Start hidden */
  transform: translateY(20px); /* Start slightly below */
  animation: fadeInUp 2s ease forwards; /* Animation for smooth effect */
  
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Keyframes for the fade-in effect */
@keyframes fadeInUp {
  0% {
     opacity: 0;
     transform: translateY(20px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

/* Additional animations for sub-elements */
.animated-content h2,
.animated-content h3,
.animated-content p {
  opacity: 0; /* Start hidden */
  transform: translateY(10px); /* Start slightly below */
  animation: fadeInUpSub 0.6s ease forwards; /* Sub-element fade-in animation */
}

/* Keyframes for sub-elements */
@keyframes fadeInUpSub {
  0% {
     opacity: 0;
     transform: translateY(10px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

/* Delay for h2 */
.animated-content h2 {
  animation-delay: 0.2s;
}

/* Delay for h3 */
.animated-content h3 {
  animation-delay: 0.4s;
}

/* Delay for p */
.animated-content p {
  animation-delay: 0.6s;
}



footer {
  text-align: center;
  padding: 10px;
  background-color: black;
  color: #fff;
  font-size: 0.8rem;
}