*{
  font-family: 'Space Grotesk', sans-serif;
}

.squada-one-regular {
  font-weight: 400;
  font-style: normal;
}


.header--logo img{
  width: 180px;
}



/* HOME BANNER LAYOUT */

.intro--banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.intro--banner h1{
  display:block;
  margin-bottom:25px;
  width:100%;
  line-height: 1.2;
  font-size: 60px;
}

.intro--banner .cta{
  display:inline-block;
  margin-top:-100px;
  width:100%;
  max-width:220px;
}

.intro--banner img{
  max-width:850px;
  margin-right: -350px;
  margin-bottom: -90px;
  z-index: -100;
}



/* .slider h4{
    width: 200px;
} */

#abtus h2{
  line-height: 1.2;
  font-size: 60px;
}

.about--options {
  margin-top: -100px;
}

.about--options p{
  width: 500px;
  font-size: 16px;
  text-align: justify;
  margin-top: -30px;
}

.about--banner img{
  width: 800px;
  margin-right: -250px;
  margin-bottom: 50px;
  z-index: -100;
}

/* careeer */

#careers .career-text h1{
  margin-top: -30px;
  line-height: 1.2;
  font-size: 60px;
}


#careers img{
  position: relative;
  bottom: 5%;
  left: 5%;
  width: 500px;
}
   
 /* contact */

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Modal Container */
  .modal {
    width: 90%;
    max-width: 400px;
    /* background: rgba(0, 0, 0, 0.85); */
    padding: 40px 30px;
    border-radius: 12px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); */
    margin: 40px auto;
    margin-top: -50px;
  }

  /* Heading */
  .modal h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
  }

  /* Paragraph */
  .modal p {
    color: #cccccc;
    text-align: center;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
  }

  /* Input Container */
  .inputs {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
 

  /* Inputs & Textarea */
  .inputs input,
  .inputs textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 14px;
    background: #f2f2f2;
    transition: 0.3s ease;
  }

  /* Focus Effect */
  .inputs input:focus,
  .inputs textarea:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px #4da6ff;
  }

  /* Textarea */
  .inputs textarea {
    min-height: 100px;
    resize: none;
  }

  .inputs input,
  .inputs textarea{
    color: black;
  }

  /* Button */
  .inputs button {
    padding: 12px;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    background: #1a8cff;
  }

  .inputs button:hover {
    background: #1a8cff;
    transform: translateY(-2px);
  }

  .inputs button:active {
    transform: scale(0.98);
  }

  #contacts{
    margin-left: 100px;
  }


/* Prevent modal shrinking */

.contact--lockup iframe{

  height: 350px;
  width: 500px;
}

.contact--lockup .modal {
  flex-shrink: 0;
  width: 400px; /* Adjust if needed */
}



/* Position social icons without affecting layout */
.smicons {
  position: absolute;
  bottom: 80px;
  display: flex;
  gap: 15px;
  margin-left: 61%;
  margin-bottom: 20px;
}

.smicons img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.smicons img:hover {
  transform: scale(1.2);
}



/* Hide side nav on mobile and tablet */
@media (max-width: 1024px) {
  .l-side-nav {
    display: none;
  }
}


.about--banner button {
  position: relative;
  padding: 5px 17px 5px 12px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  margin-bottom: 10px;
}

.about--banner button .btn-background {
  position: absolute;
  top: 0;
  left: 23px;
  right: 0;
  height: 100%;
  background-color: #0f33ff;
  z-index: -1;
  transition: left .2s ease-in-out;
}

.about--banner button:hover .btn-background {
  left: 0;
}

.about--banner button:focus {
  outline: none;
}

.about--banner button svg {
  position: relative;
  left: 5px;
  width: 15px;
  fill: #fff;
}









/* ===== CUSTOM ALERT ===== */
.alert-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 35, 0.8);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 9999;
}

.alert-box.show {
  visibility: visible;
  opacity: 1;
}

.alert-content {
  background: linear-gradient(135deg, #1e1e3f, #2a2a5a);
  color: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 340px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  animation: popup 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.alert-icon {
  font-size: 40px;
  color: #00ffae;
  margin-bottom: 10px;
}

.alert-content h3 {
  margin-bottom: 10px;
}

.alert-content p {
  font-size: 14px;
  opacity: 0.8;
}

/* Button */
.alert-content button {
  margin-top: 20px;
  padding: 10px 25px;
  border: none;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.alert-content button:hover {
  transform: scale(1.05);
}

/* Animation */
@keyframes popup {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
