/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Hero Section */
header .hero {
    background: url('Images/BG.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    height: 101vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -70px; /* Adjusting for navbar space */
}



/* Hero Content */
header .hero h1 {
    font-size: 4rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

header .hero p {
    font-size: 1.5rem;
    margin: 1rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 0.9rem;
}
/* Arrow Button Styling */
.arrow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: #ff4500;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Arrow Icon Styling */
.arrow-button .arrow-icon {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    stroke: #fff;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.arrow-button:hover {
    background-color: #e03d00;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.arrow-button:hover .arrow-icon {
    transform: translateX(5px);
}





/* Brand Styling */
.navbar .navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px; /* Space below the brand */
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
}

/* Navigation Links */
.navbar .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%; /* Full width inside the navbar */
}

.navbar .nav-links li {
    margin-bottom: 15px; /* Space between each link */
}

/* Navigation Links: Link Styling */
.navbar .nav-links a {
    display: block; /* Make links take up the full width */
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 15px; /* Spacing inside the link */
    border-radius: 5px; /* Rounded corners for hover effect */
    transition: background 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    text-align: center; /* Center the text */
}

/* Navigation Links: Hover and Active States */
.navbar .nav-links a:hover,
.navbar .nav-links a.active {
    background: #ff4500; /* Highlight color on hover or active */
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        width: 200px; /* Reduce sidebar width for smaller screens */
    }

    body {
        margin-left: 200px; /* Adjust content margin for smaller navbar */
    }

    .navbar .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar .nav-links a {
        font-size: 1rem;
        padding: 8px 10px;
    }
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background: linear-gradient(to bottom, #333, #444);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.navbar.hidden {
    transform: translateX(-100%);
}

/* Button Styling */
#toggle-button {
    position: fixed;
    top: 20px;
    left: 15px;
    background-color: #ff4500;
    border: none;
    border-radius: 50%;
    padding: 10px;
    z-index: 1100;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#toggle-button:hover {
    background-color: #e03d00;
    transform: scale(1.1);
}

/* Icon Styling */
#toggle-button i {
    color: #fff;
    font-size: 20px;
}

/* Adjust Content */
/* body {
    margin-left: 250px;
    transition: margin-left 0.3s ease;
}

body.navbar-hidden {
    margin-left: 0;
} */



/* Intro Section */



/* Intro Section */
.intro-section {
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    margin: 40px auto;
    max-width: 1200px;
    overflow: hidden;
}

.intro-section .intro-header {
    text-align: center;
    margin-bottom: 40px;
}

.intro-section .intro-title {
    font-size: 3rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.intro-section .intro-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: #ff4500;
    margin: 10px auto 0;
    border-radius: 5px;
}

.intro-section .intro-paragraph {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 25px;
    padding: 0 20px;
}

.intro-section .intro-paragraph:first-of-type {
    margin-top: 20px;
    font-style: italic;
    color: #444;
}

.intro-section .intro-header h1 {
    border-bottom: none;
    padding-bottom: 0;
}

.intro-section p::first-line {
    font-weight: bold;
    font-size: 1.3rem;
}

.intro-section p:hover {
    background-color: rgba(255, 69, 0, 0.05);
    transition: background-color 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    border-left: 5px solid #ff4500;
}

/* Additional Styles for Improved Layout */
@media (max-width: 768px) {
    .intro-section {
        padding: 40px 20px;
        margin: 20px 20px;
    }

    .intro-section .intro-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .intro-section .intro-paragraph {
        font-size: 1rem;
    }
}

/* Question Cards */
.question-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px auto;
    padding: 0 15px;
    max-width: 1200px;
}

.card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #ff4500;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 69, 0, 0.05);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.card:hover::before {
    opacity: 1;
}

.card p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    z-index: 1;
    position: relative;
    margin: 0;
    padding: 0 10px;
}

.card p:hover {
    color: #ff4500;
    transition: color 0.3s ease;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #ff4500;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    transition: background 0.3s ease;
}

.card:hover .card-icon {
    background: #333;
}


/* Team Cards */
.team-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    padding: 0 15px;
}

.team-card {
    width: 300px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 69, 0, 0.1);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.team-card:hover::before {
    opacity: 1;
}

.team-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 6px solid #ff4500;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
    border-color: #333;
}

.team-card h3 {
    margin-bottom: 15px;
    font-size: 1.7rem;
    font-weight: bold;
    color: #333;
    position: relative;
    z-index: 1;
}

