body {
    font-family: "Gabriela", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #FFFDFF;

}

p {
    font-family: "Cactus Classical Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.navbar-nav li {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 407px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    padding-left: 120px;
    z-index: 1;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #1e1e1e 0%, rgba(30, 30, 30, 0) 100%);
    z-index: 2;
}

.hero-text {
    position: relative;
    font-family: 'Amethysta', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 57px;
    color: #ffedca;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    white-space: pre-line;
    z-index: 3;

}

.contact-wrap {
    position: relative;
    padding-bottom: 100px;
    margin-bottom: 200px;
}

.contact-form {
    margin-top: -250px;
    border-radius: 10px;
    background-color: #fff;
    z-index: 2;
    position: absolute;

}

.bg-light-yellow {
    background-color: #fff1d0;
    font-size: 14px;
}

.btn-send {
    background-color: #f76c5e;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.btn-send:hover {
    background-color: #e75b4d;
    color: white;
}

.india-img {
    max-width: 700px;
    height: 481px;
    position: absolute;
    right: 0;
    bottom: 0;
    height: auto;
    top: 50px;
    border-radius: 20px;
  filter: blur(0.5px);
      -webkit-mask-image: radial-gradient(circle at top left, transparent 0%, black 40%),
                      radial-gradient(circle at top right, transparent 0%, black 40%),
                      radial-gradient(circle at bottom left, transparent 0%, black 40%),
                      radial-gradient(circle at bottom right, transparent 0%, black 40%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

@media (max-width: 992px) {
    .contact-wrap {
        margin-bottom: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-form {
        width: 96%;
        margin-top: 0;
        border-radius: 10px;
        background-color: #fff;
    }

    .india-img {
        width: 100%;
        height: 481px;
        position: unset;
    }
}

@media (max-width: 768px) {

    .navbar-brand span {
        font-size: 14px;
    }

    .hero-section {
        padding-left: 20px;
        height: 300px;
    }

    .hero-text {
        font-size: 32px;
        line-height: 40px;
    }

    .contact-wrap {
        margin-top: 0;
        padding-top: 40px;
    }

    .india-img {
        margin-top: 30px;
    }

}


@media (max-width: 480px) {
    .hero-text {
        font-size: 28px;
        line-height: 34px;
    }

    .section-title {
        font-size: 24px;
        line-height: 30px;
    }


}