@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');


html,
body {
    margin: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
   
}

/* Navbar styling */
.navbar {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding-left:15px;
    transition: background-color 0.3s;
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%) !important;
}

/* Content under navbar */
.main-content {
    margin-top: 70px; /* Adjust this to the height of your navbar */
    z-index: 1;
}

/* Custom WebKit Scrollbar */
body::-webkit-scrollbar {
    width: 8px;
    
}

body::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #2575fc 0%, #2575fc 100%); 
}

body::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: gray;
}


.navbar-brand img {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 70px;
    height: 70px;
    user-select: none;
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
    /* Change hover color to gold */
    text-decoration: none;
}

.nav-link.active {
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}


/* welcome */

/* Default styles for larger screens */
.welcome-text {
    font-size: 18px; /* Default font size */
}

/* Media query for small desktop screens */
@media (max-width: 992px) {
    .welcome-text {
        font-size: 12px; /* Smaller font size for small desktop screens */
    }
}


/* Responsive Design */
@media (max-width: 400px) {
    /* Adjust font size for small screens */
    .welcome-title h1 {
        font-size: 10px; /* Make the font size 10px when screen width is less than 400px */
    }

    .welcome-text {
        font-size: 10px; /* Make the font size 10px for the paragraph as well */
    }

    #get-started-btn {
        font-size: 10px; /* Adjust button text size */
        padding: 5px 10px; /* Adjust button padding for small screens */
    }
}

/* Welcome Section */
.welcome-section {
    height: 90vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: center;
}

/* Styling the button */
.btn-dark {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px solid black;
    /* border-color: black; */
    transition: background-color 0.3s ease;
}

.container{
width:95%; 

}
.btn-primary:hover {
    background: linear-gradient(135deg, #000000 0%, #767676 100%);
}
.welcome-content {
    text-align: center;
    opacity: 0; /* Start hidden */
    transform: translateY(50px); /* Move down */
    animation: fadeInUp 1s forwards; /* Animation */
}


/* Keyframes for animation */
@keyframes fadeInUp {
    from {
        opacity: 0; /* Start invisible */
        transform: translateY(50px); /* Move down */
    }
    to {
        opacity: 1; /* Fade in */
        transform: translateY(0); /* Move to original position */
    }
}

/* Next Section Styles */
#next-section {
    background-color: #f8f9fa; /* Light background for the next section */
    padding: 50px 0; /* Padding for the next section */
}

#next-section h2 {
    margin-bottom: 20px; /* Space between heading and text */
}

.form-control {
    border-radius: 20px;
    max-width: 200px;
    /* Adjust max width as needed */
}

.form-control:focus {
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
    border-color: #007bff;
}

/* Media query adjustments */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }

    .form-control {
        max-width: 100%;
    }
}

.custom-search-bar {
    max-width: 250px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(219, 223, 223, 0.5);
}


.custom-search-bar input {
    border: none;
    border-radius: 50px;
    margin-left: 17px !important;
    margin-right: 6px;
    width: 300px;
    font-size: 16px;
}

.custom-search-bar input::placeholder {
    color: #7e7d7d;  
    opacity: 0.8;
}

.custom-search-bar input:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

