@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Calibri;
}


html,
body {
    height: 100%;
    width: 100%;
    line-height: 1.3;
}

.main {
    height: 100%;
    width: 100%;
    position: relative;
}


.nav {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 3vw;
    border-bottom: 1px solid #dadada;
    background: linear-gradient(120deg, #2497e3, #1a1919);
}

.logo {
    height: 100%;
    width: 8vw;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}

.nav-part2 {
    display: flex;
    align-items: center;
    gap: 4vw;
    margin-left: 3.5vw;
}

.nav-part2 a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.7s ease;
    cursor: pointer;
}

.nav-part2 a:hover {
    color: dodgerblue;
}

.nav h4 {
    font-size: 1.45vw;
    font-weight: 600;
}

.button {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.button div {
    font-size: 1.6vw;
    font-weight: 800;
    display: none;
}

button {
    font-weight: 550;
    border: 0.5px solid rgb(0, 0, 0);
    border-radius: 0.5vw;
    width: 5rem;
    padding: 0.3vw 0.5vw;
    cursor: pointer;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
    background-color: #97D2FB;
    font-size: 1.45vw;
    font-weight: 600;
}

button:hover {
    background-color: #76C1F2;
}


@media (max-width: 600px) {

    .nav-part2 {
        position: absolute;
        top: 100px;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: linear-gradient(120deg, #2497e3, #1a1919);
        display: none;
        width: 100%;
        padding: 1rem 0;
    }

    .nav-part2.show-menu {
        display: flex;
        flex-direction: column;
        text-align: center;
        background: linear-gradient(120deg, #2497e3, #1a1919);
        position: absolute;
        top: 100px;
        right: 0;
        width: 100%;
        padding: 1rem 0;
        z-index: 1000;
    }

    .nav {
        background-color: royalblue;
        background: linear-gradient(120deg, #2497e3, #1a1919);
        color: white;
        padding: 0 4vw;
    }

    .logo {
        /* margin-top: auto; */
        padding: 0.1rem 0.1rem;
    }

    .logo {
        height: 100%;
        width: 22vw;
        border-radius: 50%;
        object-fit: cover;
        cursor: pointer;
    }

    .nav-part2 h4 a {
        width: auto;
        font-size: 5vw;
    }

    .button div {
        display: block;
        font-size: 6.5vw;
    }

    .button a {
        display: none;
    }

}




/* Right container styles */
.right {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    margin-left: 26px;
    padding: 0;
}

.right li {
    list-style-type: none;
    margin-left: 16px;
    padding: 0;
    /* Added to remove default padding */
}

.right li a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}

.right li a:hover {
    color: #007BFF;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1,
h2,
h3 {
    color: #fff;
}

/* Header Section */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header p {
    font-family: Playfair Display,Poppins, sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    max-width: 1000px;
    margin: 3vw auto;    
}

.section-header p span {
    font-family: Libre Baskerville, sans-serif;
    font-weight: bolder;
    animation: wipeRight 3s ease-out forwards;
    color: #000;
}

/* Inspirational Quotes */
.inspirational-quotes {
    text-align: center;
    font-style: italic;
    padding: 2vh 4vw;
    font-size: 1.2rem;
}

/* Job Listings */
.job-listings {
    margin-bottom: 40px;
}

.job-listings h2 {
    font-size: 1.5em;
    color: #000000;
    font-family: Merriweather,Roboto, sans-serif;
    display: inline-block;
    animation: pop 3.02s ease-out;
}

.job {
    background: linear-gradient(135deg, #3886b9, #1a1919);
    margin: 15px 0;
    padding: 20px;
    border-radius: 8px;
}

.job h3 {
    font-size: 1.3em;
    font-family: Noto Serif,Poppins,Playfair Display,Poppins, sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
}

.job p {
    margin-bottom: 5px;
}

strong{
    font-weight: 550;
}

/* Apply Now Button */
.apply-now {
    text-align: center;
}
.apply-now p {
font-weight: 600;
}

.apply-now h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.7em;
    margin-bottom: 20px;
    color: #000000;
}

.apply-button {
    display: inline-block;
    background: #328bc6;
    color: #fff;
    padding: 5px 20px;
    text-decoration: none;
    font-size: 1.3em;
    border-radius: 50px;
    transition: background 0.3s ease;
    margin-top: 30px;
}

.apply-button:hover {
    background: #1a1919;
}

@keyframes wipeRight {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes pop {
    0% {
        transform: scale(0.3);
        /* Start smaller */
        opacity: 0;
        /* Invisible */
    }

    50% {
        transform: scale(0.8);
        /* Slightly larger than normal */
        opacity: 1;
        /* Visible */
    }

    100% {
        transform: scale(1);
        /* Back to normal size */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2em;
    }

    .section-header p {
        font-size: 1em;
    }

    .inspirational-quotes p {
        font-size: 1em;
    }

    .job h3 {
        font-size: 1.5em;
    }

    .job p {
        font-size: 1em;
    }

    .apply-button {
        padding: 10px 20px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .section-header h1 {
        font-size: 1.8em;
    }

    .section-header p {
        font-size: 0.9em;
    }


    .job h3 {
        font-size: 1.3em;
    }

    .apply-button {
        font-size: 1.2em;
    }
}


.footer {
    background: linear-gradient(to right, #4c7ca0, #2c3e50);
    color: #ffffff;
    padding: 3rem 5rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-column a {
    display: block;
    color: #e1e1e1;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    margin-bottom: 1.5rem;
    color: #e1e1e1;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-icon {
    color: #ffffff;
    font-size: 1.25rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ffd700;
}

.footer-links {
    color: #e1e1e1;
}

.footer-links a {
    color: #e1e1e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.separator {
    margin: 0 1rem;
    color: #e1e1e1;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .separator {
        display: none;
    }
}


@media (max-width:600px) {
    .info {
        flex-wrap: wrap;
    }

    .info-video {
        height: 50vw;
    }

    #get-to-know {
        font-size: 4vw;
    }

    .center-container {
        padding: 2vh 0;

    }

    .shekhar-quote1 {
        font-size: 1.4rem;
        padding: 0 8.6vw;
    }

    .siati-H p {
        padding: 2vh 0;
    }
}