* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: rgba(220, 187, 135, 0.1);
}

.hero {
    min-height: 80vh;
    background: linear-gradient(
        135deg,
        rgb(0 0 0) 0%,
        #ffc107 100%
    );
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero .hero-text {
    flex: 1;
    color: white;
}

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
    animation: slideIn 0.5s ease-out;
    font-size: 0.9rem;
}

.hero .badge i {
    color: #FFD700;
}

.hero .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.9;
    animation: fadeInUp 0.5s ease-out 0.4s both;
    text-align : justify;
}

.hero .features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    animation: fadeInUp 0.5s ease-out 0.6s both;
}

.hero .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.hero .feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .feature i {
    font-size: 18px;
    color: #0BCDF0;
}

.hero .hero-course-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    animation: fadeInUp 0.5s ease-out 0.8s both;
}

.hero .highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.hero .highlight i {
    color: #0BCDF0;
    font-size: 1.2rem;
}

.hero .cta-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.5s ease-out 0.8s both;
}

.heor .primary-btn, .hero .secondary-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero.primary-btn {
    background: white;
    color: rgb(0 0 0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .secondary-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero .primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero .hero-image {
    flex: 1;
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.hero .image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero .image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.hero .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero .image-wrapper:hover img {
    transform: scale(1.05);
}

.hero .floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.hero .floating-card i {
    font-size: 24px;
    color: rgb(0 0 0);
}

.hero .card1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.hero .card2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .hero .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero .hero-text h1 {
        font-size: 3rem;
    }

    .hero .features {
        justify-content: center;
    }

    .hero .image-container {
        transform: none;
    }
}

@media (max-width: 768px) {


    .hero .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero .features {
        flex-direction: column;
        align-items: center;
    }

    .hero .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero .primary-btn, .hero .secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {


    .hero .hero-text h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .hero .feature {
        padding: 8px 16px;
    }
}

.hero .form-container {
    flex: 1;
    max-width: 450px;
    animation: fadeInRight 0.8s ease-out;
}

.hero .form-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero .form-card h2 {
    color: rgb(0 0 0);
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-align: center;
}

.hero .form-card p {
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.hero .enroll-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero .form-group {
    position: relative;
}

.hero .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(0 0 0);
}

.hero .form-group input,
.hero .form-group select {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.hero .form-group input:focus,
.hero .form-group select:focus {
    border-color: rgb(0 0 0);
    outline: none;
    box-shadow: 0 0 0 3px rgba(36, 36, 225, 0.1);
}

.hero .submit-btn {
    background: linear-gradient(
        135deg,
        rgb(0 0 0) 0%,
        #ffc107 100%
    );
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.hero .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero .form-footer {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.85rem;
}

.hero .form-footer p {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.hero .form-footer i {
    color: rgb(0 0 0);
}

@media (max-width: 1024px) {
    .hero .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero .hero-text h1 {
        font-size: 3rem;
    }

    .hero .features {
        justify-content: center;
    }

    .hero .form-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero .features {
        flex-direction: column;
        align-items: center;
    }

    .hero .form-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero .hero-text h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .hero .feature {
        padding: 8px 16px;
    }

    .hero .form-card {
        padding: 20px;
    }

    .hero .form-footer {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

.upcoming-batches {
    padding: 60px 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

.upcoming-batches::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.05) 0%, rgba(11, 205, 240, 0.05) 100%);
    z-index: 0;
}

.upcoming-batches .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.upcoming-batches .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(36, 36, 225, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    color: rgb(0 0 0);
    font-weight: 600;
    font-size: 0.9rem;
}

.upcoming-batches .header-badge i {
    color: rgb(0 0 0);
}

.upcoming-batches .section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

.upcoming-batches .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(0 0 0), #ffc107);
    border-radius: 2px;
}

.upcoming-batches .section-header p {
    color: #666;
    font-size: 1rem;
}

.upcoming-batches .batches-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.upcoming-batches .batch-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
	width :300px;
    display: flex;
    flex-direction: column;
}

.upcoming-batches .batch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgb(0 0 0), #ffc107);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.upcoming-batches .batch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.upcoming-batches .batch-card:hover::before {
    opacity: 1;
}

.upcoming-batches .batch-card.featured {
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.05) 0%, rgba(11, 205, 240, 0.05) 100%);
    border: 2px solid rgba(36, 36, 225, 0.2);
}

.upcoming-batches .featured-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: rgb(0 0 0);
    color: white;
    padding: 6px 35px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
}