.btn-search {
    margin-right: 6px;
    border: none;
    border-radius: 0 50px 50px 0;
    color: white;
    padding: 12px 10px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

/* Style for the toast notification */
.toast {
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeout {
    from { opacity: 1; }
    to { opacity: 0; }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-search-bar {
        width: 100%;
    }

    .custom-search-bar input {
        width: 100%;
    }
}



/* Scrolled Navbar Style */
.scrolled {
    background-color: #345578 !important;
}


/* Dropdown menu styling */
.dropdown-menu {
    padding: 0;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    /* Border around the entire dropdown */
    animation: dropdownAnimation 0.3s ease-in-out;
    /* Dropdown animation */
}

.dropdown-item {
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
    /* Border line between each heading */
    transition: background-color 0.3s ease;

}

.dropdown-item:last-child {
    border-bottom: none;
    /* Remove the border from the last item */
}

.dropdown-item:hover {
    background-color: #f0f0f0;
    /* Hover effect */
    border-radius: 0.2rem;
}

/* Dropdown animation */
@keyframes dropdownAnimation {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#small-search-input {
    margin-right: 10px;
    width: 130px; /* Adjust for small screens */
}

/* Style for the small toast notification */
.toast {
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeout {
    from { opacity: 1; }
    to { opacity: 0; }
}






/* Sidebar menu styling */
.sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    /* Hidden initially */
    width: 250px;
    height: 100%;
    background-color: #343a40;
    color: white;
    z-index: 1050;
    padding: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
    /* Slides in when active */
}

#menuBtn {
    position: absolute;
    right: 15px;
    border: none;
    background: none;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: -9px;
    left: 5px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* Display the normal navbar on larger screens */
@media (min-width: 1010px) {
    .sidebar {
        display: none;
        /* Hide the sidebar */
    }

    #navbarNavMain {
        display: flex;
        /* Show the regular navbar */
    }
}

/* For smaller screens */
@media (max-width: 1009px) {
    #navbarNavMain {
        display: none;
        /* Hide the normal navbar */
    }

    .sidebar {
        display: block;
    }
}


/* Styling the search bar in the sidebar */

.custom-search-bar-sidebar input {
    width: 100%;
    margin-right: 5px;
}

.custom-search-bar-sidebar .btn-search {
    /* Adjust button color */
    color: white;
    border: none;
}


.custom-search-bar-desktop input {
    width: 250px;
    /* Adjust width */
}

.custom-search-bar-desktop .btn-search {

    color: white;
    border: none;
}


/* Overlay styling */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    display: none;
    /* Hidden initially */
    z-index: 1000;
    /* Below the sidebar */
}

.sidebar.active {
    right: 0;
    /* Slides in when active */
    z-index: 1050;
    /* Ensure the sidebar is above the overlay */
}



/* ----------------------------------------- */


/* Main container styling */

.carousel-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
    margin-top: 90px;
    /* Adjust this value as needed */
}

.background-shape {
    position: absolute;
    top: 20px;
    width: 61%;
    height: 70%;
    background: linear-gradient(135deg, #5f7892 50%, transparent 50%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%);
    /* Curved shape */
    z-index: 1;
    /* Behind content */


}


.content-container {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 800px;
    /* Set a maximum width */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    /* Above background */
}

.video-container {
    flex: 1;
    overflow: hidden;
    background-color: #000000;
}

.video-container video {

    width: 100%;
    height: auto;
    border-radius: 20px 0 0 20px;

}


.text-container {
    flex: 1;
    /* Take equal space */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    padding: 20px;
    /* Add padding for aesthetics */
    background: rgba(255, 255, 255, 0.7);
    /* Semi-transparent background for contrast */
    border-radius: 0 20px 20px 0;
    /* Match corners */
}
#rejectCookies {
    color: rgb(255, 255, 255) !important;
    background-color: gray!important;
}


.welcome-title {
    min-height: 70px; /* Set a minimum height to accommodate the text */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevents content from overflowing */
}
#auto-typing-text {
    font-size: 2rem;
    white-space: nowrap;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .text-container {
        padding: 10px;
        /* Less padding on smaller screens */
    }

    #auto-typing-text {
        font-size: 20px;
        /* Adjust font size for smaller screens */
    }

    .content-container {
        flex-direction: column;
        /* Stack content on smaller screens */
    }

    .video-container,
    .text-container {
        width: 100%;
        /* Full width on small screens */
    }
}



/* -------------------- */




