@import url('https://fonts.googleapis.com/css?family=Poppins:80,80i,160,160i,240,240i,320,320i,400,400i,480,480i,560,560i,640,640i,720,720i,800,800i&subset=devanagari,latin-ext');

html{
    scroll-behavior: smooth;
}
/* Style the scrollbar */
::-webkit-scrollbar {
    width: 8px; /* Reduce width by 20% */
}

/* Track (the area behind the thumb) */
::-webkit-scrollbar-track {
    background: #161616; /* Color of the track */
}

/* Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: #363636; /* Color of the thumb */
    border-radius: 4px; /* Rounded corners */
}

/* On hover, style the thumb */
::-webkit-scrollbar-thumb:hover {
    background: #292929; /* Color on hover */
}

/* Reset some default styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Poppins;
    background-color: #111;
    color: #fff;
}

header {
    background-color: #000;
    padding: 22px 0;
    position: fixed;
    width: 100%;
    z-index: 4;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

 .orange-button {
    display: inline-block;
    padding: 5px 10px;
    background-color:#ffa600;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

 .orange-button:hover {
    background-color: #ff7300;
}

.green-p {
    color:#00a84f;
    font-weight: bold;
}




/* Style the video overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)); /* Gradient from transparent to semi-transparent black */
}

/* Style the video */
video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 20px 20px 50px 15px rgb(8, 8, 8);
}

/* Adjust the hero-content position */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content p{
    margin-bottom: 1%;
}

.fadeintosite{
    background: linear-gradient(to top, #000000, rgb(13, 13, 13)); /* Adjust gradient colors */
    height: 56px; /* Reduce height */
    z-index: 2;
}

/* ... (Rest of your CSS) ... */


.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    height: 50px;
}

/* Media query for screens 767px or smaller (typical mobile screens) */
@media screen and (max-width: 767px) {
    nav a{
        font-size: 10px;
    }
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 20px;
    font-size: 14px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

#hero {
    background-image: url('hero-background.jpg'); /* Add your hero background image */
    background-size: cover;
    text-align: center;
}

.hero-content {
    padding: 100px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* ... (Previous CSS Rules) ... */

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00a84f; /* Updated button color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #00612c; /* Slightly different color on hover */
}

/* ... (Previous CSS Rules) ... */


/* Course boxes */
.course-box {
    background-color: #222;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.course-box h3 {
    font-size: 24px;
    color: #fff;
    margin: 0;
}

.course-box p {
    color: #ccc;
    margin: 10px 0;
}



/* ... (Your existing CSS) ... */

/* Style the course outline graph */
.course-outline-graph {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
}

.week {
    flex: 1;
    padding: 20px;
    background-color: #222;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.week h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.week ul {
    list-style: none;
    padding: 0;
}

.week li {
    margin-bottom: 10px;
    color: #ccc;
}

.week li strong {
    color: #fff;
}

/* ... (Rest of your CSS) ... */


/* Add price tag styles */
.course-price {
    display: block;
    font-size: 20px;
    color: #00a84f; /* Price tag color */
    margin-top: 10px;
    font-weight: bold;
}


/* Style the Course Outline button */
.course-outline-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0077b6; /* Button background color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px; /* Adjust the margin as needed */
    transition: background-color 0.3s;
}

.course-outline-button:hover {
    background-color: #005d91; /* Slightly different color on hover */
}







/* Hide the hero section on smaller screens */
#hero {
    display: none;
}

/* Show the hero section on larger screens */
@media screen and (min-width: 768px) {
    #hero {
        display: block;
    }
}

/* Hide the mobile-hero section on larger screens */
.mobile-hero {
    display: block;
}

/* Show the mobile-hero section on smaller screens */
@media screen and (min-width: 768px) {
    .mobile-hero {
        display: none;
    }
}



/* Your existing CSS styles */

/* Responsive header styles */
header {
    background-color: #000;
    padding: 22px 0;
    position: fixed;
    width: 100%;
    z-index: 4;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Add smooth scrolling to navigation links */
nav a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #00d664; /* Change color on hover */
}


