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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none !important;
}

a:hover {
    opacity: 0.9;
    color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    /* background-color: #FFF; */
    background: linear-gradient(135deg, #f0f4f8, #d5e0ed);

    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* position: fixed !important; */
    top: 0;
    left: 0;
    right: 0;
}

.navbar .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.navbar .logo img {
    height: 30px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 30px;
    }

    .navbar .logo img {
        height: 25px;
    }
}

/* Menu Icon (Hamburger) */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Right-Side Menu */
.right-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.right-menu a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.right-menu a:hover {
    color: #6A0DAD;
}

.navbar .buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar .buttons .btn {
    display: inline-block;
    text-decoration: none;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 20px;
    font-weight: bold;
}

.navbar .buttons .btn-login {
    background-color: #FFF;
    border: 1px solid #ccc;
    color: #000;
    transition: all 0.3s ease;
}

.navbar .buttons .btn-login:hover {
    background-color: #EEE;
}

.navbar .buttons .btn-cta {
    background-color: #16101a;
    color: #FFF;
    border: none;
}

.navbar .buttons .btn-cta:hover {
    background-color: #590A8E;
}

/* Responsive Design */
@media (max-width: 768px) {
    .right-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFF;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .right-menu.active {
        display: flex;
    }

    .right-menu a {
        margin: 10px 0;
        text-align: center;
        font-size: 16px;
    }

    .navbar .buttons {
        flex-direction: column;
        margin-top: 10px;
    }

    /* Menu Icon */
    .menu-icon {
        display: flex;
    }
}

/* Hero Section */
/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    text-align: center;
    background: linear-gradient(135deg, #f0f4f8, #d5e0ed);
    padding: 0 20px;
}

.hero-contents {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-img {
    /* margin: 20px;  */
    border-radius: 30px;
    width: 90%;
}

.hero h1 {
    font-size: 3.5rem;
    /* Default for large screens */
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.hero p {
    font-size: 1.25rem;
    /* Default for large screens */
    color: #555;
    margin-bottom: 2rem;
}

.hero .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #3C1053, #4C1D95);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.hero .btn:hover {
    /* background: #0056b3; */
    opacity: 0.9;
    color: #fff !important;
}

@media (max-width: 1000px) {
    .hero-contents {
        padding-top: 100px;
        padding-bottom: 100px;
        flex-direction: column-reverse;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 20px;
        /* Add padding for smaller screens */
        height: auto;
        /* Adjust height dynamically */
    }

    .hero-contents {
        flex-direction: column-reverse !important;
    }

    /* .hero-img {
        width: 100%;
    } */

    .hero h1 {
        font-size: 2.5rem;
        /* Smaller font size for mobile */
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        /* Smaller font size */
        margin-bottom: 1.5rem;
    }

}

/* Section Container */
.expertise-section {
    text-align: center;
    background-color: #FFF;
    padding: 50px 20px;
}

.expertise-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    line-height: 1.4;
    margin-bottom: 40px;
}

/* Expertise Container */
.expertise-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Individual Cards */
.expertise-card {
    flex: 1 1 calc(33.33% - 20px);
    /* Three cards in a row */
    max-width: 400px;
    min-height: 180px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
    background-color: #f0f4f8;
    border-radius: 20px;
}

.expertise-card:hover {
    transform: translateY(-10px);
}

.expertise-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    margin-bottom: 20px;
}

.expertise-card i {
    font-size: 30px;
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .expertise-container {
        flex-direction: column;
    }

    .expertise-card {
        flex: 1 1 100%;
    }

    .expertise-title {
        font-size: 2rem;
    }
}

/* Footer */
/* Community Section */
.community-section {
    padding-top: 70px !important;
    padding-bottom: 50px !important;
    background-color: #16101a;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.community-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 70px;
}

.community-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #aaa;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.community-card {
    flex: 1 1 calc(20% - 20px);
    /* Ensures equal width for each card */
    /* max-width: 400px; */
    /* Set maximum width */
    height: 200px;
    /* Set fixed height */
    background-color: #2b1b30;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
    align-items: center;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.icon-box {
    font-size: 30px;
    margin-bottom: 10px;
    color: #e3b6ff;
}

.community-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.learn-more {
    font-size: 16px;
    color: #000;
    width: 100%;
    background-color: #b09cf1 !important;
    border-radius: 50px;
    padding: 15px 20px !important;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #ffffff;
}

.all-opportunities {
    margin-top: 40px;
}

.btn-opportunities {
    display: inline-block;
    padding: 12px 20px;
    background-color: #9b5de5;
    color: #ffffff;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-opportunities:hover {
    background-color: #7744b6;
}

