@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

.goog-logo-link,
.goog-te-gadget {
    display: none !important;
}
body {
    background-color: #FFFFFF;
    top: 0 !important;
    width: 100%;
    font-family: "Noto Sans", sans-serif;
    transition: background-color 0.3s ease;
}

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo a {
    text-decoration: none;
}

.logo h2 {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.logo h2 span {
    color: #1fc1ff;
}

.logo h2:hover {
    color: #1fc1ff;
}
.logo h2:hover span {
    color: #333;
}
.menu {
    display: flex;
    align-items: center;
}

.menu-heading a {
    display: none;
}

.nav-link {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link li {
    margin-left: 20px;
    transition: transform 0.2s ease;
}

.nav-link li:hover {
    transform: translateY(-2px);
}

.nav-link li:first-child {
    margin-left: 0;
}

.nav-link li a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link li a:hover,
.nav-link li a.active {
    color: #1fc1ff;
    background-color: rgba(28, 193, 255, 0.1);
    box-shadow: 0 2px 5px rgba(28, 193, 255, 0.2);
}

.menu-toggle {
    font-size: 1.5rem;
    color: #1fc1ff;
    cursor: pointer;
    display: none;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: #333;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100%;
        background: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .menu.active {
        left: 0;
    }

    .nav-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-link li {
        margin: 10px 0;
    }

    .nav-link li a {
        font-size: 1.1rem;
        display: block;
        padding: 10px;
    }

    .menu-toggle {
        display: block;
    }
}

/* Home Section Styles */
#home {
    padding: 100px 100px;
    text-align: center;
    transition: background 0.3s ease;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('/images/3.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: backgroundAnimation 10s infinite alternate;
    height: 600px;
}

#home * {
    z-index: 0;
}

    

   

@keyframes backgroundAnimation {
    0% {
        filter: brightness(100%);
    }
    30%{
        filter: brightness(80%);
    }
    50% {
        filter: brightness(50%);
    }
    70% {
        filter: brightness(80%);
    }
    100% {
        filter: brightness(100%);
    }
}
.home-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.home-text {
    padding: 20px;
}

.home-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.home-text h2 span {
    color: #1fc1ff;
}

.home-text h2:hover {
    color: #0b7fab;
}

.home-text p {
    font-size: 1rem;
    color: #111;
    line-height: 1.6;
    margin-bottom: 30px;
}

.start-learning {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1fc1ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin: 20px auto;
    position: relative;
    top: 100px;
}

.start-learning:hover {
    background-color: #0b7fab;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.slider {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.slides {
    width: 500%;
    height: 100%;
    display: flex;
}

.slides input {
    display: none;
}

.slide {
    width: 20%;
    transition: 2s;
}
.slide img {
    width: 90%;
    height: auto;
    max-height: 500px;
    object-fit: cover;  
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.slide img:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.navigation-manual {
    position: absolute;
    width: 100%;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}

.manual-btn {
    border: 2px solid #40D3DC;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child) {
    margin-right: 40px;
}

.manual-btn:hover {
    background: #40D3DC;
}

#radio1:checked ~ .first {
    margin-left: 0;
}

#radio2:checked ~ .first {
    margin-left: -20%;
}

#radio3:checked ~ .first {
    margin-left: -40%;
}

#radio4:checked ~ .first {
    margin-left: -60%;
}

.navigation-auto {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 460px;
}

.navigation-auto div {
    border: 2px solid #40D3DC;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}

.navigation-auto div:not(:last-child) {
    margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1,
#radio2:checked ~ .navigation-auto .auto-btn2,
#radio3:checked ~ .navigation-auto .auto-btn3,
#radio4:checked ~ .navigation-auto .auto-btn4 {
    background: #40D3DC;
}
/* resourses */
.resources h2{
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    transition: background-color 0.3s;
}
.resources:hover{
    background-color: #f0f0f0;
}
.resources p{
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}
.resources-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.card {
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: filter 0.3s;
}

.card:not(.free-card).locked img {
    filter: blur(5px);
}

.lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #ff6347; /* Tomato color */
    opacity: 1;
    transition: opacity 0.3s;
}

.card:not(.free-card).unlocked .lock-icon {
    opacity: 0;
}

.card-content {
    padding: 15px;
}