.upcoming-batches .batch-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(36, 36, 225, 0.1);
    border-radius: 12px;
    width: 70px;
}

.upcoming-batches .batch-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(0 0 0);
    line-height: 1;
}

.upcoming-batches .batch-date .month {
    font-size: 1rem;
    color: rgb(0 0 0);
    font-weight: 600;
}

.upcoming-batches .batch-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.upcoming-batches .batch-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.upcoming-batches .detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
}

.upcoming-batches .detail i {
    color: rgb(0 0 0);
    font-size: 1rem;
    width: 20px;
}

.upcoming-batches .enroll-now-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, rgb(0 0 0) 0%, #ffc107 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.upcoming-batches .enroll-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(36, 36, 225, 0.2);
}

@media (max-width: 768px) {
    .upcoming-batches {
        padding: 50px 20px;
    }

    .upcoming-batches .section-header h2 {
        font-size: 1.8rem;
    }

    .upcoming-batches .batches-container {
        grid-template-columns: 1fr;
        gap: 20px;
		place-items: center;
    }

    .upcoming-batches .batch-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .upcoming-batches .section-header h2 {
        font-size: 1.6rem;
    }

    .upcoming-batches .section-header p {
        font-size: 0.9rem;
    }

    .upcoming-batches .batch-card {
        padding: 15px;
    }

    .upcoming-batches .batch-info h3 {
        font-size: 1.2rem;
    }

    .upcoming-batches .detail {
        font-size: 0.9rem;
    }
}


.about-institute {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.95) 0%, rgba(11, 205, 240, 0.95) 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.about-institute .about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-institute .about-image {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-institute .image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-institute .slider-container {
    display: flex;
    width: 400%;
    height: 100%;
    animation: slide 20s infinite;
}

.about-institute .slide {
    width: 25%;
    height: 100%;
}

.about-institute .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes slide {
    0% { transform: translateX(0); }
    25% { transform: translateX(-25%); }
    50% { transform: translateX(-50%); }
    75% { transform: translateX(-75%); }
    100% { transform: translateX(0); }
}

.about-institute .about-text {
    color: white;
}

.about-institute .about-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-institute .about-text .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-institute .about-text .header-badge i {
    color: #FFD700;
}

.about-institute .about-text h2 {
    color: white;
    font-size: 2.4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-institute .about-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.about-institute .key-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-institute .point {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.about-institute .point:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.about-institute .point i {
    color: #FFD700;
    font-size: 1.2rem;
}

.about-institute .point span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
    .about-institute .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-institute .about-text .section-header {
        text-align: center;
    }

    .about-institute .about-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-institute {
        padding: 60px 20px;
    }

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

    .about-institute .about-image {
        height: 350px;
    }

    .about-institute .key-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-institute .about-text h2 {
        font-size: 1.8rem;
    }

    .about-institute .about-image {
        height: 300px;
    }
}

course-modules {
    padding: 60px 20px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.course-modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(36, 36, 225, 0.03)"/></svg>');
    opacity: 0.5;
}

.course-modules .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.course-modules .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(36, 36, 225, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    color: rgb(0 0 0);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.course-modules .header-badge i {
    color: rgb(0 0 0);
}

.course-modules .section-header h2 {
    font-size: 2.4rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.course-modules .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(0 0 0), #ffc107);
    border-radius: 2px;
}

.course-modules .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.course-modules .modules-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.course-modules .module-row {
    display: contents;
}

.course-modules .module-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.course-modules .module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.1) 0%, rgba(11, 205, 240, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-modules .module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.course-modules .module-card:hover::before {
    opacity: 1;
}

.course-modules .module-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.course-modules .module-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.1) 0%, rgba(11, 205, 240, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.course-modules .module-card:hover .module-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.2) 0%, rgba(11, 205, 240, 0.2) 100%);
}