.universities-section {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

.section-heading {
    font-size: 24px;
    margin-bottom: 10px;
}

.universities-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.universities-row {
    display: inline-flex;
    animation: scrollUniversities 15s linear infinite reverse;
}

.universities-row a {
    cursor: pointer;
    text-decoration: none;
    color: #000000;
}

.university-item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    background: #ffffff;
    margin: 0 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
}

.badge {
    margin-right: 8px;
    background-color: #007bff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
}

@keyframes scrollUniversities {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    /* Adjust image height */
    object-fit: cover;
}

#articles {
    margin-bottom: 100px;
}





/* ---------------------------- */


/* Newsletter Section Styling */
.newsletter-section {
    padding: 40px 20px;
    background: #f8f9fa;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 40px auto;
    max-width: 600px;
}

.newsletter-section h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.newsletter-section p {
    color: #666;
    margin-bottom: 20px;
}

#newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group {
    margin-bottom: 15px;
    width: 100%;
    max-width: 500px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
}

.subscribe-btn {
    padding: 12px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 20px 10px;
    }

    .newsletter-section h2 {
        font-size: 24px;
    }

    .subscribe-btn {
        width: 100%;
        padding: 12px;
    }
}


/* ------------------------------- */

#portfolio {
    background-color: #f8f9fa;
    /* Light background */
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.card-img-top {
    border-radius: 5px;
    height: auto;
    width: 100%;
    object-fit:contain;
    border-radius: 0.25rem;
}

.btn-primary {
    background-color: #000000;
    border-color: #ffffff;
}
.btn-secondary {
    background-color: gray;
    border-color: #ffffff;
}

.btn-primary:hover {
    background-color: #3f3f3f;
    border-color: #000000;
}

/* --------------------- */

#pdfs-section {
    padding: 20px;
    background-color: #f8f9fa;
    /* Light background for contrast */
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Soft shadow */
}

.subject-btn {
    flex: 1 1 150px;
    /* Allow buttons to grow and shrink */
    min-width: 120px;
    /* Minimum width for buttons */
}

#pdf-list {
    margin-top: 20px;
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    /* Space between text and button */
    align-items: center;
    /* Center align items */
}

@media (max-width: 768px) {
    .subject-btn {
        flex: 1 1 100%;
        /* Full width on smaller screens */
    }

    .list-group-item {
        flex-direction: column;
        /* Stack items on smaller screens */
        align-items: flex-start;
        /* Align items to the left */
    }

    .list-group-item button {
        margin-top: 5px;
        /* Add margin above download button */
    }
}


/* -------------------------- */

.trending-degrees {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.degree-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.degree-card:hover {
    transform: translateY(-5px);
}

.degree-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007bff;
}

.degree-card p {
    color: #555;
}




/* ---------------- */
/* General Styling for Course Selection Section */
/* General Styling for Course Selection Section */
#course-selection {
    background-color: #f8f9fa;
    /* Light background color */
    padding: 40px 20px;
    /* Padding for top and bottom */
    border-radius: 8px;
    /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

#course-selection h2 {
    font-size: 28px;
    /* Main title size */
    color: #333;
    /* Dark text color */
    margin-bottom: 20px;
    /* Space below the title */
}

#course-selection h3 {
    font-size: 24px;
    /* Sub-heading size */
    color: #007bff;
    /* Bootstrap primary color for headings */
    margin-top: 20px;
    /* Space above each section */
    border-bottom: 2px solid #007bff;
    /* Underline for emphasis */
    padding-bottom: 5px;
    /* Space below heading */
}

#course-selection p {
    font-size: 16px;
    /* Normal text size */
    color: #555;
    /* Slightly lighter text color */
}

#course-selection ul {
    list-style-type: none;
    /* Remove bullet points */
    padding-left: 0;
    /* Remove padding */
    margin-top: 10px;
    /* Space above the list */
}

#course-selection li {
    margin-left: 20px;
    padding: 8px 0;
    /* Space above and below each item */
    font-size: 16px;
    /* Size for list items */
    position: relative;
    /* For pseudo-element positioning */
}