.card h3 {
    margin: 10px 0;
}

.card p {
    color: gray;
}

.card button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.card button:hover {
    background-color: #0056b3;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .resources h2 {
        font-size: 2rem;
    }

    .resources p {
        font-size: 1rem;
    }
    .resources-container {
flex-direction: column;    }

    .card {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .resources h2 {
        font-size: 2rem;
    }

    .resources p {
        font-size: 1rem;
    }
    .resources-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .resources h2 {
        font-size: 1.5rem;
    }

    .resources p {
        font-size: 0.8rem;
    }
    .resources-container {
        grid-template-columns: 1fr;
    }

    .card {
        width: 100%;
    }
}
@media (max-width: 1024px) {

    .home-text h2 {
        font-size: 2rem;
    }

    .home-text p {
        font-size: 1rem;
    }

    .start-learning {
        font-size: 1rem;
        padding: 10px 25px;
    }

    .slider {
        height: 400px;
    }

    .slide img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    #home{
        height: auto;
    }
    .home-content {
       
        flex-direction: column;
    }
    .home-text h2 {
        font-size: 1.8rem;
    }

    .home-text p {
        font-size: 0.9rem;
    }

    .start-learning {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .slider {
        height: 300px;
    }

    .slide img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .home-text h2 {
        font-size: 1.5rem;
    }

    .home-text p {
        font-size: 0.8rem;
    }

    .start-learning {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .slider {
        height: 200px;
    }

    .slide img {
        height: 200px;
    }
}
/* About Section Styles */
#about {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#about:hover {
    background-color: #f0f0f0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#about h1 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

#about h1 span {
    color: #1fc1ff;
}

#about h1:hover {
    color: #0b7fab;
}

.about-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.about-content p span {
    font-weight: bold;
    color: #1fc1ff;
}

.about-content h6 {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.about-image {
    margin-top: 30px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

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

/* Media Query for Responsiveness */
@media (min-width: 768px) {
    #about {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .about-content {
        width: 60%;
        text-align: left;
    }

    .about-image {
        width: 30%;
        margin-top: 0;
    }

    #about h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    #about {
        padding: 40px 15px;
    }

    .about-content {
        padding: 15px;
    }

    #about h1 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .about-content h6 {
        font-size: 0.8rem;
    }

    .about-image {
        width: 70%;
    }
}

/* Blog Section */
.blog {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    transition: background 0.3s ease;
}

.blog:hover {
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
}

.blog h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2d3e50;
    transition: color 0.3s ease;
}

.blog h2:hover {
    color: #1fc1ff;
}

.blog h2 span {
    color: #1fc1ff;
}

.blog p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.blog-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 85%;
    margin: auto;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: calc(30% - 30px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

.blog-info {
    padding: 25px;
    text-align: left;
}

.blog-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2d3e50;
    transition: color 0.3s ease;
}

.blog-info h3:hover {
    color: #1fc1ff;
}

.blog-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #1fc1ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.read-more-btn:hover {
    background-color: #0b7fab;
    transform: scale(1.05);
}

.explore-more {
    display: inline-block;
    margin-top: 40px;
    text-decoration: none;
    background-color: #1fc1ff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-more:hover {
    background-color: #0b7fab;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .blog-cards {
        width: 95%;
    }

    .blog-card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .blog h2 {
        font-size: 2rem;
    }

    .blog p {
        font-size: 1rem;
    }

    .blog-card {
        width: 100%;
    }
}

/* Footer Styling */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    flex: 1;
    margin-bottom: 20px;
    padding: 0 15px;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background-color: #3498db;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    display: block;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.subscribe input[type="email"] {
    padding: 12px;
    width: 70%;
    margin-top: 15px;
    margin-right: 0;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
}

