/* Global Styles */
:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --secondary-color: #10b981;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --light-gray: #e2e8f0;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --success-color: #10b981;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}


.dropdown-menu {
    position: absolute;
    z-index: 1000;
}
.navbar-menu li {
    position: relative;
    overflow: visible !important; 
}

.navbar-menu li.dropdown {
  position: relative; /* makes absolute children align to this li */
}

.navbar-menu li.dropdown .dropdown-menu {
  position: absolute;
  top: 100%; /* places below button */
  left: 50%; /* start from center */
  transform: translateX(-50%); /* truly center it */
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  z-index: 100;
}


.navbar-menu {
    display: flex;
    list-style: none;
    margin-right: 25px;
}

.navbar-menu li {
    margin-left: 30px;
    position: relative;
}

.navbar-menu li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-menu li a:hover {
    color: var(--primary-color);
}

.navbar-menu li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.user-greet a {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.user-greet i {
    margin-right: 5px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: var(--dark-color);
}

.dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.dropdown-menu li a.active {
    background-color: rgba(79, 70, 229, 0.1);
}

/* Mobile Menu */
.navbar-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Sections */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: float 3s ease-in-out infinite;
}

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

/* Page-specific hero styles */
.about-hero, .courses-hero, .workshops-hero, 
.webinars-hero, .projects-hero, .verify-hero, 
.careers-hero, .contact-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.about-hero h1, .courses-hero h1, .workshops-hero h1, 
.webinars-hero h1, .projects-hero h1, .verify-hero h1, 
.careers-hero h1, .contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-hero p, .courses-hero p, .workshops-hero p, 
.webinars-hero p, .projects-hero p, .verify-hero p, 
.careers-hero p, .contact-hero p {
    font-size: 1.2rem;
    color: var(--gray-color);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8fafc;
}



.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-color);
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Placed Students Section */
.placed-students {
    background-color: white;
}

.students-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.student-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.student-card:hover {
    transform: translateY(-5px);
}

.student-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
    padding: 3px;
}