#course-selection li::before {
    content: "✔️";
    /* Check mark before each item */
    position: absolute;
    /* Position it */
    left: -25px;
    /* Adjust position */
    color: #28a745;
    /* Green color for check mark */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #course-selection {
        padding: 20px 10px;
        /* Adjust padding for smaller screens */
    }

    #course-selection h2 {
        font-size: 24px;
        /* Smaller title size for mobile */
    }

    #course-selection h3 {
        font-size: 20px;
        /* Smaller sub-heading for mobile */
    }

    #course-selection p,
    #course-selection li {
        font-size: 14px;
        /* Smaller text size for mobile */
    }



    #course-selection li {
        padding-left: 20px;
        /* Move the text slightly to the right */
    }
}

.recommended-link {
    text-decoration: none;
    /* Remove underline from the link */
    color: #007bff;
    /* Bootstrap primary color */
    position: relative;
    /* For positioning the badge */
}

.recommended-badge {
    font-size: 14px;
    /* Size of the badge text */
    color: #fff;
    /* White text color */
    background-color: #28a745;
    /* Green background */
    padding: 2px 6px;
    /* Padding around the badge */
    border-radius: 5px;
    /* Rounded corners */
    margin-left: 10px;
    /* Space between course name and badge */
    vertical-align: middle;
    /* Align with the middle of the text */
}

/* --------------------- */

#study-abroad {
    background-color: #f8f9fa;
    /* Light background */
    padding: 40px 20px;
    /* Top and bottom padding */
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.roadmap {
    margin-top: 20px;
    /* Space between heading and roadmap */
}

.roadmap-step {
    background-color: #fff;
    /* White background for steps */
    padding: 15px;
    margin: 10px 0;
    /* Space between steps */
    border-radius: 8px;
    /* Rounded corners for steps */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* Shadow for steps */
}

.roadmap-step h5 {
    color: #007bff;
    /* Bootstrap primary color for headings */
}

.roadmap-step p,
.roadmap-step ul {
    color: #555;
    /* Dark gray for text */
}

/* ------------------------------------ */

#scholarships-2025 {
    padding: 40px 0;
    background-color: #f8f9fa;
    border-radius: 10px;
}

#scholarships-2025 h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
}

.card-text {
    font-size: 15px;
    color: #555;
}

.card-body {
    padding: 20px;
}

.card ul {
    padding-left: 20px;
    margin: 10px 0;
    color: #555;
}

.card ul li {
    list-style-type: disc;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}
.btn-secondary {
    background-color: gray;
    border: none;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}
.btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    #scholarships-2025 {
        padding: 20px;
    }

    #scholarships-2025 h2 {
        font-size: 26px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-text {
        font-size: 14px;
    }

    .btn-primary {
        font-size: 12px;
        padding: 6px 12px;
    }
    .btn-secondary {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ----------------------------- */
#frontend-roadmap {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.roadmap-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.roadmap-card {
    background-color: #fff;
    width: 200px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.roadmap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.roadmap-card i {
    margin-bottom: 10px;
}

.roadmap-card h5 {
    color: #333;
    font-weight: bold;
}

.roadmap-card p {
    font-size: 14px;
    color: #666;
}

#backend-roadmap {
    padding: 40px 0;
    background-color: #f8f9fa;
    border-radius: 15px;
}

#backend-roadmap .card {
    transition: transform 0.3s ease;
    border: none;
}

#backend-roadmap .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#backend-roadmap .card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

#backend-roadmap .fa-code,
.fa-database,
.fa-cogs {
    color: #007bff;
}

#backend-roadmap ul {
    padding: 0;
}

#backend-roadmap ul li {
    list-style: none;
    padding: 5px 0;
    font-size: 1rem;
}

#backend-roadmap ul li i {
    color: #007bff;
    margin-right: 8px;
}

