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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Primary Gradient */
.gradient-bg {
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
}

.gradient-text {
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 81, 48, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 81, 48, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.btn-secondary:hover {
    border-color: rgb(252, 81, 48);
    color: rgb(252, 81, 48);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbarr {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
    background: transparent; /* make sure it's transparent initially */
    background-color: #fff !important;
    background-image: none !important;
    backdrop-filter: none !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
}

.navbarr.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: rgb(252, 81, 48);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(252, 81, 48, 0.1) 0%,
        transparent 50%
    );
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: slideInLeft 0.8s ease-out;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature i {
    color: rgb(34, 197, 94);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

/* Registration Form */
.hero-right {
    animation: slideInRight 0.8s ease-out;
}

.registration-form {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: #64748b;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 0px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgb(252, 81, 48);
    background: white;
    box-shadow: 0 0 0 3px rgba(252, 81, 48, 0.1);
}

.phone-group {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
}

.country-code {
    padding: 15px 10px !important;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
}

.form-footer p {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-footer i {
    color: rgb(34, 197, 94);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Why Course Section */
.why-course-section {
    padding: 100px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Course Highlights */
.course-highlights-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.highlight-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid rgb(252, 81, 48);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.highlight-icon i {
    font-size: 24px;
    color: white;
}

.highlight-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.highlight-card ul {
    list-style: none;
}

.highlight-card li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 20px;
}

.highlight-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgb(34, 197, 94);
    font-weight: bold;
}

/* Offline Benefits */
.offline-benefits-section {
    padding: 100px 0;
    background: white;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.comparison-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.comparison-card.offline {
    border: 3px solid rgb(34, 197, 94);
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.05) 0%,
        rgba(34, 197, 94, 0.1) 100%
    );
}

.comparison-card.online {
    border: 3px solid rgb(34, 197, 94);
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.05) 0%,
        rgba(34, 197, 94, 0.1) 100%
    );
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.benefits-list {
    text-align: left;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 20px;
}

.benefit:last-child {
    border-bottom: none;
}

.benefit i {
    font-size: 18px;
}

.offline .benefit i {
    color: rgb(34, 197, 94);
}

.online .benefit i {
    color: rgb(34, 197, 94);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgb(252, 81, 48);
    width: 60px;
    height: 60px;
    border: 3px solid rgb(252, 81, 48);
    border-radius: 50%;
    background: white;
}

/* Target Audience */
.target-audience-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.audience-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.audience-icon i {
    font-size: 30px;
    color: white;
}

.audience-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.audience-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.audience-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.audience-benefits span {
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Instructors */
.instructors-section {
    padding: 100px 0;
    background: white;
}

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

.instructor-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.instructor-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgb(252, 81, 48);
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.instructor-role {
    color: rgb(252, 81, 48);
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-bio {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.instructor-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.instructor-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}

.instructor-stats i {
    color: rgb(252, 81, 48);
}

/* Career Outcomes */
.career-outcomes-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.career-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-card p {
    color: #64748b;
    font-weight: 500;
}

.job-roles {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.job-roles h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.roles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.role-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.role-card:hover {
    border-color: rgb(252, 81, 48);
    transform: translateY(-2px);
}

.role-card i {
    font-size: 24px;
    color: rgb(252, 81, 48);
    margin-bottom: 10px;
}

.role-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.role-card p {
    color: rgb(34, 197, 94);
    font-weight: 600;
    font-size: 14px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgb(252, 81, 48);
}

.student-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.student-info p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
}

.rating {
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    color: #475569;
    line-height: 1.6;
    font-style: italic;
}

/* Schedule Section */
.schedule-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.schedule-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.schedule-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.schedule-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(252, 81, 48);
}

.timing-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timing {
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timing strong {
    color: #1e293b;
}

.timing span {
    color: #64748b;
}

.duration-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.duration {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.duration:last-child {
    border-bottom: none;
}

.location-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.location-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(252, 81, 48);
}

.location-details p {
    margin-bottom: 8px;
    color: #475569;
}

.location-details p:first-of-type {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.location-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}

.location-features .feature i {
    color: rgb(34, 197, 94);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

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

.faq-question:hover {
    background: rgba(252, 81, 48, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.faq-question i {
    color: rgb(252, 81, 48);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

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

.faq-answer p {
    padding: 0 30px 25px;
    color: #64748b;
    line-height: 1.6;
}

/* Final CTA */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.stat h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat p {
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-buttons .btn-primary {
    background: white;
    color: rgb(252, 81, 48);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: rgb(252, 81, 48);
}

.urgency-text {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
}

.urgency-text i {
    color: #fbbf24;
    margin-right: 8px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(252, 81, 48);
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #94a3b8;
}

.footer-section h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

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

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

.footer-section ul li a:hover {
    color: rgb(252, 81, 48);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: rgb(252, 81, 48);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

.footer-links a:hover {
    color: rgb(252, 81, 48);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vs-divider {
        display: none;
    }

    .schedule-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

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

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

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

    .features-grid,
    .highlights-grid,
    .audience-grid,
    .instructors-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .career-stats {
        grid-template-columns: 1fr 1fr;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .cta-stats {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .registration-form {
        padding: 20px;
    }

    .phone-group {
        grid-template-columns: 100px 1fr;
    }

    .cta-stats {
        grid-template-columns: 1fr;
    }
}

.section-7 {
    display: none;
}
#footer {
    display: none;
}

#copyright {
    display: none;
}

.social-button {
    display: none;
}

.zsiq-float-tooltip {
    display: none;
}

.zsiq-flexM {
    display: none !important;
}

.aos-init {
    display: none;
}

/* Container for sticky button */
.sticky-cta {
    position: fixed;
    bottom: 20px; /* distance from bottom */
    right: 20px; /* distance from right */
    z-index: 9999; /* keeps it above other elements */
}

/* WhatsApp button styling */
.whatsapp-float {
    width: 55px;
    height: 55px;
    background-color: #25d366; /* WhatsApp green */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
    background-color: #20b954; /* darker green */
    transform: scale(1.1);
    text-decoration: none;
    color: #fff;
}

/* Icon alignment */
.whatsapp-float i {
    margin: 0;
    line-height: 1;
}

/* navbarmenu code */

/* Default menu for desktop */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

/* Mobile menu dropdown */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 60px; /* just below navbar */
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    /* Show dropdown */
    .nav-menu.active {
        max-height: 500px; /* enough height for links */
    }

    /* Hamburger visible only on mobile */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 1000;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: #333;
        transition: all 0.3s ease;
    }

    /* Animate into X */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Menu items styling */
    .nav-menu li {
        list-style: none;
    }

    .nav-menu a,
    .nav-menu button {
        font-size: 18px;
        text-decoration: none;
        color: #333;
    }

    .btn-primary {
        background: #e41f25;
        color: #fff;
        padding: 10px 22px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        margin-top: 10px;
    }
}

/* accordion-styling */
.course-curriculum {
    padding: 20px;
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.course-curriculum h2 {
    text-align: center;
    margin-bottom: 15px;
    color: rgb(252, 81, 48);
}

.accordion {
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px;
    background: linear-gradient(135deg, rgb(253, 120, 94), rgb(224, 4, 11));
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgb(224, 4, 11), rgb(252, 81, 48));
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
    padding: 0 15px;
}

.accordion-content ul {
    list-style: disc;
    margin: 10px 20px;
    padding: 0;
}

.accordion-content li {
    padding: 5px 0;
    color: #333;
}

.accordion-item.active .accordion-content {
    max-height: fit-content; /* allow more space */
    padding: 10px 15px;
    transition: max-height 0.5s ease;
}

.accordion-header {
    position: relative; /* allow arrow positioning */
    padding-right: 35px; /* space for arrow */
}

/* default arrow */
.accordion-header::after {
    content: "▼";
    font-size: 14px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* rotate arrow when active */
.accordion-item.active .accordion-header::after {
    transform: translateY(-50%) rotate(180deg);
    content: "▲";
}

/* deliverables */
/* Section */
.deliverables-section {
    padding: 50px 20px; /* reduced section padding */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.deliverables-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Title */
.deliverables-title {
    text-align: center;
    font-size: 24px; /* smaller font */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px; /* reduced gap */
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    color: white;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Timeline line */
.deliverables-timeline {
    position: relative;
    margin: 0 auto;
    padding: 0;
}

.deliverables-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px; /* slightly thinner */
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    transform: translateX(-50%);
}

/* Timeline items */
.deliverable {
    position: relative;
    width: 50%;
    padding: 10px 25px; /* compact spacing */
    margin-bottom: 20px; /* reduced gap */
}

.deliverable .content {
    background: white;
    padding: 12px 18px; /* smaller padding */
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid rgb(252, 81, 48);
    display: flex;
    align-items: center;
    gap: 10px;
}

.deliverable .content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Positioning */
.deliverable.left {
    left: 0;
    text-align: right;
}

.deliverable.right {
    left: 50%;
}

.deliverable h3 {
    font-size: 14px; /* smaller text */
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Icons */
.deliverable .icon {
    font-size: 18px;
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(252, 81, 48, 0.4);
}

/* Dots */
.deliverable::before {
    content: "";
    position: absolute;
    top: 20px; /* lowered */
    right: -10px;
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid rgb(252, 81, 48);
    border-radius: 50%;
    z-index: 1;
}

.deliverable.right::before {
    left: -10px;
    right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .deliverables-timeline::before {
        left: 20px;
    }

    .deliverable {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        margin-bottom: 20px;
        text-align: left;
    }

    .deliverable.right {
        left: 0;
    }

    .deliverable::before {
        left: 10px;
        right: auto;
    }

    .deliverable .content {
        flex-direction: row;
    }
}

/* deliverables */

/* dream=job-section */
.dream-job-section {
    background: #fff;
    color: #333;
    padding: 80px 20px;
    text-align: center;
}

.dream-job-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 1.4;
}

.dream-job-section h2 span {
    background: linear-gradient(135deg, rgb(252, 81, 48), rgb(224, 4, 11));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

/* Company Logos Grid */
.company-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.company-logos img {
    max-width: 120px;
    height: auto;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.company-logos img:hover {
    transform: scale(1.08);
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .dream-job-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .dream-job-section {
        padding: 60px 15px;
    }

    .dream-job-section h2 {
        font-size: 1.6rem;
    }

    .company-logos {
        gap: 25px;
    }

    .company-logos img {
        max-width: 100px;
    }
}

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

    .company-logos {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 20px;
    }

    .company-logos img {
        max-width: 80px;
    }
}

/* dream=job-section */
.footer-links {
    display: none !important;
}