.student-card p {
    font-weight: 500;
    color: var(--dark-color);
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Certifications Section */
.certifications {
    background-color: #f8fafc;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-items: center;
}

.cert-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-card img {
    max-width: 100%;
    height: auto;
}

/* Gallery Section */
.gallery {
    background-color: white;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    height: 200px;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* About Page Styles */
.mission-vision {
    background-color: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mv-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Timeline */
.journey {
    background-color: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd)::after {
    right: -12px;
}

.timeline-item:nth-child(even)::after {
    left: -12px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Team Section */
.team {
    background-color: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: fit-content;
    object-fit: cover;
}

.message{
   font-size: 25px;
}

.team-card h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

.team-card p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px 20px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Courses Page Styles */
.course-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.course-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.course-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: 0.9rem;
    
}

.course-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Course Benefits */
.course-benefits {
    background-color: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Workshops Page Styles */
.workshop-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.workshop-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
}

.workshop-date {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.workshop-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.workshop-date .month {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 5px 0;
}

.workshop-date .year {
    font-size: 0.9rem;
    opacity: 0.8;
}

.workshop-content {
    padding: 20px;
    flex: 1;
}

.workshop-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.workshop-meta {
    color: var(--gray-color);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.workshop-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.workshop-desc {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.workshop-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.workshop-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Past Workshops */
.past-workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.past-workshop-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.past-workshop-card:hover {
    transform: translateY(-5px);
}

.past-workshop-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.past-workshop-content {
    padding: 20px;
}

.past-workshop-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.past-workshop-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

/* Webinars Page Styles */
.featured-webinar {
    background-color: #f8fafc;
    padding: 60px 0;
}

.featured-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.webinar-video {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.webinar-details {
    flex: 1;
}

.webinar-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.webinar-meta {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.webinar-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.webinar-desc {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.webinar-speaker {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.webinar-speaker img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.webinar-speaker h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.webinar-speaker p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Upcoming Webinars */
.webinar-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.webinar-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.webinar-card:hover {
    transform: translateY(-5px);
}

.webinar-date {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
}

.webinar-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.webinar-date .month {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 5px;
}

.webinar-content {
    padding: 20px;
    flex: 1;
}

.webinar-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.webinar-meta {
    color: var(--gray-color);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.webinar-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.webinar-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Past Webinars */
.past-webinar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.past-webinar-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.past-webinar-card:hover {
    transform: translateY(-5px);
}

.webinar-thumbnail {
    position: relative;
}

.webinar-thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.past-webinar-card:hover .play-icon {
    background-color: var(--primary-color);
    color: white;
}

.webinar-info {
    padding: 15px;
}

.webinar-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.webinar-meta {
    color: var(--gray-color);
    font-size: 0.85rem;
}

.webinar-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.view-more {
    text-align: center;
    margin-top: 40px;
}

/* Projects Page Styles */
.category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 10px 20px;
    background-color: white;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.difficulty {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.difficulty.beginner {
    background-color: var(--success-color);
}

.difficulty.intermediate {
    background-color: var(--warning-color);
}

.difficulty.advanced {
    background-color: var(--danger-color);
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.project-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.project-tech span {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Project Guidance */
.guidance-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.guidance-text {
    flex: 1;
}

.guidance-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.guidance-text ul {
    margin-bottom: 30px;
}

.guidance-text li {
    margin-bottom: 10px;
    color: var(--gray-color);
    display: flex;
    align-items: flex-start;
}

.guidance-text i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
}

.guidance-image {
    flex: 1;
}

.guidance-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Verify Certificate Page */
.verification-form {
    background-color: #f8fafc;
    padding: 60px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Verification Result */
.verification-result {
    background-color: white;
    padding: 60px 0;
}

.result-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.result-header {
    text-align: center;
    margin-bottom: 30px;
}

.result-header h2 {
    font-size: 2rem;
    color: var(--success-color);
    margin-bottom: 10px;
}

.result-header p {
    color: var(--gray-color);
}

.certificate-details {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.certificate-image {
    flex: 1;
}

.certificate-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.certificate-info {
    flex: 1;
}

.certificate-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.certificate-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.certificate-info li {
    margin-bottom: 10px;
    display: flex;
}

.certificate-info strong {
    min-width: 120px;
    display: inline-block;
    color: var(--dark-color);
}

.status-valid {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Invalid Result */
.verification-result.invalid {
    background-color: #fef2f2;
}

.verification-result.invalid .result-header h2 {
    color: var(--danger-color);
}

.verification-result.invalid .result-header p {
    color: var(--danger-color);
}

.verification-result.invalid .certificate-info {
    text-align: center;
}

.verification-result.invalid .certificate-info p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

/* Why Verify Section */
.why-verify {
    background-color: #f8fafc;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Careers Page Styles */
.open-positions {
    background-color: #f8fafc;
}

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

.position-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
}

.position-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.position-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.position-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.position-desc {
    margin-bottom: 25px;
}

.position-desc p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.position-desc h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.position-desc ul {
    margin-left: 20px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.position-desc li {
    margin-bottom: 8px;
}

/* Why Join Us */
.why-join {
    background-color: white;
}

/* Application Form */
.application-form {
    background-color: #f8fafc;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Application Success */
.application-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.success-content {
    text-align: center;
    max-width: 500px;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.success-content i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.success-content p {
    color: var(--gray-color);
    margin-bottom: 25px;
}

/* Contact Page Styles */
.contact-info {
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    text-align: center;
    padding: 30px;
    background-color: #f8fafc;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-card p {
    color: var(--gray-color);
}

/* Contact Form Section */
.contact-form-container {
    display: flex;
    gap: 40px;
}

.form-content {
    flex: 1;
}

.map-container {
    flex: 1;
}

.map-container h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Contact Success */
.contact-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

/* FAQ Section */
.faq-section {
    background-color: #f8fafc;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f1f5f9;
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-col i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        margin-bottom: 50px;
        text-align: center;
    }

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

    .featured-content {
        flex-direction: column;
    }

    .webinar-details {
        margin-top: 40px;
    }

    .contact-form-container {
        flex-direction: column;
    }

    .form-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: all 0.5s ease;
    }

    .navbar-menu.active {
        left: 0;
    }

    .navbar-menu li {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        margin-top: 10px;
    }

    .navbar-toggle {
        display: flex;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 19px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .guidance-content {
        flex-direction: column;
    }

    .guidance-text {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .certificate-details {
        flex-direction: column;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
}

.modal-header {
    margin-bottom: 20px;
    text-align: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.modal-header p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.modal-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.forgot-password {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    margin-top: 5px;
    color: var(--primary-color);
    text-decoration: none;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Login Button in Navbar */
.btn-login {
    padding: 6px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: var(--primary-dark);
}

/* User Menu (shown after login) */
.user-menu {
    display: flex;
    align-items: center;
    position: relative;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
}

.user-dropdown a {
    display: block;
    padding: 8px 15px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.user-dropdown a:hover {
    background-color: var(--light-gray);
}

.user-dropdown .divider {
    height: 1px;
    background-color: var(--light-gray);
    margin: 5px 0;
}


.placed-students {
    overflow: hidden;
    position: relative;
}

.students-grid {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    width: max-content; /* Make container as wide as its content */
    animation: scroll 30s linear infinite;
}

.student-card {
    flex: 0 0 auto;
    width: 150px; /* Adjust based on your design */
    text-align: center;
}

/* Pause animation on hover */
.students-grid:hover {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .student-card {
        width: 120px;
    }
    
    .students-grid {
        gap: 15px;
        animation-duration: 20s; /* Faster scroll on mobile */
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px)); /* Adjust based on your gap */
    }
}

  /* Testimonials Carousel */
    .testimonials {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .section-title {
        text-align: center;
        font-size: 32px;
        margin-bottom: 50px;
        color: #2c3e50;
    }
    
    .testimonial-carousel {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
   .testimonial-slide {
    flex: 0 0 16.666%; /* Show 6 slides at a time (100%/6) */
    padding: 0 15px;
    box-sizing: border-box;
}
    
.testimonial-track {
    display: flex;
    width: 200%; /* Double width for smooth looping */
    animation: scroll 30s linear infinite;
}
    
 .testimonial-slide img {
    width: 100%;
    height: auto;
    max-height: 300px; /* Adjust this value as needed */
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
    
   .testimonial-slide img:hover {
    transform: scale(1.02);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move half the width */
    }
}

/* Pause on hover */
.testimonial-carousel:hover .testimonial-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .testimonial-slide {
        flex: 0 0 25%; /* Show 4 slides on large tablets */
    }
}

@media (max-width: 992px) {
    .testimonial-slide {
        flex: 0 0 33.33%; /* Show 3 slides on tablets */
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 30%; /* Show 2 slides on small tablets */
    }
}

@media (max-width: 576px) {
    .testimonial-slide {
        flex: 0 0 30%; /* Show 1 slide on mobile */
    }
}


/* Student Videos Section */
.student-videos {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h3 {
    font-size: 1.3rem;
    padding: 20px 20px 10px;
    color: var(--dark-color);
}

.video-card p {
    padding: 0 20px 20px;
    color: var(--gray-color);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .student-videos {
        padding: 60px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .video-card h3 {
        font-size: 1.1rem;
    }
    
    .video-card p {
        font-size: 0.9rem;
    }
}

/* Highlights Section */
.highlights {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 80px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(to right, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 5px;
    letter-spacing: 3px;
}

.rating-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-card {
        padding: 30px 20px;
    }
    
    .highlight-number, .rating-value {
        font-size: 2.5rem;
    }
}

.promo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: stretch; /* ensures equal height cards */
}

.promo-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ensures button sticks to bottom */
}

.promo-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1e293b;
}

.promo-card p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #334155;
  flex-grow: 1; /* allows vertical spacing to adapt */
}

.promo-btn {
  background: #10b981;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: auto;
}

.promo-btn:hover {
  background: #059669;
}

/* Responsive Design */
@media (max-width: 768px) {
  .promo-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Resume Page Styles */
.resume-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.resume-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.resume-hero-content {
    flex: 1;
    max-width: 600px;
}

.resume-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark-color);
}

.resume-hero .subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.resume-hero-image {
    flex: 1;
    text-align: center;
}

.resume-hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.resume-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Resume Builder Section */
.resume-builder {
    padding: 80px 0;
    background-color: white;
}

.builder-container {
    max-width: 900px;
    margin: 0 auto;
    background: #f8fafc;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.builder-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.builder-header p {
    color: var(--gray-color);
}

.builder-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.builder-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--light-gray);
    z-index: 1;
}

.builder-steps .step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.builder-steps .step span {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    color: var(--gray-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.builder-steps .step p {
    color: var(--gray-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.builder-steps .step.active span {
    background-color: var(--primary-color);
    color: white;
}

.builder-steps .step.active p {
    color: var(--dark-color);
    font-weight: 500;
}

.resume-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.resume-form h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.resume-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: rgba(79, 70, 229, 0.1);
}

/* Resume Templates Section */
.resume-templates {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-header p {
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

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

.template-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.template-card:hover {
    transform: translateY(-5px);
}

.template-preview {
    height: 350px;
    overflow: hidden;
}

.template-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.template-card:hover .template-preview img {
    transform: scale(1.05);
}

.template-info {
    padding: 20px;
}

.template-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.template-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.template-info .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* CTA Section */
.resume-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .resume-hero .container {
        flex-direction: column;
    }
    
    .resume-hero-content {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .resume-features {
        justify-content: center;
    }
    
    .builder-steps .step p {
        display: none;
    }
}

@media (max-width: 768px) {
    .resume-hero h1 {
        font-size: 2.5rem;
    }
    
    .resume-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .template-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .builder-container {
        padding: 30px 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .template-info .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}
