/* ===================================
   MICT - Masters Institute of Computer Training
   Custom Stylesheet
   Brand Colors:
   - Royal Blue: #005EA8
   - Golden Yellow: #D6CB1E
   - White: #FFFFFF
=================================== */

/* ===================================
   CSS Variables
=================================== */
:root {
    --primary-color: #005EA8;
    --primary-dark: #004a85;
    --primary-light: #e6f2fa;
    --secondary-color: #D6CB1E;
    --secondary-dark: #b8ae18;
    --white: #FFFFFF;
    --black: #1a1a1a;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    --transition: all 0.3s ease;
}

/* ===================================
   Global Styles
=================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
}

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

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

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

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--gray-100) !important;
}

/* ===================================
   Buttons
=================================== */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

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

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

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

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

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

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

.btn-light:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

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

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

.top-bar-info i {
    margin-right: 8px;
    color: var(--secondary-color);
}

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

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

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

.navbar {
    padding: 15px 0;
}

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

.navbar-brand .logo {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--gray-700);
    padding: 10px 15px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 10px;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 4px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

/* ===================================
   Hero Section
=================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    padding: 100px 0 150px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-accent {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 550px;
}

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

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-shape {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(214, 203, 30, 0.5) 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.hero-stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    position: relative;
    z-index: 3;
}

.hero-stats-card .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.hero-stats-card .stat-item:last-child {
    border-bottom: none;
}

.hero-stats-card .stat-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ===================================
   Section Headers
=================================== */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    transform: translateY(-50%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   About Preview Section
=================================== */
.about-image-wrapper {
    position: relative;
}

.about-image-main img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.85rem;
    margin-top: 5px;
}

.about-content {
    padding-left: 30px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.feature-item h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-item p {
    margin-bottom: 0;
    color: var(--gray-600);
}

/* ===================================
   Why Choose Us Cards
=================================== */
.why-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ===================================
   Statistics Section
=================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    position: relative;
}

.stats-wrapper {
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-primary);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: 5px;
}

/* ===================================
   Course Cards
=================================== */
.course-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

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

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

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

.course-badge.featured {
    background: var(--secondary-color);
    color: var(--gray-900);
}

.course-badge.new {
    background: #28a745;
}

.course-content {
    padding: 25px;
}

.course-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.course-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.course-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 15px;
}

.course-meta span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

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

.course-footer {
    display: flex;
    gap: 10px;
}

/* Course Card Mini */
.course-card-mini {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.course-card-mini:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.course-card-mini h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.course-card-mini p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.course-card-mini .duration {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* ===================================
   Learning Modes
=================================== */
.mode-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.mode-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.mode-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mode-card h5 {
    font-size: 1rem;
    margin-bottom: 0;
}

/* ===================================
   Testimonials
=================================== */
.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    border: 1px solid var(--gray-200);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 25px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary-light);
    position: absolute;
    top: -10px;
    left: -5px;
    opacity: 0.5;
}

