/*Nav + body˙*/
body {
  background-color:black;
}
/* Adjustments for Navbar */
.navbar-brand img {
height: 50px;
}

.navbar-nav .nav-link {
color: #00ffdd;
margin-right: 1rem;
}

.navbar-nav .nav-link:hover {
color: #01aa93;
}

.navbar-logo-text {
color: #ffffff;
font-family: 'Outfit', sans-serif;
font-size: large;
font-weight: bold;
text-transform: uppercase;
}

#logo {
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-self: center;
}

.navbar-nav {
align-items: center;
}

.navbar-toggler {
background-color: #6fe9ff;
opacity: 0.8;
}

/*cta*/
.cta-section {
  color: white;
  padding: 4rem 0;
  height:100dvh;
  display:flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-text {
  font-family: 'Gill Sans', 'Gill Sans MT','Trebuchet MS', sans-serif;
  font-size: 1rem;
  margin-bottom: 2rem;
  padding:0 2rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}


@keyframes wipeToRight {
  0% {
    transform: scaleX(0); /* Start with no width */
    transform-origin: left;
    opacity: 0;
  }
  100% {
    transform: scaleX(1); /* Full width */
    transform-origin: left;
    opacity: 1;
  }
}

#modr {
  background:none !important;
  border:1.5px solid rgb(85, 249, 255);
  border-radius: 15px;
  margin-top: 0.5rem;
  transform: scale(1.4);
}
.ctabtn {
  display: inline-block;
  background-color: rgba(83, 215, 255, 0.887);
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  margin:0.4rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
  z-index: 1; /* Ensure button text appears above overlay */
}

.ctabtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border:none;
  height: 100%;
  background-color: rgba(83, 215, 255, 0.887); /* Overlay for animation */
  transform-origin: left;
  transform: scaleX(0);
  z-index: -1;
  pointer-events: none;
}

.ctabtn:hover::before {
  animation: wipeToRight 0.5s forwards; /* Play animation on hover */
}


.arrow-container {
  margin-top: 30px;
}

.arrow-container img {
  max-width: 50px;
  animation: bounce 3s infinite;
}

.position-below {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
}
40% {
    transform: translateY(-25px);
}
60% {
    transform: translateY(-20px);
}
}


/*marketing*/

.marketing-section {
  padding: 2rem;
  border-radius: 20px;
}
.marketing-item {
  background-color: rgba(53, 52, 52, 0.267);
  border-radius: 0.5rem;
  margin: 20px;
  padding: 1rem;
  transition: transform 0.3s ease-in-out, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(50px);
}
.marketing-item:hover{
  cursor: pointer;
  transform: scale(1.1) !important;
  transition-duration: 0.5s ease;
}

.marketing-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.marketing-title {
  font-family: 'Outfit', sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1rem;
}

.marketing-title-header {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: aqua;
  margin-bottom: 1rem;
}
.marketing-description {
  font-size: 1rem;
  color: #6c757d;
  font-family:'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
}




/* Benefits Section */

.benefit-container{
background-color: black;
margin:2rem;
padding:10px;
border-radius: 20px;
border:1px solid aqua;
}
.benefit-item {
background-color:rgba(53, 52, 52, 0.267);
border-radius: 0.5rem;
margin:20px;
transition: transform 0.3s ease-in-out;
opacity: 0; 
transform: translateY(50px); 
}
.benefit-item.visible {
opacity: 1; 
transform: translateY(0); 
transition: opacity 0.6s ease, transform 0.6s ease; 
}

.benefit-item:hover {
transform: translateY(-10px);
box-shadow:5px 5px 10px aqua;
cursor:pointer;
}

.benefit-title {
font-family: 'Outfit', sans-serif;
font-weight: bold;
font-size: 1.25rem;
color: white;
}

.benefit-description {
font-size: 1rem;
color: #6c757d;
font-family: 'Gill Sans', 'Gill Sans MT','Trebuchet MS', sans-serif;
}



/* Contact */

.contact-container {
max-width: 100%;
background-color: black;
border-radius: 0.625rem;
overflow: hidden;
margin: 2rem auto;
padding: 2rem;
opacity: 0; 
transform: translateY(50px); 
transition: opacity 0.6s ease, transform 0.6s ease; 
}

.contact-heading{
font-size: 2.5rem;
color:aqua;
text-transform: uppercase;
}
.contact-text-container {
max-width: 100%;
color:white;
padding:1rem;
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT','Trebuchet MS', sans-serif;
}

.hrcontact{
border:3px solid aqua;
opacity: 0.63;
margin:1.5rem 2rem;
}

.contact-container.visible {
opacity: 1; 
transform: translateY(0); 
}

.contact-form .form-control.custom-input {
background-color: #5d545468;
color: white;
border: none;
border-radius: 0.3125rem;
padding: 0.625rem;
margin-bottom: 0.5rem; 
width: 100%;
}

.contact-form .form-control.custom-input::placeholder {
color: #b5b5b5;
}

.contact-form .form-control.custom-input:focus {
outline: none;
box-shadow: 0 0 0 0.25rem rgba(131, 225, 253, 0.887);
}

.text-white {
color: rgba(255, 255, 255, 0.925);
}

.d-grid {
margin-top: 2rem;
}

@media (max-width: 767.98px) {
.contact-container {
  padding: 1rem;
}
}

@media (min-width: 768px) {
.contact-container {
  padding: 2rem;
}
}

/* SendToContact */
.sendToContact {
  height: 15rem;
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sendToContact.visible {
  opacity: 1;
  transform: translateY(0);
}

.send-text {
  font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
  font-size: 1.75rem;
  font-weight: bold;
  text-transform: capitalize;
}



/* Footer */
.footer {
  color: rgba(255, 255, 255, 0.925);
  padding: 1rem 0;
}

.footer p {
  margin: 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.925);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffca2c;
}


/* privacy */
.privacy-container{
  max-width: 100%;
  background-color: black;
  border-radius: 0.625rem;
  overflow: hidden;
  margin: 2rem auto;
  margin-top:1rem;
  padding: 2rem;
  color : white;
}




/*general*/
h2 {
  font-family: 'Outfit',sans-serif;
}