/* General Section Styling */
.ai-training-section {
    background-color: #FDFDFD;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-training-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

/* Text Section Styling */
.ai-training-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ai-training-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1E0A3C;
    margin-bottom: 10px;
}

.ai-training-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.task-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.task-box {
    background-color: #F2F0FF;
    padding: 15px 20px;
    border-radius: 8px;
    color: #444;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.task-box.active {
    background-color: #1E0A3C;
    color: #FFF;
}

.task-box:hover {
    background-color: #EAE4FF;
}

.cta p {
    margin-bottom: 15px;
    font-weight: bold;
}

.btn-view-opportunities {
    display: inline-block;
    padding: 10px 25px;
    background-color: #1E0A3C;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-view-opportunities:hover {
    background-color: #6A0DAD;
}

/* Image Section */
/* General Section Styling */
.ai-training-section {
    background-color: #FDFDFD;
    padding: 60px 20px;
    text-align: center;
}

.ai-training-header {
    margin-bottom: 40px;
}

.ai-training-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1E0A3C;
    margin-bottom: 10px;
}

.ai-training-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.ai-training-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    /* Align text left within content boxes */
}

/* Text Section Styling */
.ai-training-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.task-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.task-box {
    background-color: #F2F0FF;
    padding: 20px;
    border-radius: 10px;
    color: #444;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.task-box.active {
    background-color: #6A0DAD;
    color: #FFF;
}

.task-box:hover {
    background-color: #EAE4FF;
}

.cta p {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.btn-view-opportunities {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1E0A3C;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.btn-view-opportunities:hover {
    background-color: #6A0DAD;
}

/* Image Section */
.ai-training-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-training-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-training-container {
        flex-direction: column;
        text-align: center;
    }

    .ai-training-image img {
        max-width: 100%;
    }

    .task-boxes {
        text-align: left;
    }
}


/* Responsive Design */


footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #f0f4f8;
    color: #333;
    margin-top: 2rem;
}

.experts-section {
    text-align: center;
    background-color: #FDFDFD;
    padding: 60px 20px;
}

.experts-header h2 {
    font-size: 32px;
    color: #1E0A3C;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 40px;
}

.highlight-text {
    color: #00C48C;
    /* Green text for highlighting */
}

/* Testimonials Container */
.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 300px;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.author-details strong {
    font-size: 14px;
    color: #1E0A3C;
}

.author-details span {
    font-size: 12px;
    color: #777;
}

.cta-section {
    background: linear-gradient(135deg, #3C1053, #4C1D95);
    color: #FFFFFF;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    margin: 40px auto;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Adjust on smaller screens */
    padding: 10px 30px;
}

.cta-container h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    flex: 1;
    /* Grow text container */
}

.cta-button {
    display: inline-block;
    background-color: #FFFFFF;
    color: #3C1053;
    /* Dark purple */
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #E5E5E5;
    color: #4C1D95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-container h2 {
        margin-bottom: 15px;
        font-size: 20px;
    }
}

/* AI Craft Section Styling */
.ai-craft-section {
    background-color: #FDFDFD;
    padding: 60px 20px;
    text-align: center;
}

.ai-craft-header {
    margin-bottom: 40px;
}

.ai-craft-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1E0A3C;
    margin-bottom: 10px;
}

.ai-craft-header h2 .highlight {
    color: #6A0DAD;
}

.ai-craft-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Content Layout */
.ai-craft-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Task Details */
.task-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.task-box {
    background-color: #F2F0FF;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.task-box.active {
    background-color: #b0adb3;
    color: #FFF;
}

.task-box:hover {
    background-color: #EAE4FF;
}

/* Right Image Section */
.task-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.task-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-craft-content {
        flex-direction: column;
    }

    .task-image img {
        max-width: 100%;
    }
}

/* General FAQ Section Styling */
.faq-section {
    padding: 60px 20px;
    background-color: #FFF;
    font-family: 'Inter', sans-serif;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #1E0A3C;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid #E0E0E0;
    padding: 20px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #FAFAFA;
}

/* FAQ Question Styling */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: #1E0A3C;
}

.faq-number {
    color: #6A0DAD;
    font-weight: bold;
    font-size: 18px;
    margin-right: 10px;
}

.faq-title-text {
    flex: 1;
    font-size: 18px;
}

.toggle-icon {
    font-size: 22px;
    color: #6A0DAD;
    font-weight: bold;
}

/* FAQ Answer Styling */
.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* See All Button */
.see-all-container {
    text-align: center;
    margin-top: 20px;
}

.see-all-btn {
    background-color: #6A0DAD;
    color: #FFF;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.see-all-btn:hover {
    background-color: #4A078E;
}