/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.pdf {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
}




/* PDF Button */


/* Links */


.serPHYS {

    color: #000000;

    font-size: 1.2rem;

    font-weight: bolder;
}

.linkedin {
    color: #0d72b6;
    font-size: 1.2rem;
    font-weight: bolder;
}

/* Header */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 32px;
    font-weight: bolder;
    text-decoration: none;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-content {
    text-align: center;
    padding: 80px 20px;
    background-color: #3498db;
    color: #fff;
}

.hero-content h1 {
    font-size: 34px;
    margin: 0;
}

.hero-content p {
    font-size: 18px;
    margin: 10px 0;
}

.hero-button {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    border: none;
}

.hero-button:hover {
    background-color: #c0392b;
    border: 2px solid #000;
}

/* Section Styles */
.section {
    padding: 40px 20px;
    text-align: center;
}

.section.bg-light {
    background-color: #efececaf;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
}

.containerGray {
    background-color: #efececaf;
    padding: 30px 0;
}

.left_alignment {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    padding-left: 8%;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
}

footer p {
    margin: 0;
}

/* Slider */
.slider {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
    background-color: rgb(43, 119, 226);
    padding: 20px;
    border: 2px solid #000;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    border-radius: 30px;
    text-align: center;
}

.slider:hover {
    position: relative;
    margin: 20px auto;
    overflow: hidden;
    background-color: rgb(43, 119, 226);
    padding: 25px;
    border: 4px solid #000;
    font-size: 25px;
    font-weight: bolder;
    color: #fff;
    border-radius: 30px;
    text-align: center;
}

.slide {
    display: none;
}

.slide iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.slider-nav {
    text-align: center;
    margin-top: 10px;
}

.slider-nav button {
    padding: 10px 20px;
    margin: 5px;
    background-color: #3498db;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.slider-nav button:hover {
    background-color: #2980b9;
}

/* Responsive Styles */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }



    .nav-links {
        display: block;
        width: 100%;
    }

    .nav-links a {
        display: block;
        margin: 10px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section h2 {
        font-size: 28px;
    }

    .slide iframe {
        height: 500px;
    }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
    .hero-content {
        padding: 60px 10px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .section h2 {
        font-size: 24px;
    }

    .slide iframe {
        height: 400px;
    }


}

/* Mobile Portrait (max-width: 576px) */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .section h2 {
        font-size: 20px;
    }

    .slide iframe {
        height: 300px;
    }


    .logo {
        font-size: 28px;
    }
}

/* Very Small Devices (max-width: 360px) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 10px;
    }

    .section h2 {
        font-size: 18px;
    }


}