.course-modules .module-icon i {
    font-size: 24px;
    color: rgb(0 0 0);
    transition: all 0.3s ease;
}

.course-modules .module-card:hover .module-icon i {
    transform: scale(1.1);
}

.course-modules .module-info {
    flex: 1;
}

.course-modules .module-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(36, 36, 225, 0.5);
    margin-bottom: 5px;
    display: block;
}

.course-modules .module-card h3 {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.3;
    margin: 0;
    transition: all 0.3s ease;
}

.course-modules .module-card:hover h3 {
    color: rgb(0 0 0);
}

@media (max-width: 1024px) {
    .course-modules .module-row {
        flex-wrap: wrap;
    }

    .course-modules .module-card {
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .course-modules {
        padding: 50px 20px;
    }

    .course-modules .section-header h2 {
        font-size: 2rem;
    }

    .course-modules .module-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .course-modules .section-header h2 {
        font-size: 1.8rem;
    }

    .course-modules .section-header p {
        font-size: 1rem;
    }

    .course-modules .module-card {
        padding: 15px;
    }

    .course-modules .module-card h3 {
        font-size: 1rem;
    }
}

.course-highlights {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.95) 0%, rgba(11, 205, 240, 0.95) 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.course-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.course-highlights .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.course-highlights .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.course-highlights .header-badge i {
    color: #FFD700;
}

.course-highlights .section-header h2 {
    font-size: 2.4rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.course-highlights .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.course-highlights .highlights-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.course-highlights .highlight-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-highlights .highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-highlights .highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.course-highlights .highlight-card:hover::before {
    opacity: 1;
}

.course-highlights .highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.course-highlights .highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.course-highlights .highlight-icon i {
    font-size: 28px;
    color: #FFD700;
    transition: all 0.3s ease;
}

.course-highlights .highlight-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.course-highlights .highlight-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

.course-highlights .highlight-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-highlights .highlight-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-highlights .highlight-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.course-highlights .highlight-features li i {
    color: #FFD700;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .course-highlights {
        padding: 60px 20px;
    }

    .course-highlights .section-header h2 {
        font-size: 2rem;
    }

    .course-highlights .highlight-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .course-highlights .section-header h2 {
        font-size: 1.8rem;
    }

    .course-highlights .section-header p {
        font-size: 1rem;
    }

    .course-highlights .highlight-card {
        padding: 20px;
    }

    .course-highlights .highlight-card h3 {
        font-size: 1.2rem;
    }
}

.job-profiles {
    padding: 80px 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

.job-profiles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(36, 36, 225, 0.03)"/></svg>');
    opacity: 0.5;
}

.job-profiles .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.job-profiles .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(36, 36, 225, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    color: rgb(0 0 0);
    font-weight: 600;
    font-size: 0.9rem;
}

.job-profiles .header-badge i {
    color: rgb(0 0 0);
}

.job-profiles .section-header h2 {
    font-size: 2.4rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.job-profiles .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(0 0 0), #ffc107);
    border-radius: 2px;
}

.job-profiles .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.job-profiles .profiles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.job-profiles .profile-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.job-profiles .profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.05) 0%, rgba(11, 205, 240, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-profiles .profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.job-profiles .profile-card:hover::before {
    opacity: 1;
}

.job-profiles .profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(36, 36, 225, 0.1);
}

.job-profiles .profile-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.1) 0%, rgba(11, 205, 240, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.job-profiles .profile-card:hover .profile-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.2) 0%, rgba(11, 205, 240, 0.2) 100%);
}

