/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
  /*  min-height: 100vh;*/
    display: flex;
    flex-direction: column;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

/* Menu Container */
.menu-container {
    width: 100%;
    height: 64px;
    border: none;
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Courses Section */
.courses-section {
  /*  padding: 64px 0;*/
    background-color: #f5f5f5;
	padding-left: 20px!important;
	padding-right: 20px!important;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1976d2;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

/* Features Section */
.features-section {
    padding: 64px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

/* Cards */
.mui-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mui-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.mui-card-media {
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.mui-card-icon {
    font-size: 64px;
    color: #1976d2;
}

.mui-card-content {
    padding: 24px;
}

.mui-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1976d2;
}

.mui-card-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 16px;
}

.mui-card-description {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 16px;
}

.mui-card-actions {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
}

/* Buttons */
.mui-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
    gap: 8px;
}

.mui-button-contained {
    background-color: #1976d2;
    color: white;
    border: none;
}

.mui-button-contained:hover {
    background-color: #1565c0;
}

.mui-button-text {
    color: #1976d2;
    background: none;
    border: none;
}

.mui-button-text:hover {
    background-color: rgba(25, 118, 210, 0.04);
}

/* Chips */
.mui-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.mui-chip {
    background-color: rgba(25, 118, 210, 0.1);
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Features */
.feature-icon {
    font-size: 48px;
    color: #1976d2;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1976d2;
}

/* Footer */
.footer {
    width: 100%;
    border: none;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 48px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .courses-grid,
    .features-grid {
        gap: 24px;
    }

    .mui-card-media {
        height: 160px;
    }

    .mui-card-icon {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 32px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .mui-card-media {
        height: 140px;
    }

    .mui-card-icon {
        font-size: 40px;
    }
}

/* Global Styles */
:root {
    --primary-color: #1976d2;
    --secondary-color: #dc004e;
    --background-color: #f5f5f5;
    --text-color: #333;
    --card-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Menu Container */
.menu-container {
    width: 100%;
    height: 64px;
    border: none;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #2196f3);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Material UI Button Styles */
.mui-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
    gap: 8px;
}

.mui-button-contained {
    background-color: white;
    color: var(--primary-color);
    border: none;
}

.mui-button-contained:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.mui-button-text {
    color: white;
    background: none;
    border: none;
}

.mui-button-text:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin: 3rem 0;
    color: var(--text-color);
}

/* Course Cards */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mui-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mui-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.mui-card-media {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.mui-card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mui-card-content {
    padding: 1rem;
}

.mui-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
}

.mui-card-subtitle {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 1rem;
}

.mui-card-description {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 1rem;
}

.mui-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mui-chip {
    background-color: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.87);
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 0.75rem;
}

.mui-card-actions {
    padding: 0.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

/* Features Section */
.features-section {
    background-color: white;
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-icon {
    font-size: 3rem !important;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
}

/* Footer */
.footer {
    width: 100%;
  /*  height: 200px;*/
    border: none;
  /*  background-color: #1a1a1a;*/
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Material Icons */
.material-icons {
    font-size: 1.25rem;
    vertical-align: middle;
}

/* Color Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --header-bg: #1e293b;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Base styles */
html, body {
   
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
   /* padding-top: 3.25rem; /* Space for fixed navbar */
}

/* Container styles */
.container {
    flex: 1 0 auto;
    padding: 2rem 0;
    margin-top: 60px; /* Space for fixed menu */
}

/* Menu styles */
.menu-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #2c3e50;
}

.menu-container iframe {
    width: 100%;
    height: 60px;
    border: none;
}

/* Footer styles */
.footer {
    flex-shrink: 0;
    width: 100%;
   /* background-color: #2c3e50;
    margin-top: auto;*/
}

.footer iframe {
    width: 100%;
  /*  height: 200px;*/
    border: none;
    display: block;
}

/* Content styles */
.content-wrapper {
    position: relative;
    min-height: calc(100vh - 260px);
    padding: 2rem 0;
}

/* Page specific styles */
.policy-content,
.course-content,
.about-content,
.faq-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* Card styles */
.card {
    margin-bottom: 20px;
    border: none;
    box-shadow: var(--card-shadow);
    background-color: var(--background-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-body {
    padding: 20px;
}

/* Button styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-dark {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: white;
}

/* Price tag styles */
.price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

/* Section styles */
.hero-section {
    padding: 60px 20px!important;
   /* background: linear-gradient(135deg, var(--background-light) 0%, #e2e8f0 100%);*/
	background: url("images/banner.jpg") no-repeat;
	background-size: cover;
}

.featured-courses {
    padding: 60px 0;
    background-color: var(--background-white);
}

.why-choose-us {
    padding: 60px 0;
    background-color: var(--background-light);
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

/* Icon colors */
.text-primary {
    color: #3498db !important;
}

/* Card title styles */
.card-title {
    color: var(--text-dark);
    font-weight: 600;
}

/* Card text styles */
.card-text {
    color: var(--text-light);
}

/* Section headings */
h2 {
   /* color: var(--text-dark);*/
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        margin-top: 50px;
    }
    
    .menu-container iframe {
        height: 50px;
    }
    
    .footer iframe {
        height: 180px;
    }
    
    .content-wrapper {
        min-height: calc(100vh - 230px);
    }
}

/* Menu overlay styles */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

/* Iframe styles */
iframe {
    border: none;
    width: 100%;
    height: 100%;
}

/* Utility classes */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Animation for page transitions */
.fade-enter {
    opacity: 0;
}

.fade-enter-active {
    opacity: 1;
    transition: opacity 300ms ease-in;
}

.fade-exit {
    opacity: 1;
}

.fade-exit-active {
    opacity: 0;
    transition: opacity 300ms ease-in;
}

/* Navbar Styles */
.navbar {
    background-color: #363636;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: #fff !important;
}

/* Dropdown Styles */
.dropdown-menu {
    background-color: #fff;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
}

.dropdown-item {
    color: #212529;
    padding: 0.5rem 1.5rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #212529;
}

/* Button Styles */
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Ensure dropdowns are visible */
.dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #343a40;
        padding: 1rem;
        border-radius: 0.25rem;
        margin-top: 0.5rem;
    }
    
    .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
}

/* Navbar menu styles */
.navbar-menu {
    z-index: 1000;
}

.navbar-item {
    color: #fff !important;
}

.navbar-item:hover {
    background-color: #4a4a4a !important;
    color: #fff !important;
}

/* Dropdown specific styles */
.navbar-item.has-dropdown {
    position: relative;
}

.navbar-dropdown {
    background-color: #363636;
    border-top: 1px solid #4a4a4a;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1001;
    display: none;
}

.navbar-item.has-dropdown:hover .navbar-dropdown {
    display: block;
}

.navbar-dropdown .navbar-item {
    color: #fff !important;
    padding: 0.5rem 1rem;
}

.navbar-dropdown .navbar-item:hover {
    background-color: #4a4a4a !important;
}

.navbar-burger {
    color: #fff;
}

.navbar-burger span {
    background-color: #fff;
}

/* Mobile styles */
@media screen and (max-width: 1023px) {
    .navbar-menu.is-active {
        z-index: 1000;
    }
    .navbar-dropdown {
        position: static;
        box-shadow: none;
        display: none;
    }
    .navbar-item.has-dropdown.is-active .navbar-dropdown {
        display: block;
    }
}

/* Local Fonts */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('assets/icons/MaterialIcons-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/Roboto-Regular.woff2') format('woff2');
}

/* Material Icons */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Global Font */
body, html {
    font-family: 'Roboto', Arial, sans-serif;
} 

 .menu-bar {
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 0 24px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .menu-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #1976d2;
            font-size: 1.5rem;
            font-weight: 500;
            cursor: default;
            pointer-events: none;
        }

        .menu-logo .material-icons {
            font-size: 32px;
        }

        .menu-links {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .menu-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 4px;
            transition: background-color 0.2s;
        }

        .menu-link:hover {
            background-color: rgba(25, 118, 210, 0.1);
            color: #1976d2;
        }

        .menu-link.active {
            color: #1976d2;
            background-color: rgba(25, 118, 210, 0.1);
        }

        .menu-button {
            display: none;
            background: none;
            border: none;
            color: #333;
            cursor: pointer;
            padding: 8px;
        }

        @media (max-width: 768px) {
            .menu-links {
                display: none;
            }

            .menu-button {
                display: block;
            }

            .menu-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: white;
                padding: 16px;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
        }

.image2 { background: url("images/01.jpg") no-repeat; background-size: cover}
.image3 { background: url("images/02.jpg") no-repeat; background-size: cover}
.image4 { background: url("images/03.jpg") no-repeat; background-size: cover}


.mui-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 48px 0;
}
.mui-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}
.mui-footer-section h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 16px;
    color: white;
}
.mui-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mui-footer-links li {
    margin-bottom: 8px;
}
.mui-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}
.mui-footer-links a:hover {
    color: white;
}
.mui-footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.mui-footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.mui-footer-social a:hover {
    color: white;
}
.mui-footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 16px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
.mui-footer-content {
    text-align: center;
}
.mui-footer-social {
    justify-content: center;
}
	
}