@font-face {
    font-family: "SketchFont";
    src: url("font/Family.ttf") format("truetype");
}

body {
    margin: 0;
    padding: 0;
    font-family: "SketchFont", sans-serif;
    background: linear-gradient(to bottom, #e3f2fd, #f0f4f8);
    color: #333;
    overflow-x: hidden;
}

header {
    background-color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: 40px;
    margin-right: 10px;
}

.btn-custom {
    background-color: #2563eb;
    border: none;
    padding: 0.75rem;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-custom:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    color: #f1eeee;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #dfe9f3, #ffffff);
    padding: 2rem;
}

.cloud {
    position: absolute;
    opacity: 0.7;
    animation: float 10s linear infinite, drift 5s linear infinite alternate;
}

.cloud img {
    width: 100%;
    display: block;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes drift {
    0% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(20px);
    }
}

.cloud:nth-child(1) {
    top: 0%;
    left: 1%;
    animation-delay: 0s;
    width: 170px;
}

.cloud:nth-child(2) {
    top: 5%;
    right: 5%;
    animation-delay: 2s;
    width: 160px;
}

.cloud:nth-child(3) {
    top: 20%;
    left: 5%;
    animation-delay: 4s;
    width: 150px;
}

.cloud:nth-child(4) {
    top: 20%;
    right: 5%;
    animation-delay: 1s;
    width: 120px;
}

.cloud:nth-child(5) {
    top:10%;
    left: 10%;
    animation-delay: 3s;
    width: 165px;
}

.cloud:nth-child(6) {
    top: 0%;
    right: 20%;
    animation-delay: 5s;
    width: 150px;
}

.loader {
    display: none;
    margin: 20px auto;
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #007bff;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.success-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #28a745;
    background-color: #d4edda;
    color: #155724;
    border-radius: 5px;
}

.faq-section {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 100px !important;
    padding: 20px;
    background: linear-gradient(135deg, #007bff, #8b8b8b);
    border-radius: 10px;
    color: white;
}

.faq-section h2 {
    text-align: start;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff8f0;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    border: none;
    padding: 15px 20px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}



.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 20px;
    border-radius: 5px;
    margin-top: 5px;
}

.faq-answer p {
    margin: 10px 0;
    font-size: 1.9rem;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

.faq-item.open .toggle-icon {
    transform: rotate(45deg);
}


input {
    height: 95px;
}

.form-box {
    padding: 2rem;
    max-width: 500px;
    margin-bottom: 100px;
    width: 90%;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    border: 5px solid;
}

.twitter_logo {
    filter: invert(1);
    width: 20px;
}



.form-box h3 {
    color: #2563eb;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
}

.btn-submit {
    background-color: #2563eb;
    border: none;
    padding: 0.75rem;
    color: #fff;
    border-radius: 8px;
    width: 100%;
    letter-spacing: 2px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    color: #e2e2e2;
}

.ocean {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #2563eb;
    overflow: hidden;
}

.wave {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1000% 1000% 0 0;
    position: absolute;
    left: 0;
    width: 120%;
    height: 150px;
    animation: wave 8s ease-in-out infinite;
    opacity: 0.8;
}

.wave:nth-of-type(2) {
    bottom: -60px;
    animation: wave 12s ease-in-out reverse infinite;
    opacity: 0.6;
}

.wave:nth-of-type(3) {
    bottom: -70px;
    animation: wave 16s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}


@media (max-width: 768px) {
    .faq-answer p {
            margin: 10px 0;
            font-size: 1.2rem !important;
            line-height: 1.6;
        }
    .hero {
        min-height: 90vh;
    }

    .cloud:nth-child(1) {

        width: 87px;
    }

    .cloud:nth-child(2) {

        width: 87px;
    }

    .cloud:nth-child(3) {

        width: 87px;
    }

    .cloud:nth-child(4) {

        width: 87px;
    }

    .cloud:nth-child(5) {
        display: none !important;
    }

    .cloud:nth-child(6) {
        display: none !important;
    }
}