body{
    background-image: linear-gradient(
        90deg,
        #062833,
        #02121c,
        #020f17,
        #000000
      );
      height: 100vh;
}

header{
    height: 100vh;
    background-size: cover;
    background-position: center center;
}

.navbar-dark{
    background-color: #101e22;
}

.banner-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width: 100%;
    padding: 0 1rem; /* Add some padding to ensure there's space on smaller screens */
    box-sizing: border-box; /* Ensure padding is included in the element's width */
}
.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn{
    border-radius: 140px;
    border: 1px solid teal;
    color:turquoise;
}
.section{
    background-repeat: no-repeat;
    background-size:contain;
}

  .contact-section{
    background-size: cover;
    padding: 40px 0;
  }
  .contact-section h2{
    text-align: center;
    color: #ddd;
  }
  .border{
    width: 100px;
    height: 10px;
    background: #34495e;
    margin: 30px auto;
  }
  
  .contact-form{
    max-width: 600px;
    margin: auto;
    padding: 0 10px;
    overflow: hidden;
  }
  .card-header{
      background-color: rgb(5, 42, 43);
  }
  .card-body{
      background-color: #032135;
  }
  .contact-form-text{
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 8px 0;
    border: 0;
    background: #111;
    padding: 20px 40px;
    outline: none;
    color: #ddd;
    transition: 0.5s;
  }
  .contact-form-text:focus{
    box-shadow: 0 0 10px 4px #34495e;
  }
  textarea.contact-form-text{
    height: 120px;
  }
  .card:hover{
    box-shadow: 0 0 10px 4px #a4dbd9;  
  }
  
  .contact-form-btn{
    float: right;
    border: 0;
    background: #02393a;
    color: #fff;
    padding: 12px 50px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.5s;
  }
  .contact-form-btn:hover{
    background: #032135;
  }
.btn:hover{
   background: rgb(4, 70, 70);
    border-color: wheat;
    color:whitesmoke;
}
.navbar-brand{
    font-family:big john;
}
.nav-link{
    font-family: poppins;
}
.nav-link:hover{
    background-color: teal;
}


.banner-btn a {
    border: 1px solid teal;
    border-radius: 50px;
    text-transform:uppercase;
    padding: 10px 50px;
    display: inline-block;
    margin-top: 15px;
    color:turquoise;
    font-family: poppins;
    /* color:aqua; */
}
.company-name{
    display: inline-block;
    font-size: 60px;
    font-family: "Ramaraja", serif;
    font-weight: bold;
}
.letter{
    color:teal;
    opacity:0;
    transform: translate(-60px, -60px) rotateX(90deg) rotateY(90deg) scale(0.5);
    animation: flipIn 1.2s ease-out forwards, bounce 0.6s ease-out 1.2s forwards;
    /* transform: translate(0,-100px) rotate(360deg) scale(0);
    animation:animate 5s forwards; */
}

.letter:nth-child(1){
    animation-delay: .1s;
}
.letter:nth-child(2){
    animation-delay: .2s;
}
.letter:nth-child(3){
    animation-delay: .3s;
}
.letter:nth-child(4){
    animation-delay: .4s;
}
.letter:nth-child(5){
    animation-delay: .5s;
}
.letter:nth-child(6){
    animation-delay: .6s;
}
 .letter:nth-child(7){
    animation-delay: .7s;
}
/* .letter:nth-of-type(9){
    animation-delay: .8s;
}
.letter:nth-of-type(10){
    animation-delay: .9s;
} */

@keyframes animate{
    30%{
        transform:translate(0,-30px) rotate(180deg) scale(1);
    }
    60%{
        transform: translate(0,20px) rotate(0deg) scale(.8);
    }
    100%{
        transform: translate(0) rotate(0deg) scale(1);
        opacity: 1;
    }
}

  /* Flip-in & Spin */
  @keyframes flipIn {
    0% {
        opacity: 0;
        transform: translate(-60px, -60px) rotateX(90deg) rotateY(90deg) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translate(10px, 10px) rotateX(-20deg) rotateY(-20deg) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) rotateX(0deg) rotateY(0deg) scale(1);
    }
}

