/* Reset & Base Styles */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --light-gray: #e2e8f0;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --white: #ffffff;
    --black: #000000;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

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

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

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

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
    height: 100px;
    margin-right: 15px;
}

.logo-text h1 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.7rem;
    color: var(--gray-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 30px;
    position: relative;
}

.main-nav a {
    font-weight: 500;
    color: var(--dark-color);
    padding: 5px 0;
    position: relative;
}

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

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: var(--white);
    padding: 120px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-item .label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Domains Section */
.domains-section {
    background-color: var(--light-color);
}

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

.domain-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.domain-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

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

.domain-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Formations Section */
.formations-section {
    background-color: var(--white);
}

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

.section-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.tab-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid var(--light-gray);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--gray-color);
}

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

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

.formation-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

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

.card-header {
    position: relative;
}

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

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-body {
    padding: 25px;
}

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

.formation-description {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.formation-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

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

.card-footer {
    display: flex;
    border-top: 1px solid var(--light-gray);
    padding: 15px 25px;
}

.card-footer .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
}

.card-footer .btn:first-child {
    margin-right: 10px;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

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

.methods-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.methods-text {
    flex: 1;
}

.methods-image {
    flex: 1;
}

.methods
continue
.methods-image img {
width: 100%;
border-radius: 10px;
box-shadow: var(--shadow-lg);
}

.method-item {
display: flex;
margin-bottom: 30px;
}

.method-icon {
width: 60px;
height: 60px;
background-color: var(--primary-color);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin-right: 20px;
flex-shrink: 0;
}

.method-desc h3 {
font-size: 1.2rem;
margin-bottom: 10px;
color: var(--dark-color);
}

.method-desc p {
color: var(--gray-color);
font-size: 0.95rem;
line-height: 1.6;
}

.highlight {
font-size: 1.1rem;
color: var(--primary-color);
font-weight: 500;
margin-bottom: 30px;
line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
background-color: var(--white);
}

.testimonials-slider {
display: flex;
gap: 30px;
overflow-x: auto;
padding: 20px 0;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
}

.testimonial-card {
min-width: 350px;
scroll-snap-align: start;
background-color: var(--light-color);
border-radius: 10px;
padding: 30px;
box-shadow: var(--shadow-sm);
}

.testimonial-content {
position: relative;
}

.quote-icon {
position: absolute;
top: -10px;
left: -10px;
font-size: 3rem;
color: rgba(37, 99, 235, 0.1);
z-index: 1;
}

.testimonial-text {
position: relative;
z-index: 2;
font-style: italic;
color: var(--dark-color);
margin-bottom: 25px;
line-height: 1.7;
}

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

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

.author-info h4 {
font-size: 1rem;
color: var(--dark-color);
margin-bottom: 5px;
}

.author-info p {
font-size: 0.8rem;
color: var(--gray-color);
margin-bottom: 5px;
}

.rating {
color: var(--secondary-color);
font-size: 0.8rem;
}

/* CTA Section */
.cta-section {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
color: var(--white);
text-align: center;
padding: 60px 0;
}

.cta-content h2 {
font-family: var(--font-secondary);
font-size: 2.5rem;
margin-bottom: 20px;
}

.cta-content p {
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto 30px;
opacity: 0.9;
}

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

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

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

.footer-col h3 {
font-family: var(--font-secondary);
font-size: 1.3rem;
margin-bottom: 25px;
position: relative;
padding-bottom: 15px;
}

.footer-col h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 2px;
background-color: var(--secondary-color);
}

.footer-about p {
color: #cbd5e1;
font-size: 0.95rem;
line-height: 1.7;
margin-bottom: 20px;
}

.footer-logo {
display: flex;
align-items: center;
margin-bottom: 20px;
}

.footer-logo img {
width: 80px;
height: 80px;
margin-right: 10px;
}

.footer-logo h3 {
font-family: var(--font-secondary);
font-size: 1.5rem;
margin-bottom: 0;
padding-bottom: 0;
}

.footer-logo h3::after {
display: none;
}

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

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

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

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

.footer-links a {
color: #cbd5e1;
font-size: 0.95rem;
transition: var(--transition);
}

.footer-links a:hover {
color: var(--secondary-color);
padding-left: 5px;
}

.contact-info li {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
color: #cbd5e1;
font-size: 0.95rem;
}

.contact-info i {
margin-right: 10px;
color: var(--secondary-color);
font-size: 1rem;
margin-top: 3px;
}

.newsletter-form {
display: flex;
margin-top: 20px;
}

.newsletter-form input {
flex: 1;
padding: 12px 15px;
border: none;
border-radius: 6px 0 0 6px;
font-size: 0.9rem;
}

.newsletter-form button {
border-radius: 0 6px 6px 0;
padding: 0 20px;
}

.footer-bottom {
background-color: rgba(0, 0, 0, 0.2);
padding: 20px 0;
}

.bottom-content {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.85rem;
color: #94a3b8;
}

.legal-links {
display: flex;
gap: 20px;
}

.legal-links a {
color: #94a3b8;
transition: var(--transition);
}

.legal-links a:hover {
color: var(--secondary-color);
}

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

Copy
.methods-image {
    order: -1;
    margin-bottom: 40px;
}
}

@media (max-width: 768px) {
.section-title {
font-size: 2rem;
}

Copy
.hero h2 {
    font-size: 2.5rem;
}

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

.hero-stats {
    flex-direction: column;
    gap: 30px;
}

.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
    padding: 80px 30px;
    overflow-y: auto;
}

.main-nav.active {
    right: 0;
}

.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
}

.main-nav li {
    margin: 0 0 20px 0;
}

.main-nav a {
    font-size: 1.1rem;
}

.mobile-menu-btn {
    display: block;
}

.cta-buttons {
    flex-direction: column;
    gap: 15px;
}

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

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

Copy
.section-subtitle {
    font-size: 1rem;
}

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

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

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

.testimonial-card {
    min-width: 280px;
}

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

.legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}
}

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

.fade-in {
animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
animation-delay: 0.2s;
}

.delay-2 {
animation-delay: 0.4s;
}

.delay-3 {
animation-delay: 0.6s;
}