/* CSS Variables */
:root {
    /* Color Palette */
    --primary-color: #3066BE;
    --primary-color-dark: #245091;
    --primary-color-light: #4D87E2;
    --secondary-color: #FF6B6B;
    --secondary-color-dark: #E84A4A;
    --secondary-color-light: #FF9E9E;
    --accent-color: #2EC4B6;
    --accent-color-dark: #21A99D;
    --accent-color-light: #4FE0D3;
    --neutral-dark: #333333;
    --neutral: #666666;
    --neutral-light: #999999;
    --neutral-lighter: #E0E0E0;
    --neutral-lightest: #F5F5F5;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    --secondary-gradient: linear-gradient(135deg, var(--secondary-color), var(--secondary-color-dark));
    --accent-gradient: linear-gradient(135deg, var(--accent-color), var(--accent-color-dark));
    --neutral-gradient: linear-gradient(135deg, var(--neutral-dark), var(--neutral));
    --light-gradient: linear-gradient(135deg, var(--neutral-lighter), var(--neutral-lightest));
    
    /* Typography */
    --heading-font: 'Manrope', sans-serif;
    --body-font: 'Rubik', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Box Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-medium: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--neutral-dark);
    line-height: 1.6;
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: var(--spacing-md);
    color: var(--neutral-dark);
}

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

a:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

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

/* Button Styles */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-family: var(--heading-font);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    outline: none;
}

.button.is-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.button.is-primary:hover {
    background: linear-gradient(135deg, var(--primary-color-dark), #1a3c6e);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.button.is-light {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color-light);
}

.button.is-light:hover {
    background: var(--neutral-lightest);
    color: var(--primary-color-dark);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.button.is-medium {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.button.is-small {
    padding: 0.4rem 1.2rem;
    font-size: 0.875rem;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    transition: var(--transition-medium);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-item {
    color: var(--neutral-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin-left: 0.25rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.navbar-item:hover {
    color: var(--primary-color);
    background-color: rgba(48, 102, 190, 0.05);
    text-decoration: none;
}

.navbar-burger {
    cursor: pointer;
    display: block;
    height: 3.25rem;
    position: relative;
    width: 3.25rem;
    margin-left: auto;
}

.navbar-burger span {
    background-color: var(--neutral-dark);
    display: block;
    height: 1px;
    left: calc(50% - 8px);
    position: absolute;
    transform-origin: center;
    transition: var(--transition-fast);
    width: 16px;
}

.navbar-burger span:nth-child(1) {
    top: calc(50% - 6px);
}

.navbar-burger span:nth-child(2) {
    top: calc(50%);
}

.navbar-burger span:nth-child(3) {
    top: calc(50% + 6px);
}

.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.stat-widget {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    height: 100%;
}

.stat-widget:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--neutral);
}

/* Section Titles */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--neutral-dark);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--neutral);
    max-width: 800px;
    margin: 0 auto;
}

/* Top Centers Section */
.top-centers-section {
    background-color: var(--neutral-lightest);
}

.card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    overflow: hidden;
    width: 100%;
}

.image-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .image-container img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.title.is-4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.description {
    color: var(--neutral);
    flex-grow: 1;
    margin-bottom: 1rem;
}

/* Case Studies Section */
.case-studies-section {
    background-color: var(--white);
}

/* Resources Section */
.resources-section {
    background-color: var(--neutral-lightest);
}

/* Customer Stories Section */
.customer-stories-section {
    background-color: var(--white);
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    transition: var(--transition-medium);
}

.carousel-item {
    flex: 0 0 100%;
    padding: 1rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color-light);
}

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

.testimonial-content {
    flex-grow: 1;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--neutral-dark);
}

