/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #FFFFFF;
}

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

/* Buttons */
.btn-primary {
    background-color: #8B5CF6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #7C3AED;
}

.btn-secondary {
    background-color: #E5E7EB;
    color: #111827;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #D1D5DB;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #111827;
    border: 2px solid #7C3AED;
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
    max-width: 800px;
    width: 90%;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #8B5CF6;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  
    
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover {
    color: #E0E7FF;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #8B5CF6;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: #8B5CF6;
    border-radius: 2px;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

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

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Mobile Menu Styles */
.nav {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        transition: left 0.3s ease;
        overflow: hidden;
    }
    
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .nav.nav-open {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        background: none;
        box-shadow: none;
        transform: none;
        transition: background-color 0.3s ease;
    }
    
    .nav-link:hover {
        background: none;
        transform: none;
        color: white;
    }
    
    .nav-link.active {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
        box-shadow: none;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
        position: relative;
    }
}

/* Hero Section */
.hero {
    background: url('../images/HospitalityPro.jpg') no-repeat center center/cover;
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
   
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #F9FAFB;
}

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

.feature-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 64px;
    height: 64px;
}

.feature-content h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.feature-content p {
    margin-bottom: 1.5rem;
    color: #6B7280;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-benefits li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}

.feature-content .btn-secondary {
    display: block;
    text-align: center;
    margin-top: auto;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.advantage-item h3 {
    color: #111827;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-item p {
    color: #6B7280;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

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

.gallery-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-content {
    padding: 2rem;
}

.gallery-content h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.gallery-content p {
    color: #6B7280;
    line-height: 1.6;
}

/* About Page Specific Styles */
.about-content {
    padding: 80px 0;
}

.mission-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-icon {
    flex-shrink: 0;
}

.mission-icon img {
    width: 80px;
    height: 80px;
}

.mission-text h2 {
    color: #8B5CF6;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.mission-text p {
    color: #6B7280;
    line-height: 1.8;
    font-size: 1.1rem;
}

.principles-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

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

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

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.principle-icon {
    margin-bottom: 1.5rem;
}

.principle-icon img {
    width: 64px;
    height: 64px;
}

.principle-card h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.principle-card p {
    color: #6B7280;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.stat-card {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

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

.stat-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
}

.stat-content h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background-color: #F9FAFB;
}

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

.story-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.story-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.story-icon img {
    border-radius: 50%;
    width: 64px;
    height: 64px;
}

.story-content h3 {
    color: #8B5CF6;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.story-position {
    color: #6B7280;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.story-content p:last-child {
    color: #374151;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
}

.story-content p:last-child::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: #8B5CF6;
    line-height: 1;
}

/* Learning Process Section */
.learning-process {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-item {
    position: relative;
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content {
    padding-top: 1rem;
}

.step-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.step-icon img {
    width: 48px;
    height: 48px;
}

.step-content h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #6B7280;
    line-height: 1.6;
}

/* Industry Insights Section */
.industry-insights {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.insight-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.insight-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.insight-icon img {
    width: 64px;
    height: 64px;
}

.insight-card h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
}

.insight-card > p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.insight-points {
    list-style: none;
    padding: 0;
}

.insight-points li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.insight-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}

/* Courses, Design, Business Pages Styles */
.courses-overview,
.design-overview,
.business-overview {
    padding: 80px 0;
}

.overview-mission {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.benefits-section,
.principles-section,
.factors-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.benefits-grid,
.design-principles,
.success-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item,
.principle-item,
.factor-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover,
.principle-item:hover,
.factor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.benefit-icon,
.principle-icon,
.factor-icon {
    margin-bottom: 1.5rem;
}

.benefit-icon img,
.principle-icon img,
.factor-icon img {
    width: 64px;
    height: 64px;
}

.benefit-item h3,
.principle-item h3,
.factor-item h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p,
.principle-item p,
.factor-item p {
    color: #6B7280;
    line-height: 1.6;
}

/* Courses Catalog Styles */
.courses-catalog {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.course-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.category-icon img {
    width: 64px;
    height: 64px;
}

.category-header h3 {
    color: #8B5CF6;
    font-size: 2rem;
    margin: 0;
}

.category-description {
    color: #6B7280;
    margin: 0;
    font-size: 1.1rem;
}

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

.course-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.course-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.course-icon img {
    width: 48px;
    height: 48px;
}

.course-card h4 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
}

.course-details {
    background-color: #F9FAFB;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.course-details p {
    margin: 0.25rem 0;
    color: #374151;
    font-size: 0.9rem;
}

.course-card > p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-topics {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.course-topics li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.course-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}

.course-card .btn-primary {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
}

/* Design Types Styles */
.design-types {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.type-category {
    margin-bottom: 4rem;
}

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

.design-card {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.design-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.design-icon img {
    width: 48px;
    height: 48px;
}

.design-card h4 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
}

.design-card > p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.design-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.design-features li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.design-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}

/* Business Steps Styles */
.business-steps {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.business-steps .step-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.business-steps .step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.business-steps .step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.business-steps .step-icon {
    text-align: center;
    margin: 1rem 0 1.5rem 0;
}

.business-steps .step-icon img {
    width: 48px;
    height: 48px;
}

.business-steps .step-content h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
}

.business-steps .step-content p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.business-steps .step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-steps .step-content ul li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.business-steps .step-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}

/* Design Trends Styles */
.design-trends {
    padding: 80px 0;
    background-color: #F9FAFB;
}

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

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

.trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.trend-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.trend-icon img {
    width: 48px;
    height: 48px;
}

.trend-card h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.trend-card p {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Design Education Styles */
.design-education {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.design-education .course-card {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.design-education .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.design-education .course-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.design-education .course-icon img {
    width: 48px;
    height: 48px;
}

.design-education .course-card h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
}

.design-education .course-card .btn-primary {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    margin-top: 1.5rem;
}

/* Business Types Styles */
.business-types {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.type-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.type-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.type-icon img {
    width: 56px;
    height: 56px;
}

.type-card h3 {
    color: #8B5CF6;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.type-details {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #F9FAFB;
    border-radius: 8px;
    position: relative;
}

.type-details:last-child {
    margin-bottom: 0;
}

.subtype-icon {
    position: absolute;
    top: -10px;
    right: 1.5rem;
    background-color: white;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.subtype-icon img {
    width: 32px;
    height: 32px;
}

.type-details h4 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.type-details p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.type-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-details ul li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.type-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}

/* Financial Planning Styles */
.financial-planning {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.financial-card {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.financial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.financial-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.financial-icon img {
    width: 48px;
    height: 48px;
}

.financial-card h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
}

.financial-description {
    color: #6B7280;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.financial-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.financial-card ul li {
    padding: 0.75rem 0;
    color: #374151;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.financial-card ul li:last-child {
    border-bottom: none;
}

.financial-card ul li strong {
    color: #8B5CF6;
    font-weight: 600;
}

/* Contact Page Minimalist Styles */
.contact-info .hero-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info .hero-icon img {
    width: 64px;
    height: 64px;
}

/* Contact Info Cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F3F4F6;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.contact-icon {
    margin-bottom: 1.5rem;
}

.contact-icon img {
    width: 48px;
    height: 48px;
}

.contact-card h3 {
    color: #8B5CF6;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-primary {
    color: #1F2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-primary a {
    color: #8B5CF6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-primary a:hover {
    color: #7C3AED;
}

.contact-secondary {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-note {
    color: #9CA3AF;
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #F9FAFB;
    padding: 80px 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro-icon {
    margin-bottom: 1.5rem;
}

.form-intro-icon img {
    width: 56px;
    height: 56px;
}

.form-intro h3 {
    color: #8B5CF6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.form-intro p {
    color: #6B7280;
    line-height: 1.6;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.benefit-icon img {
    width: 32px;
    height: 32px;
    margin-top: 0.25rem;
}

.benefit-content h4 {
    color: #1F2937;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Form Styles */
.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    background-color: white;
}

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

.contact-form .btn-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #F9FAFB;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.faq-icon img {
    width: 40px;
    height: 40px;
}

.faq-content h3 {
    color: #8B5CF6;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-content p {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Policy Pages Minimalist Styles */
.policy-hero {
    background: url('../images/policy-hero.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}


.policy-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.policy-icon {
    margin-bottom: 2rem;
}

.policy-icon img {
    width: 64px;
    height: 64px;
    filter: brightness(0) invert(1);
}

.policy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-date {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.policy-description {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.policy-content {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.policy-content .container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.policy-navigation {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 2rem;
}

.policy-navigation h3 {
    color: #8B5CF6;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.policy-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-navigation ul li {
    margin-bottom: 0.75rem;
}

.policy-navigation ul li a {
    color: #6B7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.policy-navigation ul li a:hover {
    color: #8B5CF6;
}

.policy-text {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section .section-icon {
    float: left;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.policy-section .section-icon img {
    width: 32px;
    height: 32px;
}

.policy-section h2 {
    color: #8B5CF6;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    overflow: hidden;
}

.policy-section h3 {
    color: #1F2937;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.policy-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section ul li {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.policy-section ul li strong {
    color: #8B5CF6;
    font-weight: 600;
}

/* Thank You Page Styles */
.thank-you-hero {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
}

.success-image {
    width: 80px;
    height: 80px;
   
}

.thank-you-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.lead-text {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.thank-you-details {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.detail-card,
.contact-info-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-icon img {
    width: 40px;
    height: 40px;
}

.card-header h2 {
    color: #8B5CF6;
    margin: 0;
    font-size: 1.5rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #F9FAFB;
    border-radius: 8px;
}

.step-number {
    background-color: #8B5CF6;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-icon img {
    width: 24px;
    height: 24px;
    margin-top: 0.25rem;
}

.step-text h3 {
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-text p {
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    color: #8B5CF6;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #374151;
    margin: 0;
}

.contact-item a {
    color: #8B5CF6;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.additional-info {
    padding: 80px 0;
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background-color: #F9FAFB;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.info-icon {
    margin-bottom: 1.5rem;
}

.info-icon img {
    width: 48px;
    height: 48px;
}

.info-card h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card p {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.explore-more {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.explore-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-3px);
}

.explore-icon {
    margin-bottom: 1.5rem;
}

.explore-icon img {
    width: 56px;
    height: 56px;
}

.explore-card h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.explore-card p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-secondary {
    background-color: #F3F4F6;
    color: #8B5CF6;
    border: 1px solid #8B5CF6;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #8B5CF6;
    color: white;
}

/* Footer Logo Styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
  
}

.footer-logo h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Minimal Contact Form Styles */
.contact-form-minimal {
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid #F1F5F9;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field input,
.form-field textarea,
.form-field select {
    background: transparent;
    border: none;
    border-bottom: 2px solid #E2E8F0;
    padding: 1rem 0 0.5rem 0;
    font-size: 1rem;
    color: #1E293B;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-bottom-color: #8B5CF6;
}

.form-field input:focus + label,
.form-field textarea:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:not(:placeholder-shown) + label {
    transform: translateY(-1.5rem) scale(0.85);
    color: #8B5CF6;
}

.form-field label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: #64748B;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    transform-origin: left top;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 12px;
    padding-right: 2rem;
}

.form-field select:focus {
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%238B5CF6" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 1.5rem;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8B5CF6;
    transition: width 0.3s ease;
}

.form-field input:focus ~ .form-line,
.form-field textarea:focus ~ .form-line,
.form-field select:focus ~ .form-line {
    width: 100%;
}

.btn-minimal {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-minimal:active {
    transform: translateY(0);
}

/* Error Messages for Minimal Forms */
.form-field .error-message {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-field input.error,
.form-field textarea.error,
.form-field select.error {
    border-bottom-color: #EF4444;
}

.form-field input.error ~ .form-line,
.form-field textarea.error ~ .form-line,
.form-field select.error ~ .form-line {
    background-color: #EF4444;
    width: 100%;
}

/* Mobile Responsive for Minimal Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-minimal {
        padding: 2rem;
    }
    
    .btn-minimal {
        align-self: stretch;
        text-align: center;
    }
}

/* Enhanced Hover Effects for All Elements */

/* Card Hover Effects */
.gallery-item,
.step-item,
.insight-card,
.course-card,
.design-card,
.trend-card,
.type-card,
.financial-card,
.contact-card,
.faq-item,
.info-card,
.explore-card,
.detail-card,
.contact-info-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.gallery-item:hover,
.step-item:hover,
.insight-card:hover,
.course-card:hover,
.design-card:hover,
.trend-card:hover,
.type-card:hover,
.financial-card:hover,
.contact-card:hover,
.faq-item:hover,
.info-card:hover,
.explore-card:hover,
.detail-card:hover,
.contact-info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Icon Hover Effects */
.gallery-icon img,
.step-icon img,
.insight-icon img,
.course-icon img,
.design-icon img,
.trend-icon img,
.type-icon img,
.financial-icon img,
.contact-icon img,
.faq-icon img,
.info-icon img,
.explore-icon img,
.card-icon img,
.benefit-icon img,
.section-icon img {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-icon:hover img,
.step-icon:hover img,
.insight-icon:hover img,
.course-icon:hover img,
.design-icon:hover img,
.trend-icon:hover img,
.type-icon:hover img,
.financial-icon:hover img,
.contact-icon:hover img,
.faq-icon:hover img,
.info-icon:hover img,
.explore-icon:hover img,
.card-icon:hover img,
.benefit-icon:hover img,
.section-icon:hover img {
    transform: rotate(10deg) scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.3));
}

/* Button Enhanced Hover Effects */
.btn-primary,
.btn-secondary,
.btn-minimal {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before,
.btn-secondary::before,
.btn-minimal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-minimal:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-minimal:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.4);
}

/* Navigation Link Enhanced Effects - Removed to avoid conflicts */

/* Logo Hover Effect */
.logo-link:hover .logo-icon {
    transform: rotate(360deg) scale(1.1);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Footer Logo Hover Effect */
.footer-logo:hover .footer-logo-icon {
    transform: rotate(-360deg) scale(1.2);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Form Field Enhanced Effects */
.form-field:hover input,
.form-field:hover textarea,
.form-field:hover select {
    border-bottom-color: #8B5CF6;
    transform: translateY(-2px);
}

.form-field:hover label {
    color: #8B5CF6;
    transform: translateY(-1.5rem) scale(0.85) translateX(5px);
}

/* Step Number Enhanced Effect */
.step-number {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step:hover .step-number {
    transform: scale(1.3) rotate(360deg);
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* Smooth Block and Section Animations */
.section-header,
.story-card,
.gallery-item,
.step-item,
.insight-card,
.course-card,
.design-card,
.trend-card,
.type-card,
.financial-card,
.contact-card,
.faq-item,
.info-card,
.explore-card,
.detail-card,
.contact-info-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Staggered animation delays */
.story-card:nth-child(1) { animation-delay: 0.1s; }
.story-card:nth-child(2) { animation-delay: 0.2s; }
.story-card:nth-child(3) { animation-delay: 0.3s; }

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }
.step-item:nth-child(5) { animation-delay: 0.5s; }

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

/* Section animations with hover effects */
.hero-section,
.about-section,
.services-section,
.gallery-section,
.stories-section,
.contact-section,
.footer {
    animation: slideInFromBottom 1s ease-out;
    transition: transform 0.3s ease;
}

/* Section hover effects */
.about-section:hover,
.services-section:hover,
.gallery-section:hover,
.stories-section:hover {
    transform: scale(1.01);
}

/* Special hover effects for specific sections */
.cta-section {
    transition: all 0.3s ease;
}

.cta-section:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth hover animations for all cards with zoom and lift effects */
.story-card,
.gallery-item,
.step-item,
.insight-card,
.course-card,
.design-card,
.trend-card,
.type-card,
.financial-card,
.contact-card,
.faq-item,
.info-card,
.explore-card,
.detail-card,
.contact-info-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.story-card:hover,
.gallery-item:hover,
.step-item:hover,
.insight-card:hover,
.course-card:hover,
.design-card:hover,
.trend-card:hover,
.type-card:hover,
.financial-card:hover,
.contact-card:hover,
.faq-item:hover,
.info-card:hover,
.explore-card:hover,
.detail-card:hover,
.contact-info-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
    z-index: 10;
    position: relative;
}

/* Fade in animation for text elements */
.section-header h2,
.section-header p,
.hero-content h2,
.hero-content p {
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Scale animation for icons */
.story-icon,
.gallery-icon,
.step-icon,
.insight-icon,
.course-icon,
.design-icon,
.trend-icon,
.type-icon,
.financial-icon,
.contact-icon,
.faq-icon,
.info-icon,
.explore-icon {
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Different animation types */
.animate-on-scroll.fade-in {
    transform: none;
}

.animate-on-scroll.slide-left {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-left.animate-in {
    transform: translateX(0);
}

.animate-on-scroll.slide-right {
    transform: translateX(50px);
}

.animate-on-scroll.slide-right.animate-in {
    transform: translateX(0);
}

.animate-on-scroll.scale-up {
    transform: scale(0.8);
}

.animate-on-scroll.scale-up.animate-in {
    transform: scale(1);
}

/* Icon Animations - Disabled for stability */
.icon-animate {
    opacity: 1 !important;
    transform: scale(1) rotate(0deg) !important;
    animation: none;
}

.icon-animate:not(.revealed) {
    opacity: 1 !important;
    transform: scale(1) rotate(0deg) !important;
}

@keyframes iconReveal {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2) rotate(-90deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Staggered animations for grids */
.gallery-grid .gallery-item:nth-child(1) { --animation-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(2) { --animation-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(3) { --animation-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(4) { --animation-delay: 0.4s; }
.gallery-grid .gallery-item:nth-child(5) { --animation-delay: 0.5s; }
.gallery-grid .gallery-item:nth-child(6) { --animation-delay: 0.6s; }

.steps-timeline .step-item:nth-child(1) { --animation-delay: 0.1s; }
.steps-timeline .step-item:nth-child(2) { --animation-delay: 0.2s; }
.steps-timeline .step-item:nth-child(3) { --animation-delay: 0.3s; }
.steps-timeline .step-item:nth-child(4) { --animation-delay: 0.4s; }
.steps-timeline .step-item:nth-child(5) { --animation-delay: 0.5s; }

.insights-grid .insight-card:nth-child(1) { --animation-delay: 0.1s; }
.insights-grid .insight-card:nth-child(2) { --animation-delay: 0.2s; }
.insights-grid .insight-card:nth-child(3) { --animation-delay: 0.3s; }
.insights-grid .insight-card:nth-child(4) { --animation-delay: 0.4s; }
.insights-grid .insight-card:nth-child(5) { --animation-delay: 0.5s; }

/* Pulse animation for important elements */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-primary:focus,
.btn-minimal:focus {
    animation: pulse 0.6s ease-in-out;
}

/* Floating animation for hero elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content,
.policy-hero-content,
.thank-you-content {
    animation: float 6s ease-in-out infinite;
}

/* Shimmer effect for loading states */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Smooth transitions for all interactive elements */
* {
    transition-property: transform, opacity, box-shadow, background-color, border-color;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .icon-animate,
    .hero-content,
    .policy-hero-content,
    .thank-you-content {
        animation: none;
        transition: none;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.team-member {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.member-icon {
    margin-bottom: 1.5rem;
 
}

.member-icon img {
    width: 74px;
    height: 74px;
       border-radius: 50%;
}

.member-info h3 {
    color: #8B5CF6;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.position {
    color: #6B7280;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.member-info p:last-child {
    color: #374151;
    line-height: 1.6;
}

/* Values Section Styles */
.values-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

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

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

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon img {
    width: 64px;
    height: 64px;
}

.value-card h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Registration Section */
.registration {
    padding: 80px 0;
    background-color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
}

.registration h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #111827;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B5CF6;
}

.form-group input.error,
.form-group select.error {
    border-color: #EF4444;
}

.error-message {
    color: #EF4444;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: #8B5CF6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8B5CF6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9CA3AF;
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background-color: #F9FAFB;
}

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

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-card h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .features h2,
    .registration h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content p {
        margin-right: 0;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .features,
    .registration {
        padding: 60px 0;
    }
    
    .feature-card,
    .contact-card {
        padding: 1.5rem;
    }
}

/* Policy Pages Styles */
.policy-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/policy-hero.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.policy-hero:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.policy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.policy-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.policy-content {
    padding: 80px 0;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-text h2 {
    color: #8B5CF6;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.policy-text h3 {
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.policy-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
}

.policy-text a {
    color: #8B5CF6;
    text-decoration: none;
}

.policy-text a:hover {
    text-decoration: underline;
}

/* Thank You Page Styles */
.thank-you-hero {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.thank-you-details {
    padding: 80px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.detail-card,
.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.steps-list {
    margin-top: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-number {
    background: #8B5CF6;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-text h3 {
    margin-bottom: 0.5rem;
    color: #111827;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item strong {
    color: #8B5CF6;
    display: block;
    margin-bottom: 0.25rem;
}

.additional-info {
    padding: 60px 0;
    background: #F9FAFB;
}

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

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
}

.explore-more {
    padding: 80px 0;
}

.explore-more h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

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

.explore-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.explore-card h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
}

.explore-card p {
    margin-bottom: 1.5rem;
    color: #6B7280;
}

.back-to-home {
    padding: 60px 0;
    background: #F9FAFB;
    text-align: center;
}

.back-content h2 {
    margin-bottom: 1rem;
    color: #111827;
}

.back-content p {
    margin-bottom: 2rem;
    color: #6B7280;
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .policy-hero h1 {
        font-size: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .policy-text {
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .advantage-item {
        padding: 1.5rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-popup {
        bottom: 10px;
        width: 95%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .features,
    .registration,
    .why-choose-us,
    .gallery-section {
        padding: 60px 0;
    }
    
    .feature-card,
    .contact-card,
    .gallery-item {
        padding: 1.5rem;
    }
    
    .advantage-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        line-height: 50px;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefits-grid,
    .design-principles,
    .success-factors {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item,
    .principle-item,
    .factor-item {
        padding: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member,
    .value-card {
        padding: 1.5rem;
    }
    
    .courses-grid,
    .design-grid,
    .steps-timeline,
    .trends-grid,
    .education-grid,
    .types-grid,
    .financial-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .course-card,
    .design-card,
    .business-steps .step-item,
    .trend-card,
    .design-education .course-card,
    .type-card,
    .financial-card,
    .contact-card,
    .faq-item {
        padding: 1.5rem;
    }
    
    .type-details {
        padding: 1rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-benefits {
        gap: 1rem;
    }
    
    .benefit {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Policy Pages Mobile Styles */
    .policy-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .policy-navigation {
        position: static;
        order: 2;
    }
    
    .policy-text {
        padding: 2rem;
        order: 1;
    }
    
    .policy-hero h1 {
        font-size: 2rem;
    }
    
    .policy-section .section-icon {
        float: none;
        display: block;
        text-align: center;
        margin: 0 0 1rem 0;
    }
    
    /* Thank You Page Mobile Styles */
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .detail-card,
    .contact-info-card {
        padding: 2rem;
    }
    
    .thank-you-hero h1 {
        font-size: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
    }
}