* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
            .header-images {
            width: 95%;
            height: 90%;
            margin-bottom:1.5rem;
        }
        /* css for hero */
        .ibutn{
            padding:4px !important;
        }
        .butn {
            display:grid !important;
        }
        .desk{
            display:none;
        }
        
        .mobilee{
            display:block !important;
        }
        h1{
            font-size:4rem !important;
        }
        h3 {
            font-size:2rem !important;
            margin-top:5px !important;
        }
        .card-text{
            font-size:3rem !important;
        }
        .type{
            font-size:3rem !important;
        }
        .res-btn{
            display:block !important;
        }
        .mt-3{
            margin-top:0.2rem !important;
        }
        .top-mg {
            margin-top:20px;
            margin-bottom:20px;
        }
        .why-join-details{
            flex-direction: column !important;
        }
        }
        .res-btn{
            display:flex !important;
        }
        .gktopper {
            font-size: larger; color:#1d3c7f;
        }
        .bbox {
    padding: 20px;
    margin: 10px;
    background-color: darkblue;
    color: white;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
        }
.butn{
    display:flex;
}
.ibutn{
    padding:10px;
    background:#141452!important;
    color:white;
    margin:5px;
    border-radius:10px;
    text-align:center;
}
.ibutn {
  position: relative;
  display: inline-block;
  background-color: #ff6600;
  color: white;
  padding: 0.7rem 1.5rem;
  margin: 5px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease;
  white-space: nowrap;
  border:1px solid;
}

.ibutn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-20deg);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

.card-img-overlay{
    padding:2rem !important;
}
.type{
     font-size: 2rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid white;
  font-weight:700;
  color:darkblue;
}
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

.cta {
    padding:10px;
    background: #ff6600;
    color:white;
    width:fit-content;
    margin:5px;
    border-radius:5px;
    box-shadow:rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.card-text{
    font-size: 2rem;
    font-weight: 600;
}
.mobilee{
    display:none;
}
.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.card {
    float:none !important;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    padding-bottom:10px !important;
}
.img-fluid {
    max-width: 100%;
 
  height: auto;
}
 /**/
  /* Custom styles for smoother transitions and font */
        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden; /* Prevent horizontal scroll due to animations */
        }
        

        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }
        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .scale-in.appear {
            opacity: 1;
            transform: scale(1);
        }
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .slide-in-left.appear {
            opacity: 1;
            transform: translateX(0);
        }
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .slide-in-right.appear {
            opacity: 1;
            transform: translateX(0);
        }

        /* FAQ Accordion */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .faq-answer.open {
            max-height: 200px; /* Adjust based on expected content height */
            transition: max-height 0.5s ease-in;
        }
        .faq-question {
            cursor: pointer;
        }