#ai-roadmap {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 50px 0;
    border-radius: 10px;
}

.ai-roadmap-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.ai-roadmap-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.ai-roadmap-item:hover {
    transform: translateY(-10px);
}

.ai-roadmap-item h4 {
    margin: 15px 0;
    font-size: 20px;
}

.ai-roadmap-item p {
    font-size: 16px;
    color: #555;
}

/* -------------------------- */
#pathways-section {
    background: linear-gradient(to right, #f0f4f8, #e2e2e2);
    padding: 40px 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pathway-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.pathway-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: #007bff;
    margin: 20px auto;
    border-radius: 10px;
}

blockquote {
    font-style: italic;
    margin: 20px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid #007bff;
    border-radius: 5px;
}

blockquote::before {
    content: "“";
    font-size: 40px;
    color: #007bff;
    position: absolute;
    left: -20px;
    top: -10px;
}

blockquote::after {
    content: "”";
    font-size: 40px;
    color: #007bff;
    position: absolute;
    right: -20px;
    bottom: -10px;
}

ul {
    padding-left: 0;
}

ul li {
    list-style: none;
    margin: 5px 0;
}

ul li a {
    color: #007bff;
    text-decoration: none;
}

ul li a:hover {
    text-decoration: underline;
}

/* Floating Animation for Cards */
@keyframes float {
    0% {
        transform: translatey(0);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0);
    }
}

.pathway-card {
    animation: float 3s ease-in-out infinite;
}


/* -------------------- */

.field-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.field-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.field-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.field-card p {
    font-size: 1rem;
    color: #555;
}

.btn-primary {
    margin-top: 10px;
}

/* ----------------------------- */

#graphic-design-section {
    position: relative;
    background: linear-gradient(to bottom right, #f0f8ff, #e6f7ff);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

#graphic-design-section h2 {
    color: #007bff;
    text-transform: uppercase;
    font-weight: bold;
    animation: fadeIn 1s ease-in-out;
}

.card {
    border: none;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
}

.floating-graphics {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 1;
}

.floating-icon {
    width: 50px;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .floating-graphics {
        top: -10px;
    }

    .floating-icon {
        width: 40px;
    }

    .card h5 {
        font-size: 16px;
    }

    .card-text,
    .list-group-item {
        font-size: 14px;
    }
}


/* ------------------- */

#uiux-section {
    background: linear-gradient(135deg, #f0f4ff 50%, #fff);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
}

.tool-card {
    text-align: center;
    margin: 10px;
}

.tool-icon {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease-in-out;
}

.tool-card:hover .tool-icon {
    transform: scale(1.2);
}

.prototype-examples a {
    display: block;
    color: #007bff;
    text-decoration: none;
    margin: 5px 0;
    transition: color 0.3s ease-in-out;
}

.prototype-examples a:hover {
    color: #0056b3;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.tool-card {
    cursor: pointer;
}

@media (max-width: 768px) {
    .modal-content {
        width: 100%;
    }
}



/* ---------------------------- */


#projects-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    
}

.project-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.project-btn {
    transition: background 0.3s;
}

.project-btn:hover {
    background-color: #007bff;
    color: white;
}

.project-cards .card {
    border: none;
    transition: transform 0.3s;
}

.project-cards .card:hover {
    transform: scale(1.05);
}

/* -------------------- */


#quiz-section {
    background: #f5f5f5;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.quiz-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quiz-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.take-quiz-btn {
    background-color: #007bff;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.take-quiz-btn:hover {
    background-color: #0056b3;
}

.modal-body {
    max-height: 400px;
    overflow-y: auto;
}

.form-check {
    margin-bottom: 10px;
}



.modal {
    z-index: 99999 !important;
    /* Ensures the modal is on top */
}



/* ----------------------------- */

#trending-technologies {
    background-color: #f8f9fa;
    /* Light background for contrast */
    padding: 20px;
    border-radius: 8px;
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
    /* Scale effect on hover */
}