.testimonial-text {
    font-style: italic;
    color: var(--neutral);
    margin-bottom: 1rem;
}

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

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.carousel-btn {
    background-color: var(--white);
    border: 1px solid var(--primary-color-light);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* Team Section */
.team-section {
    background-color: var(--neutral-lightest);
}

/* Events Calendar Section */
.events-section {
    background-color: var(--white);
}

.event-card {
    display: flex;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-medium);
    height: 100%;
}

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

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 1.5rem;
    min-width: 100px;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.event-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.event-location {
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.event-description {
    color: var(--neutral);
    font-size: 0.9375rem;
}

/* Awards Section */
.awards-section {
    background-color: var(--neutral-lightest);
}

.award-card {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    transition: var(--transition-medium);
    height: 100%;
}

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

.award-icon {
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.award-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.award-content {
    flex-grow: 1;
}

.award-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.award-winner {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-description {
    color: var(--neutral);
    font-size: 0.9375rem;
}

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

.insight-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.insight-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.insight-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.insight-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.insight-text {
    color: var(--neutral);
    font-size: 0.9375rem;
}

/* Success Stories Section */
.success-stories-section {
    background-color: var(--neutral-lightest);
}

.success-story-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.success-story-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.success-story-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.success-story-card:hover .success-story-image img {
    transform: scale(1.05);
}

.success-story-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.success-story-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-story-text {
    color: var(--neutral);
    font-size: 0.9375rem;
}

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

.instructor-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.instructor-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.05);
}

.instructor-content {
    padding: 1.5rem;
    flex-grow: 1;
    text-align: center;
}

.instructor-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.instructor-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.instructor-description {
    color: var(--neutral);
    margin-bottom: 1.5rem;
}

.instructor-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.instructor-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instructor-stats .number {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.instructor-stats .label {
    font-size: 0.875rem;
    color: var(--neutral);
}

/* Contact Section */
.contact-section {
    background-color: var(--neutral-lightest);
    padding: 5rem 0;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--neutral);
    margin-bottom: 2rem;
}

.field {
    margin-bottom: 1.5rem;
}

.label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.input, .textarea, .select select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--neutral-lighter);
    border-radius: var(--border-radius-md);
    background-color: var(--white);
    font-family: var(--body-font);
    transition: var(--transition-fast);
}

.input:focus, .textarea:focus, .select select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(48, 102, 190, 0.2);
    outline: none;
}

.contact-image-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
}

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

.contact-info {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.social-links .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Footer Section */
.footer {
    background-color: var(--neutral-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--neutral-lighter);
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--neutral-lighter);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social li {
    margin-bottom: 0.75rem;
}

.footer-social a {
    color: var(--neutral-lighter);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--white);
    text-decoration: none;
}

.newsletter .input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.newsletter .input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter .input:focus {
    border-color: var(--primary-color-light);
    background-color: rgba(255, 255, 255, 0.15);
}

.copyright {
    color: var(--neutral-light);
    font-size: 0.875rem;
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.success-container {
    max-width: 600px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2.5rem;
}

/* Privacy and Terms Pages */
.privacy-page, .terms-page {
    padding-top: 100px;
    min-height: 100vh;
}

.privacy-container, .terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
    .navbar-menu {
        display: none;
    }
    
    .navbar-menu.is-active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        padding: 1rem;
    }
    
    .navbar-item {
        display: block;
        padding: 0.75rem 1rem;
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        width: 100%;
        padding: 1rem;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .event-date .month, .event-date .day {
        margin: 0 0.5rem;
    }
    
    .award-card {
        flex-direction: column;
        text-align: center;
    }
    
    .award-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        flex-direction: column;
    }
    
    .testimonial-image {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .instructor-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-image-container {
        height: 200px;
        margin-bottom: 2rem;
    }
}

/* Animation Styles */
.animate__animated {
    visibility: hidden;
}

.animate__animated.animate__fadeIn {
    --animate-duration: 1s;
}

.animate__animated.animate__fadeInUp {
    --animate-duration: 0.8s;
}

/* Utility Classes */
.mt-3 {
    margin-top: 0.75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 1.25rem !important;
}

.mt-6 {
    margin-top: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 1.25rem !important;
}

.mb-6 {
    margin-bottom: 1.5rem !important;
}

.has-text-centered {
    text-align: center !important;
}

/* Read More Links */
.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.read-more:after {
    content: "→";
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--primary-color-dark);
    text-decoration: none;
}

.read-more:hover:after {
    transform: translateX(4px);
}

html,body{
    overflow-x: hidden;
}
.navbar-burger{
    display: none ;
}
@media (max-width: 768px) {
    .navbar-burger{
        display: flex ;
    }
}