/* Responsive hero section styles */
#hero {
    background-image: url('hero-background.jpg'); /* Add your hero background image */
    background-size: cover;
    text-align: center;
    padding: 100px 0;
}

.mobile-hero {
    background-image: url('mobile-hero-background.jpg'); /* Add your mobile hero background image */
    background-size: cover;
    text-align: center;
    padding: 100px 0;
}

/* Responsive content section styles */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px; /* Adjust padding as needed */
    background-color: #222;
}

/* Responsive logo styles */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    height: 50px;
}

/* Your existing CSS styles for buttons, course boxes, etc. */

/* Responsive video overlay styles */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

/* Responsive video styles */
video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 20px 20px 50px 15px rgb(10, 10, 10);
}

/* Additional responsive styles can be added as needed */



/* Footer styles */
footer {
    background-color: #070707;
    color: #fff;
    padding: 24px 0; /* Reduce padding */
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 960px; /* Adjust max-width */
    margin: 0 auto;
}

.footer-logo img {
    width: 160px; /* Adjust the logo size as needed */
    margin-bottom: 8px; /* Reduce margin */
}

.footer-logo h2 {
    font-size: 16px; /* Reduce font size */
    margin: 0;
    align-items: center;
}

.footer-social a {
    display: inline-block;
    margin: 0 8px; /* Reduce margin */
}

.footer-rating img {
    width: 80px; /* Adjust the rating image size as needed */
}

/* Style social icons, you can replace these with your own images */
.footer-social img {
    width: 29px; /* Adjust the size of social icons as needed */
}

/* Add hover effect to social icons */
.footer-social img:hover {
    filter: brightness(1.2); /* Adjust the brightness on hover */
}

.optimize-stable {
    font-size: 8px; /* Reduce font size */
}




/* Styling for the Blog/News section */
#blog {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.blog-post {
    background-color: #222;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.blog-post h3 {
    font-size: 20px;
    color: #fff;
    margin: 0;
}

.blog-post p {
    color: #ccc;
    margin: 10px 0;
}

.blog-post a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #00a84f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.blog-post a:hover {
    background-color: #00612c;
}

/* Styling for the FAQs section */
#faqs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.faq {
    background-color: #222;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.faq h3 {
    font-size: 20px;
    color: #fff;
    margin: 0;
}

.faq p {
    color: #ccc;
    margin: 10px 0;
}


#pdf-previews {
    padding: 50px 0;
    text-align: center;
    border-radius: 13px;
    align-items: center;
}

.pdf-grid {
    display: flex;
    justify-content: center;
}

.pdf-box {
    width: 200px;
    margin: 20px;
    padding: 10px;
    background-color: #222;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
    opacity: 90%;
}

.pdf-box:hover {
    transform: scale(1.05);
}

.pdf-thumbnail {
    width: 200px;
    height: 300px;
    border-radius: 10px;
}

@media screen and (max-width: 767px) {
    .pdf-grid {
        flex-direction: column; /* Stack PDF boxes vertically on mobile */
        align-items: center; /* Center-align the PDF boxes horizontally */
    }

    .pdf-box {
        width: 80%; /* Adjust the width as needed for mobile */
        margin: 20px 0; /* Remove margin on the sides and add spacing between boxes */
    }
}

.pdf-title {
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
}

.pdf-link {
    display: block;
    color: #00a84f;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
}

.pdf-link:hover {
    color: #00612c;
}

.course-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
    background-color: #00a84f;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.5s;
}

.course-link:hover {
    background-color: #00612c;
}


@media screen and (max-width: 767px) {
    /* Center align all boxes on mobile */
    .course-box,
    .week,
    .pdf-box,
    .blog-post,
    .faq,
    .course-outline-graph {
        margin: 0 auto;
        width: 80%;
        margin-bottom: 5%;
    }

    .course-box{
        margin-bottom: 20%;
    }

    /* Stack PDF boxes vertically on mobile */
    .pdf-grid {
        flex-direction: column;
        align-items: center;
    }
}