.subscribe button {
    padding: 12px 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.subscribe button:hover {
    background-color: #2980b9;
}

.social-icons {
    margin-top: 25px;
    text-align: left;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons i {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: #3498db;
}

.language-select {
    margin-top: 20px;
    padding: 10px;
    border: none;
    background-color: #34495e;
    color: #fff;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.language-select:hover {
    background-color: #2c3e50;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #95a5a6;
    font-size: 0.9em;
}

.company-name {
    color: #fff;
    font-weight: bold;
}



/* terms and conditions */
.terms-conditions {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 100px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.terms-conditions h1,
.terms-conditions h2,
.terms-conditions h3 {
    color: #333;
}

.terms-conditions h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.terms-conditions h2 {
    font-size: 2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.terms-conditions h3 {
    font-size: 1.5em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.terms-conditions p {
    margin-bottom: 15px;
    color: #555;
}

.terms-conditions ul {
    list-style-type: disc;
    margin-left: 20px;
}

.terms-conditions ul li {
    margin-bottom: 10px;
}

.terms-conditions a {
    color: #007BFF;
    text-decoration: none;
}

.terms-conditions a:hover {
    text-decoration: underline;
}

/* privacy and policy */
.Privacy-Policy {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 100px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.Privacy-Policy h1,
.Privacy-Policy h2,
.Privacy-Policy h3,
.Privacy-Policy h4 {
    color: #333;
}

.Privacy-Policy h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.Privacy-Policy h2 {
    font-size: 2em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.Privacy-Policy h3 {
    font-size: 1.5em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.Privacy-Policy h4 {
    font-size: 1.2em;
    margin-top: 10px;
    margin-bottom: 10px;
}

.Privacy-Policy p {
    margin-bottom: 10px;
}

.Privacy-Policy ul {
    list-style-type: disc;
    margin-left: 20px;
}

.Privacy-Policy ul li {
    margin-bottom: 10px;
}

.Privacy-Policy a {
    color: #007BFF;
    text-decoration: none;
}

.Privacy-Policy a:hover {
    text-decoration: underline;
}

.disclaimer {
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
    font-family: Arial, sans-serif;
    margin-top: 100px;
}

.disclaimer h1,
.disclaimer h2,
.disclaimer h3 {
    color: #2c3e50;
}

.disclaimer p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.disclaimer ul {
    list-style-type: disc;
    margin-left: 20px;
}

.disclaimer ul li {
    margin-bottom: 10px;
}

.disclaimer a {
    color: #3498db;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .disclaimer {
        padding: 15px;
    }

    .disclaimer h1 {
        font-size: 1.8em;
    }

    .disclaimer h2 {
        font-size: 1.5em;
    }

    .disclaimer h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .disclaimer {
        padding: 10px;
    }

    .disclaimer h1 {
        font-size: 1.5em;
    }

    .disclaimer h2 {
        font-size: 1.2em;
    }

    .disclaimer h3 {
        font-size: 1em;
    }
}

/* Responsive Styling */
@media (max-width: 768px) {

    .terms-conditions,
    .Privacy-Policy {
        padding: 20px;
        max-width: 800px;
        margin: 0 auto;
        margin-top: 100px;
        font-family: Arial, sans-serif;
        line-height: 1.6;
    }

    .terms-conditions h1,
    .Privacy-Policy h1 {
        font-size: 2em;
    }

    .terms-conditions h2,
    .Privacy-Policy h2 {
        font-size: 1.5em;
    }

    .terms-conditions h3,
    .Privacy-Policy h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {

    .terms-conditions,
    .Privacy-Policy {
        padding: 20px;
        max-width: 800px;
        margin: 0 auto;
        margin-top: 100px;
        font-family: Arial, sans-serif;
        line-height: 1.6;
    }

    .terms-conditions h1,
    .Privacy-Policy h1 {
        font-size: 1.5em;
    }

    .terms-conditions h2,
    .Privacy-Policy h2 {
        font-size: 1.2em;
    }

    .terms-conditions h3,
    .Privacy-Policy h3 {
        font-size: 1em;
    }
}

/* Responsive Styling */
@media (max-width: 600px) {
    #search-icon {
        display: flex;
    }

    .search-container {
        /* width: 80%; */
        display: none;
    }

    .search-container.active {
        display: flex;
        position: absolute;
        right: -100px;
        top: 50%;
        transform: translateY(45%);
    }

    #search-icon {
        display: block;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateX(-50%);
        transform: translateY(-50%);
        cursor: pointer;
        color: #1fc1ff;
        transition: color 0.3s;
        text-align: center;
    }
}
/*Blinking*/
.blinking {
    animation: blinkingText 1.5s infinite;
    color: rgb(15, 235, 15);
    font-weight: bold;
    }

    @keyframes blinkingText {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
    }