.job-profiles .profile-icon i {
    font-size: 24px;
    color: rgb(0 0 0);
    transition: all 0.3s ease;
}

.job-profiles .profile-title {
    flex: 1;
}

.job-profiles .profile-title h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
}

.job-profiles .salary {
    font-size: 0.9rem;
    color: rgb(0 0 0);
    font-weight: 600;
}

.job-profiles .profile-content {
    margin-top: 15px;
}

.job-profiles .profile-skills {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.job-profiles .profile-skills li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.job-profiles .profile-skills li i {
    color: rgb(0 0 0);
    font-size: 0.9rem;
}

.job-profiles .profile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid rgba(36, 36, 225, 0.1);
}

.job-profiles .experience {
    background: rgba(36, 36, 225, 0.1);
    color: rgb(0 0 0);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-profiles .location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
}

.job-profiles .location i {
    color: rgb(0 0 0);
}

@media (max-width: 768px) {
    .job-profiles {
        padding: 60px 20px;
    }

    .job-profiles .section-header h2 {
        font-size: 2rem;
    }

    .job-profiles .profile-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .job-profiles .section-header h2 {
        font-size: 1.8rem;
    }

    .job-profiles .section-header p {
        font-size: 1rem;
    }

    .job-profiles .profile-card {
        padding: 15px;
    }

    .job-profiles .profile-title h3 {
        font-size: 1.2rem;
    }
}

.why-choose-us {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.95) 0%, rgba(11, 205, 240, 0.95) 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.why-choose-us .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.why-choose-us .header-badge i {
    color: #FFD700;
}

.why-choose-us .section-header h2 {
    font-size: 2.4rem;
    color: white;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.why-choose-us .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

.why-choose-us .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-us .feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-choose-us .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-us .feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.why-choose-us .feature-card:hover::before {
    opacity: 1;
}

.why-choose-us .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-choose-us .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.why-choose-us .feature-icon i {
    font-size: 28px;
    color: #FFD700;
    transition: all 0.3s ease;
}

.why-choose-us .feature-content {
    flex: 1;
}

.why-choose-us .feature-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.why-choose-us .feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

.why-choose-us .feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.why-choose-us .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-us .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.why-choose-us .feature-list li i {
    color: #FFD700;
    font-size: 1rem;
}

.why-choose-us .feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.why-choose-us .feature-card:hover .feature-number {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 20px;
    }

    .why-choose-us .section-header h2 {
        font-size: 2rem;
    }

    .why-choose-us .feature-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .why-choose-us .section-header h2 {
        font-size: 1.8rem;
    }

    .why-choose-us .section-header p {
        font-size: 1rem;
    }

    .why-choose-us .feature-card {
        padding: 20px;
    }

    .why-choose-us .feature-card h3 {
        font-size: 1.2rem;
    }
}

.placement-partners {
    padding: 80px 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

.placement-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(36, 36, 225, 0.03)"/></svg>');
    opacity: 0.5;
}

.placement-partners .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.placement-partners .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(36, 36, 225, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    color: rgb(0 0 0);
    font-weight: 600;
    font-size: 0.9rem;
}

.placement-partners .header-badge i {
    color: rgb(0 0 0);
}

.placement-partners .section-header h2 {
    font-size: 2.4rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.placement-partners .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(0 0 0), #ffc107);
    border-radius: 2px;
}

.placement-partners .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.placement-partners .partners-slider {
    max-width: 1200px;
    margin: 0 auto 50px;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.placement-partners .slider-container {
    display: flex;
    animation: slide 30s linear infinite;
    width: calc(150px * 16);
}

.placement-partners .slide {
    flex: 0 0 150px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placement-partners .slide img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.placement-partners .slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 8));
    }
}

.placement-partners .placement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.placement-partners .stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.placement-partners .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.placement-partners .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.1) 0%, rgba(11, 205, 240, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.placement-partners .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.2) 0%, rgba(11, 205, 240, 0.2) 100%);
}

