@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400..700&family=Baloo+Bhai+2:wght@400..800&family=Caprasimo&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Baloo Bhai 2', 'poppins', 'sans-serif';
    font-size: 14px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Baloo Bhai 2', 'poppins', 'sans-serif';
}

.topnavbar {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background-color: #1b3440;
    flex-wrap: wrap;
    width: 100vw;
    height: auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 57px;
    margin-right: 0.5rem;
}

.logo a {
    color: #4B4BB9;
    margin: 0;
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
}

.search-container {
    display: flex;
    width: 40%;
    max-width: 500px;
    min-width: 200px;
}

.search-container input[type="text"] {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 20px 0 0 20px;
    outline: none;
    color: #1b3440;
}

.search-container input[type="text"]::placeholder {
    color: #777;
}

.search-container button {
    padding: 0.6rem 1rem;
    font-size: 1.1rem;
    background-color: rgb(135, 207, 235);
    border: 0px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    /* color: #111; */
}

.search-container button img {
    height: 22px;
    width: 22px;
}

.search-container button:hover {
    background-color: #ff2b85;
}

.topnavbar nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    text-decoration: none;
}

.topnavbar nav a {
    font-size: 1.2rem;
    text-decoration: none;
    color: skyblue;
    font-weight: bold;
    cursor: pointer;
}

nav ul li a:hover {
    color: #ff2b85;
}

#login {
    background-color: #ff2b85;
    color: white;
    border: 2px solid skyblue;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 9999px;
    margin: 0.4rem;
    margin-left: 0.5rem;
    margin-top: 3.5rem;
    padding: 0.5rem 0.8rem;
    font-family: 'poppins', 'Baloo Bhai 2', sans-serif;
    /* line-height: 1.25rem; */
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 0.5s;
}

#login:hover {
    background-color: skyblue;
    color: #ff2b85;
    border: 2px solid #ff2b85;
}

.image-container {
    position: relative;
    width: 100%;
}

.head-image {
    display: block;
    width: 100%;
    height: auto;
}

.headtitle {
    font-family: "Caprasimo", "Baloo Bhai 2", 'sans-serif';
    font-optical-sizing: auto;
    font-weight: lighter;
    font-style: normal;
    -webkit-text-stroke: 2px black;
    color: white;
    background-color: #ff2b834c;
    text-align: center;
    font-size: 4rem;
    padding: 0.2em 1em;
    border-radius: 1em;
    position: absolute;
    top: 80%;
    left: 30%;
    transform: translate(-115%, -435%);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .topnavbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .search-container {
        width: 100%;
        max-width: 100%;
    }

    .topnavbar nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .headtitle {
        font-size: 4vw;
        top: 75%;
        left: 35%;
    }
}

@media (max-width: 480px) {
    .headtitle {
        font-size: 5vw;
        top: 75%;
        left: 50%;
        width: 70%;
        white-space: normal;
    }

    .search-container input[type="text"] {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .search-container button {
        padding: 0.5rem 0.75rem;
    }

    .topnavbar nav a {
        font-size: 1rem;
    }

    #login {
        font-size: 1rem;
        padding: 0.4rem 0.6rem;
        margin-top: 0.5rem;
    }
}

.heading-left {
    font-family: 'alkatra', "Baloo Bhai 2", 'poppins' 'sans-serif';
    font-size: 2.2rem;
    color: skyblue;
    margin: 0;
    margin-left: 8rem;
    margin-top: 2rem;
    padding-bottom: 5px;
    font-weight: 700;
}

.sub-text {
    font-family: 'Baloo Bhai 2', 'poppins', 'sans-serif';
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 1.2em;
    color: black;
    margin-left: 8rem;
}

.container-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 20px;
}

.image-wrapper-right {
    flex-shrink: 0;
    margin-right: 20px;
}

.image-wrapper-right1 img {
    width: 80vw;
    max-width: 100%;
    height: 50vh;
    object-fit: cover;
    display: block;
    margin-left: 3rem;
}

.image-wrapper-right img {
    width: 35vw;
    max-width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
    margin-left: 3rem;
}

.heading-right {
    font-family: 'alkatra', "Baloo Bhai 2", 'poppins' 'sans-serif';
    font-size: 2.2rem;
    color: #ff2b85;
    margin: 0;
    margin-left: 8rem;
    margin-top: 2rem;
    padding-bottom: 5px;
    font-weight: 700;
}

.container-scroll {
    display: flex;
    width: 100vw;
    align-items: center;
    overflow-x: scroll;
    background-color: azure;
}

.container-scroll::-webkit-scrollbar {
    display: none;
}

.cs {
    min-width: 100%;
    height: 60vh;
    padding: 10rem 15rem;
    display: flex;
    justify-content: center;
    align-items: center;

}

