/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

 
 
/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #5DBB63;
    text-align: center;
    margin-bottom: 20px; /* Added margin at the bottom */
}

.text-content h1 {
    font-size: 36px;
    color: #222;
}

.highlight {
    color: #007bff;
}

.text-content p {
    font-size: 18px;
    margin-top: 10px;
}
/* Job Steps Section */
.job-steps {
    padding: 50px;
    text-align: center;
    background-color: #f4f4f4;
    margin-top: 20px; /* Added margin at the top */
}

.job-steps h2 {
    font-size: 25px;
    margin-bottom: 20px;
}

/* Steps Navigation */
.steps-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step {
    background-color: #007bff;
    color: rgb(245, 239, 239);
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.step:hover {
    background-color: #0056b3;
}

/* Step Content */
.step-content {
    font-size: 18px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
 
/* Aptitude Section */
.aptitude-section {
    padding: 60px;
    margin-top: 50px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b); /* Vibrant orange gradient */
    color: white;
    text-align: center;
}

/* Ensure the h2 is centered */
.aptitude-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

/* Container for Aptitude Section */
.aptitude-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

/* Content Side */
.aptitude-content {
    text-align: left;
    max-width: 500px;
}

.aptitude-content p {
    font-size: 18px;
    line-height: 1.6;
}

.aptitude-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.aptitude-points li {
    font-size: 16px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Learn More Button */
.learn-more {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.learn-more:hover {
    background: #e68900;
}

/* Aptitude Image */
.aptitude-image img {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .aptitude-container {
        flex-direction: column;
        text-align: center;
    }
    
    .aptitude-content {
        max-width: 100%;
    }

    .aptitude-image img {
        width: 150px;
    }
}

/* Top 100 Coding Questions Section */
.coding-questions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 50px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    text-align: center;
    color: white;
    margin-top: 50px;
}

.coding-questions .text-content {
    max-width: 700px;
}

.coding-questions h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.coding-questions p {
    font-size: 18px;
    margin-bottom: 15px;
}

.button-group {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    margin: 5px;
}

.primary {
    background: #ff5722;
    color: white;
}

.primary:hover {
    background: #e64a19;
}

.secondary {
    background: #ff9800;
    color: white;
}

.secondary:hover {
    background: #e68900;
}

/*html full stack */
 
/* Full Stack Section */
.fullstack-section {
    padding: 60px;
    margin-top: 50px;
    background: linear-gradient(135deg, #1f4037, #99f2c8);
    color: white;
    text-align: center;
}

.fs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.fs-content {
    text-align: left;
    max-width: 500px;
}

.fs-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.fs-points li {
    font-size: 16px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 10px;
}

.learn-now {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.learn-now:hover {
    background: #e68900;
}

.fs-image img {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

/* HTML Animation */
.html-animation {
    font-size: 28px;
    margin-top: 20px;
    font-family: monospace;
    color: #f8f8f8;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.html-animation span {
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.html-animation span:nth-child(1) { animation-delay: 0s; }
.html-animation span:nth-child(2) { animation-delay: 0.2s; }
.html-animation span:nth-child(3) { animation-delay: 0.4s; }
.html-animation span:nth-child(4) { animation-delay: 0.6s; }
.html-animation span:nth-child(5) { animation-delay: 0.8s; }
.html-animation span:nth-child(6) { animation-delay: 1s; }
 


.slider-container {
    width: 100vw;
    height: 420px; /* Adjusted for better spacing */
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    
}

.slider-courses {
    display: flex;
    flex-direction: row;
    position: absolute;
    animation: slideCourses 20s linear infinite;
    gap: 50px;
}

.slider-group {
    display: flex;
    flex-direction: row; /* Keep boxes stacked vertically */
    gap: 20px;
}

.slider-box {
    background-color: #ffffff;
    padding: 20px;
    width: 230px; /* Slightly increased width */
    height: 350px; /* Increased height */
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.slider-box img {
    width: 120px; /* Square shape */
    height: 120px;
    border-radius: 10px;
}

.slider-separator {
    width: 80%;
    height: 2px;
    background-color: #ccc;
    margin: 10px 0;
}

.slider-description {
    font-size: 14px;
    color: #555;
    padding: 0 10px;
}

.slider-button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.slider-button:hover {
    background-color: #0056b3;
}

/* Slower Horizontal scrolling animation */
@keyframes slideCourses {
    0% {
        transform: translateX(0); /* Start immediately */
    }
    100% {
        transform: translateX(-100%); /* Moves smoothly left */
    }
}
 

/* Pause animation on hover */
.slider-container:hover .slider-courses {
    animation-play-state: paused;
}