.placement-partners .stat-icon i {
    font-size: 28px;
    color: rgb(0 0 0);
    transition: all 0.3s ease;
}

.placement-partners .stat-content h3 {
    font-size: 2rem;
    color: rgb(0 0 0);
    margin-bottom: 5px;
    font-weight: 700;
}

.placement-partners .stat-content p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .placement-partners {
        padding: 60px 20px;
    }

    .placement-partners .section-header h2 {
        font-size: 2rem;
    }

    .placement-partners .stat-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .placement-partners .section-header h2 {
        font-size: 1.8rem;
    }

    .placement-partners .section-header p {
        font-size: 1rem;
    }

    .placement-partners .stat-card {
        padding: 20px;
    }

    .placement-partners .stat-content h3 {
        font-size: 1.8rem;
    }
}

/* Add this new animation for infinite loop */
.placement-partners .slider-container {
    display: flex;
    animation: slideInfinite 30s linear infinite;
    width: calc(150px * 16);
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 8));
    }
}

/* Add hover pause effect */
.placement-partners .partners-slider:hover .slider-container {
    animation-play-state: paused;
}

.digital-tools {     
    padding: 80px 20px;     
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.95) 0%, rgba(11, 205, 240, 0.95) 100%);     
    position: relative;     
    overflow: hidden;     
    color: white; 
}  

.digital-tools::before {     
    content: '';     
    position: absolute;     
    top: 0;     
    left: 0;     
    right: 0;     
    bottom: 0;     
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');     
    opacity: 0.3; 
}  

.digital-tools .section-header {     
    text-align: center;     
    margin-bottom: 50px;     
    position: relative;     
    z-index: 1; 
}  

.digital-tools .header-badge {     
    display: inline-flex;     
    align-items: center;     
    gap: 8px;     
    background: rgba(255, 255, 255, 0.2);     
    padding: 8px 16px;     
    border-radius: 50px;     
    margin-bottom: 15px;     
    color: white;     
    font-weight: 600;     
    font-size: 0.9rem;     
    backdrop-filter: blur(5px);     
    border: 1px solid rgba(255, 255, 255, 0.3); 
}  

.digital-tools .header-badge i {     
    color: #FFD700; 
}  

.digital-tools .section-header h2 {     
    font-size: 2.4rem;     
    color: white;     
    margin-bottom: 15px;     
    position: relative;     
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); 
}  

.digital-tools .section-header h2::after {     
    content: '';     
    position: absolute;     
    bottom: -8px;     
    left: 50%;     
    transform: translateX(-50%);     
    width: 80px;     
    height: 4px;     
    background: #FFD700;     
    border-radius: 2px; 
}  

.digital-tools .section-header p {     
    color: rgba(255, 255, 255, 0.9);     
    font-size: 1.1rem;     
    max-width: 600px;     
    margin: 0 auto; 
}  

.digital-tools .tools-slider {     
    max-width: 1200px;     
    margin: 0 auto;     
    position: relative;     
    overflow: hidden;     
    padding: 20px 0; 
}  

.digital-tools .slider-container {     
    display: flex;     
    animation: slideTools 30s linear infinite;     
    width: calc(200px * 16); 
}  

.digital-tools .slide {     
    flex: 0 0 200px;     
    padding: 0 20px;     
    text-align: center;     
    transition: all 0.3s ease;
    height: auto; /* Remove fixed height */
}  

.digital-tools .slide img {     
    width: 220px; /* Fixed consistent size */
    height: 120px; /* Fixed consistent size */
    object-fit: contain; /* Ensures logo fits properly */
    margin: 0 auto 15px;     
    border-radius: 15px;     
    background: rgba(255, 255, 255, 0.95);     
    padding: 15px;     
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);     
    transition: all 0.3s ease; 
}  

.digital-tools .slide:hover img {     
    transform: translateY(-5px) scale(1.05);     
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);     
    background: white; 
}  