.card-img-top {
    border-radius: 8px 8px 0 0;
    height: 280px;
    object-fit: cover;
}

/* Animations */

/* ---------------- */

#dev-technologies {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: #000000;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* -------------- */

/* Section Styling */
#student-projects {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.card {
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
}

.like-btn {
    cursor: pointer;
    transition: background-color 0.2s;
}

.like-btn:hover {
    background-color: #28a745;
    color: #fff;
}

.filter-btn.active {
    background-color: #007bff;
    color: #fff;
}

/* cookies */

#cookies-modal {
    border-radius: 5px;
    z-index: 1100;
}


/* -------------------- */

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    /* You can change this to any color or add a loading spinner */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    /* For a fade-out effect */
}

#loading-screen.hide {
    opacity: 0;
    pointer-events: none;
    /* Prevent interaction with hidden screen */
}


/* ----------footer------- */
.footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #ffffff;
    padding: 30px 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    text-align: center;
    width: 100%;
}


/* Footer Logo */
.footer-logo img {
    max-width: 130px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.1);
    /* Scale effect on hover */
}

/* Footer Titles and Text */
.footer-title {
    font-size: 1.4rem;
   
}

.footer-text {
  
    font-size: 0.9rem;
}

/* Footer Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    display: inline;
  
}

.footer-links a {
    color: #ffffff;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #1e90ff;
}

/* Social Media Icons */
.social-media {
    margin-top: 10px;
}

.social-media a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #1e90ff;
}

/* ---------------------------- */
#loading-screen {
    overflow-x: hidden;
}

#loading-screen {
    max-width: 100vw;
}


.section {
    padding: 60px 20px;
    text-align: center;
}

.animate-card {
    width: 100%;
    max-width: 350px;
    margin: 20px auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.5s ease;
}

.animate-card:hover {
    transform: scale(1.05);
}


  .lottie-container {
            height: 150px;
            margin-bottom: 20px;
        }

        .canvas-container {
            width: 100%;
            height: 400px;
            background: #333;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h2 {
                font-size: 1.5rem;
            }

            .section {
                padding: 40px 15px;
            }

            .canvas-container {
                height: 300px;
            }
        }

        /* ---------------------------- */

      
     

        /* Roadmap Section */
     .roadmap-details {
            display: none; /* Hidden initially */
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
        }

        .roadmap-details.active {
            display: grid; /* Enable grid layout */
            grid-template-columns: 1fr 1fr; /* Two equal-width columns */
            gap: 20px; /* Gap between the two sections */
        }

        .roadmap-section {
            background-color: #fff;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
        }

        ul {
            list-style: none;
            padding: 0;
        }

        ul li {
            padding: 10px 0;
        }

        ul li a {
            color: #007bff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        ul li a:hover {
            color: #0056b3;
        }

        /* Responsive design: Stack sections on smaller screens */
        @media (max-width: 768px) {
            .roadmap-details.active {
                grid-template-columns: 1fr; /* Single column layout on smaller screens */
            }
        }
        .roadmap-btn{
            font-size: 18px;
            padding: 10px 20px;
            border-radius: 5px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            margin-bottom:20px;
            color: white;
            border: none;
            transition: background-color 0.3s ease;
            cursor: pointer;
            margin-bottom:20px;
        }
        .roadmap-btn:hover {
            background: linear-gradient(135deg, rgba(24, 15, 34, 0.733)b 0%, #2575fc 100%);
            color:white
        }


        /* ------------------------------- */

        .resource-section {
            background: linear-gradient(135deg, rgba(75, 51, 228, 0.8), rgba(253, 187, 45, 0.7)), 
            url('/Images//topimg5.jpg') no-repeat center center/cover;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .resource-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
           
        }
        
        .resource-title {
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 2;
            color:white;
            position: relative;
            margin-bottom: 20px;
        }
        
        .resource-subtitle {
            font-size: 1.25rem;
            color: #f1f1f1;
            font-weight: 300;
            z-index: 2;
            position: relative;
            margin-bottom: 30px;
        }
        
        .resource-btn-container {
            z-index: 2;
            position: relative;
        }
        
        .resource-btn {
            background-color: #f39c12;
            border: none;
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            border-radius: 50px;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        
        .resource-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
            background-color: #d35400;
        }
        
        /* Media Queries for Responsiveness */
        @media (max-width: 768px) {
            .resource-title {
                font-size: 2rem;
            }
        
            .resource-subtitle {
                font-size: 1rem;
            }
        
            .resource-btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }


        /* ------------------------- */


        /* Course Section Styling */
.course-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    border-radius: 10px;
}