/* Bounce when settled */
@keyframes bounce {
    0% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
    60% { transform: translateY(5px); }
    100% { transform: translateY(0); }
}

.tag-line{
    /* display: inline-block; */
    font-size: 40px;
    font-family: "Ramaraja", serif;
    margin-bottom: 25px;
    /* font-weight: ; */
    color: rgb(18, 94, 94);
}

.contact-button{
    position: relative;
    margin-top: 30px;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    color: teal;
    background: transparent;
    border: 2px solid teal;
    border-radius: 40px;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease, border-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.contact-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 100%;
    background: teal;
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
    z-index: -1;
    border-radius: 50px;
    transform: translate(-50%, -50%);
}

.contact-button:hover::before {
    width: 120%;
    left: 50%;
}

.contact-button:hover {
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

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

.founders {
    padding: 50px 20px;
}

.founders h2 {
    color: burlywood;
}

.founders-container {
    display: flex;
    margin-top: 50px;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.founder-details-card {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease-in-out;
}
.founder-card {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease-in-out;
    max-width: 250px;
}
.founder-card:hover {
    transform: translateY(-10px);
}
.founder-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.founder-card h3 {
    /* font-size: 20px;
    margin-bottom: 10px; */
    color: teal;
}

.founder-card p {
    color: #2a9ea8;
    font-size: 15px;
}


.social-links a {
    color: #00ffff;
    margin: 0 5px;
    font-size: 20px;
    text-decoration: none;
}
.social-links a:hover {
    color: #00cccc;
}

   
   


@media(max-width:1200px){
    .company-name{
        font-size: 50px;
    }
    .tag-line{
        font-size: 30px;
    }
}


@media(max-width:800px){
    .company-name{
        font-size: 45px;
    }
    .tag-line{
        font-size: 25px;
    }
}

@media(max-width:600px){
    .company-name{
        font-size: 40px;
    }
    .tagline{
        font-size: 20px;
    }
}

@media(max-width:500px){
    .company-name{
        font-size: 30px;
    }
    .tagline{
        font-size: 20px;
    }
}

@media(max-width:400px){
    .company-name{
        font-size: 25px;
    }
    .tagline{
        font-size: 15px;
    }
}

/* h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
} */

/* .text-container {
    overflow: hidden;
    display: flex;
} */


.tag-line {
    /* display: inline-block;
    font-size: 3rem;
    color: #009688; */
    opacity: 0;
    transform: translateY(100%);
    animation: riseUp 1.5s ease-in-out forwards;
}

@keyframes riseUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tag-line span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: letterRiseUp 1.5s ease-in-out forwards;
}

@keyframes letterRiseUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* .banner-btn {
    display: inline-block;
    font-size: 3rem;
    color: #009688;
    opacity: 0;
    transform: scale(0.8) rotate(10deg);
    animation: fadeInRotateScale 1.5s ease-in-out forwards;
} */

@keyframes fadeInRotateScale {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(10deg);
    }
    50% {
        opacity: 1;
        color: #004D40;
        transform: scale(1.1) rotate(0deg);
    }
    100% {
        opacity: 1;
        color: #009688;
        transform: scale(1) rotate(0deg);
    }
}

/* .banner-btn span {
    display: inline-block;
    opacity: 0;
    animation: letterAnimation 1.5s ease-in-out forwards;
} */

@keyframes letterAnimation {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(10deg);
    }
    50% {
        opacity: 1;
        color: #004D40;
        transform: scale(1.1) rotate(0deg);
    }
    100% {
        opacity: 1;
        color: #009688;
        transform: scale(1) rotate(0deg);
    }
}