.digital-tools .slide h3 {     
    font-size: 1.1rem;     
    color: white;     
    margin-bottom: 5px;     
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); 
}  

.digital-tools .slide p {     
    font-size: 0.9rem;     
    color: rgba(255, 255, 255, 0.8); 
}  

@keyframes slideTools {     
    0% {         
        transform: translateX(0);     
    }     
    100% {         
        transform: translateX(calc(-200px * 8));     
    } 
}  

.digital-tools .tools-slider:hover .slider-container {     
    animation-play-state: paused; 
}  

@media (max-width: 768px) {     
    .digital-tools {         
        padding: 60px 20px;     
    }      
    .digital-tools .section-header h2 {         
        font-size: 2rem;     
    }      
    .digital-tools .slide {         
        flex: 0 0 160px;     
    }      
    .digital-tools .slide img {         
        width: 100px;         
        height: 100px;     
    } 
}  

@media (max-width: 480px) {     
    .digital-tools .section-header h2 {         
        font-size: 1.8rem;     
    }      
    .digital-tools .section-header p {         
        font-size: 1rem;     
    }      
    .digital-tools .slide {         
        flex: 0 0 140px;     
    }      
    .digital-tools .slide img {         
        width: 80px;         
        height: 80px;     
    }      
    .digital-tools .slide h3 {         
        font-size: 1rem;     
    } 
}

.certifications {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    color: #333;
}

.certifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(26, 35, 126, 0.03)"/></svg>');
    opacity: 0.5;
}

.certifications .section-header {
    text-align: left;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.certifications .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 35, 126, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    color: #1a237e;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(26, 35, 126, 0.2);
}

.certifications .header-badge i {
    color: #1a237e;
}

.certifications .section-header h2 {
    font-size: 2.4rem;
    color: #1a237e;
    margin-bottom: 15px;
    position: relative;
}

.certifications .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #0d47a1);
    border-radius: 2px;
}

.certifications .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.certifications .certifications-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.certifications .slider-container {
    display: flex;
    animation: slideCertifications 30s linear infinite;
    width: calc(300px * 12);
}

.certifications .slide {
    flex: 0 0 300px;
    padding: 0 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.certifications .slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 35, 126, 0.1);
}

.certifications .slide:hover img {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.15);
    border-color: #1a237e;
}

.certifications .slide h3 {
    font-size: 1.2rem;
    color: #1a237e;
    margin-bottom: 8px;
    font-weight: 600;
}

.certifications .slide p {
    font-size: 0.95rem;
    color: #666;
}

@keyframes slideCertifications {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6));
    }
}

.certifications .certifications-slider:hover .slider-container {
    animation-play-state: paused;
}

@media (max-width: 1024px) {
    .certifications .slider-container {
        width: calc(250px * 12);
    }

    .certifications .slide {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .certifications {
        padding: 60px 20px;
    }

    .certifications .section-header h2 {
        font-size: 2rem;
    }

    .certifications .slider-container {
        width: calc(200px * 12);
    }

    .certifications .slide {
        flex: 0 0 200px;
    }

    .certifications .slide img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .certifications .section-header h2 {
        font-size: 1.8rem;
    }

    .certifications .section-header p {
        font-size: 1rem;
    }

    .certifications .slider-container {
        width: calc(150px * 12);
    }

    .certifications .slide {
        flex: 0 0 150px;
    }

    .certifications .slide img {
        height: 120px;
    }

    .certifications .slide h3 {
        font-size: 1rem;
    }
}

.course-content {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.course-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(26, 35, 126, 0.03)"/></svg>');
    opacity: 0.5;
}

.course-content .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.course-content .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 35, 126, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    color: #1a237e;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(26, 35, 126, 0.2);
}

.course-content .header-badge i {
    color: #1a237e;
}

.course-content .section-header h2 {
    font-size: 2.4rem;
    color: #1a237e;
    margin-bottom: 15px;
    position: relative;
}