.course-item {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.course-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.course-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.course-item p {
    font-size: 1rem;
    color: #555;
}

.caution-text {
    font-size: 0.9rem;
    color: #d9534f; /* Red color for caution */
    margin-top: 10px;
}

.course-item .btn {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.course-item .btn:hover {
    background-color: #0056b3;
}


/* ========================= */

/* Cyber Roadmap Section */
.cyber-roadmap {
    background-color: #f4f4f4;
    padding: 60px 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.cyber-roadmap::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background-color: rgba(34, 193, 195, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.cyber-roadmap::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background-color: rgba(34, 193, 195, 0.2);
    border-radius: 50%;
    z-index: 0;
}

/* Section Heading */
.cyber-roadmap h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    position: relative;
    z-index: 1;
}

/* Roadmap Title */
.roadmap-title {
    font-size: 1.8rem;
    color: #00bfa5;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Roadmap List */
.cyber-list {
    list-style: none;
    padding-left: 0;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.cyber-list li {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 12px 18px;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    text-decoration: none;
}

.cyber-list li a {
    color: white;
    text-decoration: none;
    
}

.cyber-list li a:hover {
    color:rgb(0, 255, 115);
    transform: translateY(-5px);
    text-decoration: none;
}

.cyber-list li::before {
    content: "";
    width: 8px;
    height: 100%;
    background-color: #ffb700;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 5px 5px 0;
    text-decoration: none;
}


#us-colleges-roadmap {
    background-color: #f9f9f9;
    padding: 50px 0;
}

#us-colleges-roadmap h2 {
    color: #007bff;
    font-weight: bold;
}

#us-colleges-roadmap .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#us-colleges-roadmap .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Unique class names for the roadmap section */
.us-college-roadmap-container {
    background: linear-gradient(135deg, #f9f9f9, #e9f1f7);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.us-college-roadmap-title {
    font-size: 2rem;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 30px;
}

.us-college-roadmap-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.us-college-step-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin: 10px 0;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.us-college-step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.us-college-floating-circle-1 {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: rgba(0, 123, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    animation: us-roadmap-floating 6s ease-in-out infinite;
}

.us-college-floating-circle-2 {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: rgba(0, 123, 255, 0.3);
    border-radius: 50%;
    z-index: -1;
    animation: us-roadmap-floating 8s ease-in-out infinite reverse;
}

@keyframes us-roadmap-floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Animation from Animate.css for roadmap steps */
.us-college-step-item {
    opacity: 0;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
}

/* Button Animation */
.btn-resource {
    background-color: #ff6600;
    color: #fff;
    font-weight: bold;
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-resource:hover {
    background-color: #e65c00;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Modal Header Styling */
.modal-header {
    background-color: #007bff;
    color: #fff;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.modal-body2 {
    background-color: #f5f5f5;
}


.btn-success {
    background-color: #28a745;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
}
.software-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none; /* Remove border */
}

.software-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Shadow effect */
}

.software-card img{
   height:200px;
}
.social-media a.disabled {
    pointer-events: none;  /* Disables clicking */
    opacity: 0.5;          /* Makes the buttons look faded */
}
