/* ==========
project-hero
========== */

.project-hero {
    height: 100vh;
    /* background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085") center/cover no-repeat; */
    /* background: url("/Assetes/IMG/susheel.webp") center/cover no-repeat; */
    background-attachment: fixed;
    position: relative;
    /* background-position: 100%; */
    /* background-size: 50vh; */
}

.about-hero {
    height: 100vh;
    /* background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085") center/cover no-repeat; */
    /* background: url("/Assetes/IMG/susheel.webp") center/cover no-repeat; */
    background-attachment: fixed;
    position: relative;
    /* background-position: 100%; */
    /* background-size: 50vh; */
}

.hero-overlay {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    background: rgb(0 0 0 / 8%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    flex-direction: column;
}

.hero-content {
    max-width: 800px;
    /* color: white; */
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 10px;
}

.hero-content h1 span {
    color: var(--highlight-color, #00eaff);
}

.hero-content h2 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 20px;
    /* color: #bbbbbb; */
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    /* color: #e5e5e5; */
}

/* Buttons */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 30px;
    background: #00eaff;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
}

.btn-outline {
    padding: 12px 30px;
    border: 2px solid #00eaff;
    color: #00eaff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #00eaff;
    color: black;
    transform: translateY(-3px);
}

/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
}

.scroll-indicator span {
    display: block;
    width: 25px;
    height: 40px;
    border: 2px solid var(--a-color);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::after {
    content: "";
    width: 4px;
    height: 8px;
    background: var(--text);
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    border-radius: 5px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 8px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}
















.faq-section{
    max-width:900px;
    margin:auto;
    padding:60px 20px;
}

.faq-title{
    font-size:32px;
    text-align:center;
    margin-bottom:10px;
}

.faq-subtitle{
    text-align:center;
    margin-bottom:40px;
    color:#777;
    color: var(--a-color);
}

.faq-item{
    border-bottom:1px solid #ddd;
}

.faq-question{
    width:100%;
    padding:18px;
    font-size:18px;
    background:none;
    border:none;
    text-align:left;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color: var(--text);

}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:0.4s;
    padding:0 18px;
    color:#555;
    color: var(--text);
}

.faq-item.active .faq-answer{
    max-height:200px;
    padding-bottom:15px;
}