.course-content .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #0d47a1);
    border-radius: 2px;
}

.course-content .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.course-content .content-box {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(26, 35, 126, 0.1);
}

.course-content .content-wrapper {
    height: 600px;
    overflow-y: auto;
    padding: 30px;
    scrollbar-width: thin;
    scrollbar-color: #1a237e #f5f5f5;
}

.course-content .content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.course-content .content-wrapper::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 8px;
}

.course-content .content-wrapper::-webkit-scrollbar-thumb {
    background: #1a237e;
    border-radius: 8px;
}

.course-content .content-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(26, 35, 126, 0.1);
    text-align: left;
}

.course-content .content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.course-content .content-section h3 {
    color: #1a237e;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.course-content .content-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #1a237e;
    border-radius: 2px;
    flex-shrink: 0;
}

.course-content .content-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.course-content .content-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    text-align: left;
}

.course-content .content-section li {
    color: #666;
    font-size: 0.95rem;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    text-align: left;
}

.course-content .content-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a237e;
    font-weight: bold;
}

.course-content .intro-section p {
    grid-column: 1 / -1;
    margin-bottom: 15px;
}

.course-content .benefits-list,
.course-content .career-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

@media (max-width: 1024px) {
    .course-content .content-box {
        max-width: 90%;
    }
    
    .course-content .content-wrapper {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .course-content {
        padding: 60px 20px;
    }

    .course-content .section-header h2 {
        font-size: 2rem;
    }

    .course-content .content-wrapper {
        height: 500px;
    }

    .course-content .content-section h3 {
        font-size: 1.2rem;
    }
    
    .course-content .content-section ul {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .course-content .section-header h2 {
        font-size: 1.8rem;
    }

    .course-content .section-header p {
        font-size: 1rem;
    }

    .course-content .content-wrapper {
        height: 450px;
        padding: 20px;
    }

    .course-content .content-section ul {
        grid-template-columns: 1fr;
    }
    
    .course-content .content-section h3 {
        font-size: 1.1rem;
    }
}
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.95) 0%, rgba(11, 205, 240, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255, 255, 255, 0.03)"/></svg>');
    opacity: 0.5;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.faq-section .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.faq-section .header-badge i {
    color: #ffd700;
}

.faq-section .section-header h2 {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
}

.faq-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffa000);
    border-radius: 2px;
}

.faq-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section .faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-section .faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-section .faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-section .faq-question h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.faq-section .faq-question i {
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-section .faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.1);
}

.faq-section .faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-section .faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    padding: 20px 25px;
    margin: 0;
    font-size: 1rem;
}

.faq-section .faq-answer ul {
    list-style: none;
    padding: 0 25px 20px;
    margin: 0;
}

.faq-section .faq-answer ul li {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.faq-section .faq-answer ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-section .section-header h2 {
        font-size: 2rem;
    }

    .faq-section .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section .section-header h2 {
        font-size: 1.8rem;
    }

    .faq-section .section-header p {
        font-size: 1rem;
    }

    .faq-section .faq-question {
        padding: 15px 20px;
    }

    .faq-section .faq-answer p,
    .faq-section .faq-answer ul {
        padding: 15px 20px;
    }
}

.contact-us {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(36, 36, 225, 0.03)"/></svg>');
    opacity: 0.5;
}

.contact-us .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact-us .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.1) 0%, rgba(11, 205, 240, 0.1) 100%);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(36, 36, 225, 0.2);
}

.contact-us .header-badge i {
    color: #000;
}

.contact-us .section-header h2 {
    font-size: 2.4rem;
    color: #000;
    margin-bottom: 15px;
    position: relative;
}

.contact-us .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.95) 0%, rgba(11, 205, 240, 0.95) 100%);
    border-radius: 2px;
}

.contact-us .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-us .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contact-us .contact-info {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    text-align: left;
}