.testimonial-quote p {
    padding-left: 30px;
    font-style: italic;
    color: var(--gray-700);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.testimonial-author h5 {
    margin-bottom: 2px;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.testimonial-rating {
    color: var(--secondary-color);
}

/* ===================================
   Partners Section
=================================== */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-width: 120px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-logo i {
    font-size: 2.5rem;
    color: var(--gray-600);
}

.partner-logo span {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===================================
   CTA Section
=================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(214, 203, 30, 0.1);
    border-radius: 50%;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ===================================
   Page Header
=================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0 60px;
    position: relative;
}

.page-header-sm {
    padding: 60px 0 40px;
}

.page-header-content {
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item.active {
    color: var(--secondary-color);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   About Page
=================================== */
.vmv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

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

.vmv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vmv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.vmv-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    padding: 8px 0;
    color: var(--gray-700);
}

.values-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.advantage-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.advantage-card:hover {
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.advantage-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.advantage-content p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.about-highlights {
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.highlight-item i {
    color: var(--primary-color);
}

.corporate-list {
    list-style: none;
    padding: 0;
}

.corporate-list li {
    padding: 10px 0;
    color: var(--gray-700);
}

.corporate-list li i {
    color: var(--primary-color);
    margin-right: 12px;
}

/* ===================================
   Courses Page
=================================== */
.course-filter-section {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.filter-wrapper {
    overflow-x: auto;
    padding: 10px 0;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--gray-300);
    background: transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.course-category-block {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.category-header h3 {
    margin-bottom: 5px;
}

.category-header p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.courses-cta {
    background: var(--primary-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

.courses-cta h3 {
    margin-bottom: 10px;
}

.courses-cta p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* ===================================
   Admissions Page
=================================== */
.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-card h5 {
    margin-bottom: 10px;
}

.info-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.form-header h3 {
    color: var(--primary-color);
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-200);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.form-control,
.form-select {
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 94, 168, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card h5 {
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ===================================
   Contact Page
=================================== */
.contact-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

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

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h5 {
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.contact-card a {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.directions-list {
    list-style: none;
    padding: 0;
}

.directions-list li {
    padding: 10px 0;
    color: var(--gray-700);
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon-large {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon-large i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.social-icon-large:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.social-icon-large:hover i {
    color: var(--white);
}

/* FAQ */
.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 500;
    padding: 20px;
    color: var(--gray-800);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23005EA8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    color: var(--gray-600);
}

/* ===================================
   Blog Styles
=================================== */
.featured-post {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-post-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--gray-900);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

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

.featured-post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.featured-post-content h2 a {
    color: var(--gray-900);
}

.featured-post-content h2 a:hover {
    color: var(--primary-color);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

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

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.blog-card-content h4 a {
    color: var(--gray-900);
}

.blog-card-content h4 a:hover {
    color: var(--primary-color);
}

.blog-card-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.sidebar-search .input-group {
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.sidebar-search .form-control {
    border: none;
    padding: 12px 15px;
}

.sidebar-search .btn {
    padding: 12px 20px;
}

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

.category-list li {
    border-bottom: 1px solid var(--gray-200);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--gray-700);
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    color: var(--primary-color);
    padding-left: 10px;
}

.category-list .count {
    background: var(--gray-200);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.recent-post-image {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

.recent-post-content h6 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.recent-post-content h6 a {
    color: var(--gray-800);
}

.recent-post-content h6 a:hover {
    color: var(--primary-color);
}

.recent-post-content .date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray-700);
    transition: var(--transition);
}

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

.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.newsletter-widget .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-widget .widget-title::after {
    background: var(--secondary-color);
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-widget .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.newsletter-widget .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Blog Detail */
.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-detail-header h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

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

.blog-detail-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
}

.blog-detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-tags {
    padding: 25px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin: 30px 0;
}

.blog-detail-tags h5 {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 0;
}

.blog-detail-tags .tag-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-detail-share {
    padding: 25px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-detail-share h5 {
    margin-bottom: 0;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.share-btn.facebook {
    background: #1877f2;
    color: var(--white);
}

.share-btn.twitter {
    background: #1da1f2;
    color: var(--white);
}

.share-btn.linkedin {
    background: #0077b5;
    color: var(--white);
}

.share-btn.whatsapp {
    background: #25d366;
    color: var(--white);
}

.share-btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.author-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    margin-top: 30px;
}

.author-box .author-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-box .author-avatar i {
    font-size: 3rem;
    color: var(--primary-color);
}

.author-box h5 {
    margin-bottom: 10px;
}

.author-box p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.post-navigation {
    padding: 25px 0;
    border-top: 1px solid var(--gray-200);
}

.nav-link-prev,
.nav-link-next {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray-700);
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link-next {
    justify-content: flex-end;
}

.nav-link-prev:hover,
.nav-link-next:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.nav-link-prev small,
.nav-link-next small {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 3px;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-widget h5 {
    color: var(--white);
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   Footer
=================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-about .footer-logo {
    height: 60px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.footer-about h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

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

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

.footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

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

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

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

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

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

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

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

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

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
}

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

/* ===================================
   Back to Top Button
=================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===================================
   Alerts
=================================== */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 15px 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger,
.alert-error {
    background: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
}

/* ===================================
   Pagination
=================================== */
.pagination {
    gap: 5px;
}

.page-link {
    padding: 10px 15px;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.page-link:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===================================
   Responsive Styles
=================================== */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
    
    .hero-section {
        padding: 80px 0 120px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-experience-badge {
        right: 20px;
    }
    
    .course-category-block {
        padding: 25px;
    }
    
    .form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filter-buttons {
        justify-content: flex-start;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-card {
        flex-direction: column;
        text-align: center;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-detail-share {
        flex-direction: column;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .course-footer {
        flex-direction: column;
    }
    
    .course-footer .btn {
        width: 100%;
    }
}

/* ===================================
   Utility Classes
=================================== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-indigo {
    color: #6610f2 !important;
}

.text-purple {
    color: #6f42c1 !important;
}

.text-pink {
    color: #e83e8c !important;
}