@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Martel+Sans:wght@200;300;400;600;700;800;900&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Slab:wght@100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Calibri;
}

html,
body {
    height: 100%;
    width: 100%;
}

.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: 768px) {

    .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;
        /* Show when toggled */
        flex-direction: column;
        /* Stack links vertically */
        text-align: center;
        background: linear-gradient(120deg, #2497e3, #1a1919);
        /* Add gradient for mobile view */
        position: absolute;
        top: 100px;
        /* Adjust based on your layout */
        right: 0;
        width: 100%;
        padding: 1rem 0;
        z-index: 1000;
        /* Keep it on top */
    }

    .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;
    }

}

.sliderwrapper {
    position: relative;
    margin: 0 auto;
    height: 23.5em;
    height: 22em;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 20em;
    display: flex;
    aspect-ratio: 16/9;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    position: relative;
    margin-bottom: 0;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: fill;
    animation: slide-animation 30s infinite;
}

.slider-nav {
    display: flex;
    column-gap: 0.5rem;
    position: absolute;
    /* bottom: 0.5rem; */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    bottom: 0.1rem;

}

.slider-nav a {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #000000;
    opacity: 0.75;
    transition: opacity ease 250ms;
}

.slider-nav a:hover {
    opacity: 1;
}

@keyframes slide-animation {
    0% {
        transform: translateX(0%);
    }

    12.5% {
        transform: translateX(-100%);
    }

    25% {
        transform: translateX(-200%);
    }

    37.5% {
        transform: translateX(-300%);
    }

    50% {
        transform: translateX(-400%);
    }

    62.5% {
        transform: translateX(-300%);
    }

    75% {
        transform: translateX(-200%);
    }

    87.5% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }

}

@media (max-width: 600px) {

    .slider-nav {
        bottom: 0.2rem;
    }

}

.siati_quote {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    padding: 0 3rem;
}

#get-to-know {
    border: 0.5px solid rgb(0, 0, 0);
    border-radius: 5rem;
    width: 8rem;
    height: 2.5rem;
    border-style: none;
    cursor: pointer;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
    background-color: #83BCFF;
    font-size: 1.45vw;
    margin-top: 2vw;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.info {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.siati-H p {
    margin-left: 2.2rem;
    color: #67aaf9;
    font-weight: 500;
}

.info-video {
    height: 23vw;
    margin-top: 3vh;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border-style: none;
}

.shekhar-quote1 {
    flex: 1;
    font-weight: 600;
    font-size: 30px;
    padding-left: 40px;
    padding-right: 40px;
    font-family: 'pt sans', sans-serif;
}

.shekhar-quote1 p {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: wipeRight 3s ease-out forwards;
    font-weight: 450;
}

@keyframes wipeRight {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

.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;
    }
}

  
  