.values-section {
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2.5rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.pill {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1.2rem;
    font-weight: 500;
    border: 2px solid skyblue;
    color: #d70f64;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
}

.pill:not(.active):hover {
    background-color: skyblue;
    color: #d70f64;
    border: 2px solid #d70f64;
    cursor: pointer;
}

@media (max-width: 600px) {
    .values-section {
        padding: 1rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .values-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .values-grid {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .pill {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

.fed-ur-tm {
    background-color: #ff2b85;
    color: white;
    border: 0.2rem solid skyblue;
    font-size: 1.2rem;
    font-weight: 7100;
    cursor: pointer;
    border-radius: 9999px;
    margin: 2rem;
    margin-left: 8rem;
    padding: .75rem 2rem;
    font-family: 'poppins', 'Baloo Bhai 2', sans-serif;
    line-height: 1.25rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 0.4s;
}

.fed-ur-tm:hover {
    background-color: skyblue;
    color: #ff2b85;
    border: 0.2rem solid #ff2b85;
}

body {
    min-height: 150vh;
}

.contact-form-container *,
.contact-form-container *::before,
.contact-form-container *::after {
    box-sizing: border-box;
}

.contact-form-container {
    background-color: rgb(224, 246, 255);
    max-width: 100vw;
    padding: 5rem 20%;
    margin: 2rem auto;
    margin-bottom: 0;
    color: #333;
}

.form-group {
    margin-bottom: 1.25rem;
}

.main-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.heading {
    font-family: "Caprasimo", "Baloo Bhai 2", 'sans-serif';
    font-size: 2.8rem;
    font-weight: lighter;
    text-align: center;
    color: #4B4BB9;
    margin: 0;
    margin-top: 4rem;
    padding-bottom: 2rem;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.name-row {
    display: flex;
    gap: 1rem;
}

.input-group {
    flex: 1;
}

.sub-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.contact-form-container textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #ff2b85;
    color: white;
    border: 0.2rem solid skyblue;
    font-size: 1.2rem;
    font-weight: 7100;
    cursor: pointer;
    border-radius: 9999px;
    padding: .75rem 2rem;
    font-family: 'poppins', 'Baloo Bhai 2', sans-serif;
    line-height: 1.25rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 0.4s;
}

.submit-btn:hover {
    background-color: skyblue;
    color: #ff2b85;
    border: 0.2rem solid #ff2b85;
}

.site-footer {
    background-color: #000;
    color: #fff;
    padding: 50px 5%;
    font-size: 14px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    align-items: baseline;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #4B4BB9;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icons a {
    display: inline-block;
}

.social-icons svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: fill 0.3s ease;
}

.social-icons a:hover svg {
    fill: #4B4BB9;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #aaa;
}

.privacy-link {
    color: #aaa;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #E91E63;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2;
}

@media (max-width: 1200px) {
    .contact-form-container {
        padding: 4rem 15%;
    }

    .heading-left,
    .heading-right {
        margin-left: 4rem;
    }

    .sub-text {
        margin-left: 4rem;
    }

    .fed-ur-tm {
        margin-left: 4rem;
    }
}

@media (max-width: 992px) {
    .container-right {
        flex-direction: column;
        padding: 1rem;
    }

    .image-wrapper-right {
        margin-right: 0;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .image-wrapper-right img {
        width: 100%;
        height: auto;
        margin-left: 0;
    }

    .heading-left,
    .heading-right {
        margin-left: 0;
        text-align: center;
        font-size: 1.8rem;
    }

    .sub-text {
        margin-left: 0;
        text-align: center;
        font-size: 1.1rem;
    }

    .fed-ur-tm {
        margin-left: 0;
        display: block;
        margin: 1rem auto;
    }

    .container-scroll .cs {
        padding: 5rem 2rem;
        flex-direction: column;
        height: auto;
    }

    .image-wrapper-right1 img {
        width: 100%;
        height: auto;
        margin-left: 0;
    }

    .contact-form-container {
        padding: 3rem 10%;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 3rem 5%;
    }

    .name-row {
        flex-direction: column;
        gap: 0;
    }

    .heading {
        font-size: 2rem;
        margin-top: 2rem;
        padding-bottom: 1rem;
    }

    .heading-left,
    .heading-right {
        font-size: 1.5rem;
    }

    .sub-text {
        font-size: 1rem;
    }

    .container-scroll .cs {
        padding: 3rem 1rem;
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 2rem 1rem;
    }

    .heading {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }

    .submit-btn,
    .fed-ur-tm {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .heading-left,
    .heading-right {
        font-size: 1.3rem;
    }

    .sub-text {
        font-size: 0.95rem;
    }

    .container-scroll .cs {
        padding: 2rem 1rem;
    }
}