.team-card p {
    color: #555;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}
.team-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.team-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #ff4500;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* LinkedIn Button Styling */
.linkedin-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0a66c2; /* LinkedIn blue */
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.linkedin-button:hover {
    background-color: #004182; /* Darker LinkedIn blue */
    transform: translateY(-3px);
}


.questions-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.questions-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #ff4500;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}


/* General Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 150px;
    height: 4px;
    background: #ff4500;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Data Sources Section */
.data-source {
    padding: 50px 30px;
    background-color: #fefefe;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px; 
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

/* Paragraph Styling */
.data-source p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

/* Link Styling */
.data-source a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 600;
}

.data-source a:hover {
    color: #e64a19;
    text-decoration: underline;
}

/* Main List Styling */
.data-source ul {
    padding-left: 40px;
    margin-top: 20px;
}

.data-source ul li {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 18px;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.data-source ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #ff5722;
    border-radius: 50%;
}

/* Main List */
.data-list {
    padding-left: 20px;
    margin-top: 20px;
    list-style: none;
}

.data-list > li {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
}

.data-list > li::before {
    content: "•";
    font-size: 2rem;
    color: #ff5722;
    position: absolute;
    left: -30px;
    top: 4px;
}

/* Sub List */
.sub-list {
    padding-left: 40px;
    margin-top: 10px;
    list-style: none;
}

.sub-list li {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.sub-list .bullet {
    font-size: 1.2rem;
    color: #ff5722;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(2px);
}

/* Sub List Hover */
.sub-list li:hover {
    color: #ff5722;
    transition: color 0.3s ease;
}
 
/* Data Collection Section */
.data-scraping {
    padding: 50px 30px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px; /* Matches the width of the Data Sources section */
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.data-scraping:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Subheadings for Sections */
.data-scraping h4 {
    font-size: 1.8rem;
    color: #ff4500;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #ff4500;
    padding-left: 15px;
    text-transform: uppercase;
}

/* Paragraph Styling */
.data-scraping p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

/* Code Block Styling */
.data-scraping pre {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    overflow-x: auto;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 20px;
    font-family: 'Courier New', monospace;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Border for Code Blocks */
.data-scraping pre::before {
    content: "Code Snippet";
    display: block;
    font-size: 0.9rem;
    color: #ff4500;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Highlighting Specific Lines in Code Blocks */
.data-scraping pre code span.highlight {
    background: #ff4500;
    color: #ffffff;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Link Styling */
.data-scraping a {
    color: #ff4500;
    text-decoration: none;
    font-weight: bold;
}

.data-scraping a:hover {
    text-decoration: underline;
}

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

    .data-scraping h4 {
        font-size: 1.5rem;
    }

    .data-scraping pre {
        font-size: 0.9rem;
    }
}


/* Data Cleaning Section */
.data-cleaning {
    padding: 50px 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.data-cleaning:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Subheadings for Sections */
.data-cleaning h4 {
    font-size: 1.8rem;
    color: #ff4500;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #ff4500;
    padding-left: 15px;
    text-transform: uppercase;
}

/* Paragraph Styling */
.data-cleaning p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

/* Enhanced List Styling */
.data-cleaning ul {
    padding-left: 0;
    margin-top: 20px;
}

.data-cleaning ul li {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    list-style: none;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.data-cleaning ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.data-cleaning ul li::before {
    content: "✔";
    font-size: 1.5rem;
    color: #ff4500;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .data-cleaning ul li {
        font-size: 1.1rem;
        padding: 10px 15px;
    }

    .data-cleaning ul li::before {
        font-size: 1.3rem;
        margin-right: 10px;
    }
}


/* Code Block Styling */
.data-cleaning pre {
    background: #fefefe;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    overflow-x: auto;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 20px;
    font-family: 'Courier New', monospace;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Code Block Label */
.data-cleaning pre::before {
    content: "Code Snippet";
    display: block;
    font-size: 0.9rem;
    color: #ff4500;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Highlighting Specific Lines in Code Blocks */
.data-cleaning pre code span.highlight {
    background: #ff4500;
    color: #ffffff;
    padding: 2px 4px;
    border-radius: 3px;
}

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

    .data-cleaning h4 {
        font-size: 1.5rem;
    }

    .data-cleaning pre {
        font-size: 0.9rem;
    }
}


/* Data Visualizations Section */
.data-visualizations {
    padding: 50px 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 1200px;
    line-height: 1.8;
}

.data-visualizations .visualization-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.data-visualizations .visualization-item {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: center;
}

.data-visualizations .visualization-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.data-visualizations .visualization-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.data-visualizations .visualization-item img:hover {
    transform: scale(1.05);
}

.data-visualizations .visualization-item p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

/* Lineup Section */
.lineup-section {
    padding: 50px 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px;
    line-height: 1.8;
}

.lineup-section .lineup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Set two items per row */
    gap: 30px;
    margin-top: 20px;
}

.lineup-section .lineup-card {
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lineup-section .lineup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.lineup-section .lineup-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
}

.lineup-section .lineup-card h5 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lineup-section .lineup-grid {
        grid-template-columns: 1fr; /* Adjust to one item per row for smaller screens */
    }
}


/* Footer */
footer {
    background: linear-gradient(90deg, #333, #222); /* Subtle gradient for modern look */
    color: #f9f9f9; /* Slightly off-white for softer contrast */
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 1rem;
    position: relative;
    bottom: 0;
    width: auto;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

footer a {
    color: #ff4500; /* Highlight links in footer */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffa07a; /* Softer orange on hover */
}

footer .social-icons {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

footer .social-icons a:hover {
    background: #ff4500;
    transform: scale(1.1);
}

footer .social-icons svg {
    width: 20px;
    height: 20px;
    fill: #f9f9f9;
}

footer p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ccc; /* Lighter text for disclaimer or secondary info */
}


/* Main Section */
main {
    padding: 20 px;
    max-width: 1500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Models Section */
.models-section {
    margin-bottom: 40px;
}

.models-section h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #333;
    position: relative;
}

.models-section h3::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #ff4500;
    margin: 10px auto 0;
    border-radius: 2px;
}

.models-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.models-list li {
    margin-bottom: 40px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.models-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.models-list h4 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.models-list h5 {
    font-size: 1.4rem;
    color: #555;
    margin-top: 15px;
    margin-bottom: 10px;
}

.models-list p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Models Images */
.models-image-container {
    text-align: center;
    margin-top: 20px;
}

.models-image-container img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.models-image-container img:hover {
    transform: scale(1.05);
}

/* Clustering Gallery */
.clustering-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Ensure exactly two items per row */
    gap: 20px;
    margin-top: 20px;
}

/* Clustering Item */
.clustering-item {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clustering-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.clustering-item h5 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.clustering-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.clustering-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.clustering-item img:hover {
    transform: scale(1.05);
}


/* Best 11 Section Grid */
.best-11-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Flexible layout for smaller screens */
    gap: 20px;
    margin-top: 20px;
}

/* Position Card Styling */
.position-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.position-card h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.position-card p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
}
/* Best 11 Grid */
.best-11-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 20px; /* Spacing between cards */
    margin-top: 20px;
    padding: 20px;
}

/* Models Image Container Styling */
.models11-image-container {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.models11-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.models-image11-container h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.models11-image-container p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
}

.models11-image-container img {
    width: 600px;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}


/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .clustering-gallery {
        grid-template-columns: 1fr; /* One item per row on smaller screens */
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .navbar {
        padding: 15px;
    }

    .models-list li {
        padding: 15px;
    }

    .models-section h3 {
        font-size: 2rem;
    }
}


/* General Section Styling */
.results-section,
.conclusion-section {
    padding: 40px 20px;
    background: linear-gradient(to bottom, #ffffff, #f4f4f4);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 1200px;
    line-height: 1.8;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #ff5722;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Result Item Styling */
.result-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ddd;
}

.result-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.result-item h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.result-item p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Images within Result Items */
.result-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.result-item img:hover {
    transform: scale(1.05);
}

/* Bullet List Styling */
.result-item ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px 0;
}

.result-item ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.result-item ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Conclusion Section */
.conclusion-section {
    background: linear-gradient(to bottom, #f4f4f4, #ffffff);
    text-align: left;
    padding: 40px 20px;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.conclusion-section ul {
    padding-left: 40px;
    list-style: disc;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

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

.conclusion-section p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: linear-gradient(to right, #333, #444);
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}


.interactive-visualization {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 1200px;
    text-align: center;
}

.interactive-visualization p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.interactive-chart {
    height: 500px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #ffffff;
}


.interactive-visualization {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 1200px;
    text-align: center;
}

.interactive-visualization p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.interactive-chart {
    height: 500px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #ffffff;
}


/* Chart container */
#top-scorers-chart {
    width: 100%; /* Full width for responsiveness */
    height: 600px; /* Fixed height for the chart */
    margin: 20px auto; /* Center the chart */
    border: 1px solid #ddd; /* Light border for styling */
    border-radius: 8px; /* Rounded corners */
    background-color: #ffffff; /* White background */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 15px; /* Inner padding */
}

/* Title styling */
h4 {
    text-align: center; /* Center-align the heading */
    color: #333333; /* Dark gray text */
    font-size: 1.5rem; /* Larger font size */
    margin-bottom: 10px; /* Space below the title */
}
/* Chart container */
#confusion-matrix-chart {
    display: block; /* Ensure it behaves like a block element */
    margin: 0 auto; /* Center horizontally */
    text-align: center; /* Align text in the center if needed */
    padding: 20px; /* Optional: Add some padding for aesthetics */
}

/* Title styling */
h4 {
    text-align: center; /* Center-align the heading */
    color: #333333; /* Dark gray text */
    font-size: 1.5rem; /* Larger font size */
    margin-bottom: 10px; /* Space below the title */
}







.best-11-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.best-11-item {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.best-11-item h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.best-11-item p {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
}


