/* Base Styles */
:root {
    --flame-red: #E63926;
    --orange: #F57C00;
    --dark-bg: #121212;
    --light-text: #FAFAFA;
    --accent-blue: #2196F3;
    --gradient-primary: linear-gradient(135deg, var(--flame-red), var(--orange));
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--light-text);
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 20px;
}

.section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-text);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--flame-red);
    border: 2px solid var(--flame-red);
}

.btn-outline:hover {
    background: rgba(230, 57, 38, 0.1);
    transform: translateY(-3px);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 1px;
}

.x-mark {
    color: var(--flame-red);
    position: relative;
}

.nav-links ul {
    display: flex;
}

.nav-links ul li {
    margin: 0 15px;
}

.nav-links ul li a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links ul li a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links ul li a:hover:after,
.nav-links ul li a.active:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--light-text);
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(230, 57, 38, 0.15), transparent 70%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.hero-content h1 {
    margin-bottom: 20px;
}

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

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-shape {
    width: 450px;
    height: 450px;
    background: url('https://images.unsplash.com/photo-1581093458791-9d09c85a31ea?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-shape:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 38, 0.7), rgba(245, 124, 0, 0.7));
    border-radius: inherit;
    opacity: 0.8;
}

/* Benefits Section */
.benefits {
    background-color: #151515;
}

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

.benefit-card {
    background-color: #1d1d1d;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* Methodologies Section */
.methodologies {
    background-color: #1a1a1a;
}

.methodology-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-headers {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-header {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
    opacity: 0.7;
}

.tab-header:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.tab-header.active {
    opacity: 1;
}

.tab-header.active:after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

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

.methodology-image {
    flex: 1;
}

.methodology-shape {
    width: 350px;
    height: 350px;
    background: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.methodology-shape:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.7), rgba(245, 124, 0, 0.4));
    border-radius: inherit;
    opacity: 0.8;
}

.methodology-text {
    flex: 1;
}

.methodology-text h3 {
    margin-bottom: 20px;
}

.methodology-text p {
    margin-bottom: 25px;
}

/* Testimonials Section */
.testimonials {
    background-color: #151515;
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(33, 150, 243, 0.1), transparent 70%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #1d1d1d;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 10px;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-size: 1.5rem;
    color: var(--flame-red);
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    background: url('https://randomuser.me/api/portraits/men/32.jpg') center/cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1d1d1d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.control:hover {
    background-color: var(--flame-red);
}

.control:before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--light-text);
    border-right: 2px solid var(--light-text);
    position: absolute;
}

.control.prev:before {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.control.next:before {
    transform: rotate(45deg);
    margin-right: 3px;
}

/* Course Preview Section */
.course-preview {
    background-color: #1a1a1a;
}

.course-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #1d1d1d;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.course-content {
    flex: 1;
    padding: 40px;
}

.course-content h3 {
    margin-bottom: 20px;
}

.course-features {
    margin: 25px 0;
}

.course-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.course-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--flame-red);
    font-weight: bold;
}

.course-image {
    flex: 1;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.course-shape {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    position: relative;
}

.course-shape:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 38, 0.7), rgba(33, 150, 243, 0.4));
    opacity: 0.8;
}

/* Teams Section */
.teams {
    background-color: #151515;
    position: relative;
    overflow: hidden;
}

.teams:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(245, 124, 0, 0.1), transparent 70%);
    z-index: 1;
}

.teams .container {
    position: relative;
    z-index: 2;
}

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

.teams-text {
    flex: 1;
}

.teams-text h2 {
    margin-bottom: 20px;
}

.teams-text p {
    margin-bottom: 20px;
}

.teams-image {
    flex: 1;
}

.teams-shape {
    width: 400px;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.teams-shape:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.7), rgba(230, 57, 38, 0.4));
    border-radius: inherit;
    opacity: 0.8;
}

/* Final CTA Section */
.final-cta {
    background: var(--gradient-primary);
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta h2:after {
    display: none;
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.final-cta .btn-primary {
    background: var(--light-text);
    color: var(--flame-red);
}

.final-cta .btn-primary:hover {
    background: var(--light-text);
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: #0f0f0f;
    padding: 80px 0 20px;
}

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

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
}

.footer-logo p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-top: 10px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4:after,
.footer-contact h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 1.5px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--flame-red);
}

.footer-contact p {
    margin-bottom: 20px;
    opacity: 0.8;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1d1d1d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-shape,
    .methodology-shape,
    .teams-shape {
        width: 350px;
        height: 350px;
    }
    
    .course-card,
    .methodology-content,
    .teams-content {
        flex-direction: column;
    }
    
    .course-image,
    .methodology-image,
    .teams-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-shape,
    .methodology-shape,
    .teams-shape {
        width: 300px;
        height: 300px;
    }
    
    .tab-headers {
        flex-wrap: wrap;
    }
    
    .tab-header {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .methodology-content,
    .teams-content {
        text-align: center;
    }
    
    .methodology-text,
    .teams-text {
        order: 2;
    }
    
    .methodology-image,
    .teams-image {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-shape,
    .methodology-shape,
    .teams-shape {
        width: 250px;
        height: 250px;
    }
    
    .benefit-card {
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto 20px;
    }
    
    .testimonial-card {
        min-width: 260px;
    }
    
    .course-content {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4:after,
    .footer-contact h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}