.contact-us .info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(36, 36, 225, 0.1);
    border: 1px solid rgba(36, 36, 225, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-us .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.05) 0%, rgba(11, 205, 240, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-us .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(36, 36, 225, 0.15);
}

.contact-us .info-card:hover::before {
    opacity: 1;
}

.contact-us .info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.1) 0%, rgba(11, 205, 240, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-us .info-card:hover .info-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(36, 36, 225, 0.2) 0%, rgba(11, 205, 240, 0.2) 100%);
}

.contact-us .info-icon i {
    font-size: 1.8rem;
    color: #000;
    transition: all 0.3s ease;
}

.contact-us .info-card:hover .info-icon i {
    color: #0bcdf0;
}

.contact-us .info-content h3 {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
    text-align: left;
}

.contact-us .info-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.contact-us .contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(36, 36, 225, 0.1);
    border: 1px solid rgba(36, 36, 225, 0.1);
    transition: all 0.3s ease;
}

.contact-us .contact-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(36, 36, 225, 0.15);
}

.contact-us .contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

@media (max-width: 1024px) {
    .contact-us .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-us .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-us {
        padding: 60px 20px;
    }

    .contact-us .section-header h2 {
        font-size: 2rem;
    }

    .contact-us .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-us .info-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-us .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-us .section-header p {
        font-size: 1rem;
    }

    .contact-us .info-card {
        padding: 20px;
    }

    .contact-us .info-icon {
        width: 50px;
        height: 50px;
    }

    .contact-us .info-icon i {
        font-size: 1.5rem;
    }

    .contact-us .info-content h3 {
        font-size: 1.2rem;
    }

    .contact-us .info-content p {
        font-size: 0.95rem;
    }
}

/* Author page */
.author-page {
    padding: 40px 20px;
}
.author-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}
.author-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}
.author-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.author-avatar img { border-radius: 50%; }
.author-name {
    font-size: 1.4rem;
    margin: 12px 0;
}
.author-email-btn {
    display: inline-block;
    background: linear-gradient(135deg, rgb(0 0 0) 0%, #ffc107 100%);
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}
.author-company, .author-follow, .author-expertise, .author-tools { 
    background: #fff; 
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px; 
    padding: 16px 20px; 
    margin-top: 16px; 
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.author-follow ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.author-follow a { color: #000; text-decoration: none; }
.author-follow .icon-list { display: flex; gap: 14px; align-items: center; }
.author-follow .icon { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #eef5ff; color: #000; text-decoration: none; transition: all .2s ease; }
.author-follow .icon:hover { background: #000; color: #fff; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: #f0f3ff; color: #000; border: 1px solid #e1e6ff; padding: 6px 10px; border-radius: 999px; font-size: 12px; text-decoration: none; }
/* Author chips: white background and subtle shadow */
.author-tools .chip, .author-expertise .chip {
    background: #ffffff;
    border: 1px solid #e8edff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.author-tools .chip:hover, .author-expertise .chip:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.author-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.author-about, .author-articles { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 20px; }
.author-about h2, .author-articles h2 { font-size: 1.4rem; margin-bottom: 12px; }
.author-about p { color: #555; }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.article-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.04); }
.article-card .thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.article-card .card-body { padding: 12px 14px; }
.card-kicker { color: #6b7280; font-size: 12px; margin-bottom: 6px; }
.card-title { font-size: 1rem; line-height: 1.3; margin: 0 0 8px; }
.card-title a { color: #111827; text-decoration: none; }
.card-title a:hover { color: #2424e1; }
.card-meta { display: flex; gap: 8px; align-items: center; color: #6b7280; font-size: 12px; }

.author-pagination { margin-top: 18px; }

@media (max-width: 992px) {
    .author-layout { grid-template-columns: 1fr; }
    .author-sidebar { position: static; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .articles-grid { grid-template-columns: 1fr; }
}

/* Footer Course Icons */
.footer .list-unstyled li a i {
    margin-right: 8px;
    background-color: #ffc107;
    color: #000;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
}
