/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;700&display=swap');

:root {
    --primary-color: #4285F4;    /* Google Blue */
    --secondary-color: #e0e0e0;  /* Metallic Silver */
    --dark-color: #000d1a;       /* Midnight Blue */
    --light-color: #ffffff;
    --background-color: #f9fafb;
    --text-color: #374151;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.7;
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--dark-color);
}

/* Navigation */
.navbar {
    background: #000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

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

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff !important;
}

.navbar-brand i {
    margin-right: 10px;
}

.navbar-subtitle {
    font-size: 0.8rem;
    color: #fff;
    margin-left: 10px;
}

.nav-link {
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
    color: #fff !important;
}

.nav-link:hover, .nav-link.active {
    color: #4285F4 !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--light-color);
    padding: 120px 0;
    text-align: center;
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--light-color);
}

.highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-wave {
    display: none;
}

/* Page Header */

.modern-contact-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 60px;
    margin-top: 70px;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    color: white;
}

.page-header h1, .page-header p {
    color: white;
}

/* Cards */
.card {
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

.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);
}

/* Features */
.features-section {
    background: var(--background-color);
    padding: 80px 0;
}

.value-card {
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    min-height: 250px; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

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

/* Course Cards */
.course-card {
    overflow: hidden;
    height: 100%;
}

.course-category {
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.course-category.ai {
    background: var(--ai-color);
	color: var(--dark-color);
}

.course-category.robotics {
    background: var(--robotics-color);
	color: var(--dark-color);
}

.course-category.python {
    background: var(--python-color);
    color: var(--dark-color);
}

.course-category.skills {
    background: var(--skills-color);
	color: var(--dark-color);
}

.course-content {
    padding: 1.5rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Apply card style */
.feature-card, .course-card, .detailed-course-card, .category-card, .skill-course-card, .testimonial-card, .contact-form-card, .contact-info-card, .admissions-card, .action-card, .faq-item, .team-card {
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

.feature-card:hover, .course-card:hover, .detailed-course-card:hover, .category-card:hover, .skill-course-card:hover, .testimonial-card:hover, .contact-form-card:hover, .contact-info-card:hover, .admissions-card:hover, .action-card:hover, .faq-item:hover, .team-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);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    background: #374151;
    color: #e5e7eb;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-divider {
    border-color: #374151;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
    background: var(--secondary-color);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Section Titles */
.section-title {
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.section-title {
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    display: inline-block;  /* ← ADD THIS */
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;              /* ← CHANGE: instead of fixed width */
    height: 5px;
    background: var(--primary-color);
    border-radius: 3px;
}

/* Remove this rule - no longer needed */
/* .text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
} */

.section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* Detailed Course Cards */
.detailed-course-card {
    padding: 2rem;
    height: 100%;
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.ai .course-icon { color: var(--ai-color); }
.robotics .course-icon { color: var(--robotics-color); }
.python .course-icon { color: var(--python-color); }

.course-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.course-features li {
    margin-bottom: 0.75rem;
}

.course-features i {
    margin-right: 10px;
    color: var(--success-color);
}

/* Category Cards */
.category-card {
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Skill Course Cards */
.skill-course-card {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.skill-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
    background: var(--background-color);
    padding: 80px 0;
}

.testimonial-card {
    padding: 2rem;
    position: relative;
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

/* Contact Form */
.contact-form-card {
    padding: 2.5rem;
}

.contact-info-card {
    background: var(--primary-color);
    color: white;
    padding: 2.5rem;
    height: 100%;
}

.contact-info-card h3, .contact-info-card p {
    color: white;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

/* Admissions Section */
.admissions-section {
    background: var(--background-color);
    padding: 80px 0;
}

.admissions-card {
    padding: 2rem;
    height: 100%;
}

.admissions-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Action Card */
.action-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    text-align: center;
    color: white;
}

.action-card h2, .action-card p {
    color: white;
}

/* FAQ Section */
.faq-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    margin-top: 1rem;
}

/* Team Section */
.team-card {
    text-align: center;
    padding: 2rem;
}

.team-info {
    min-height: 200px; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--primary-color);
}

.team-social a {
    color: #9ca3af;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color);
}

/* Highlight for Value Cards */
.values-section .value-card {
    border: 2px solid var(--primary-color); /* A more prominent border */
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.2); /* A more distinct shadow using primary color */
}

.values-section .value-card:hover {
    transform: translateY(-8px); /* Slightly more pronounced lift on hover */
    box-shadow: 0 15px 30px rgba(66, 133, 244, 0.3); /* More pronounced shadow on hover */
}

/* About Page Specific */
.about-hero {
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.8)), url('https://via.placeholder.com/1500x800') no-repeat center center/cover;
}

.stats-card {
    background: var(--light-color);
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

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

.timeline-item {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--primary-color);
}

.timeline-dot {
    position: absolute;
    left: -9px;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Contact Page Specific */
.contact-methods-section {
    background: var(--background-color);
    padding: 80px 0;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}
#smart-contact-form-section {
    display: none; /* Initially hidden */
    padding: 80px 0;
    background-color: #f0f2f5;
}

.smart-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.progress-bar-container {
    margin-bottom: 30px;
}

.btn-next, .btn-prev, .btn-submit {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

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

.btn-prev {
    background: #6c757d;
    color: white;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-option-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
}

.contact-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.contact-option-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Color coding for cards */
.email-card { border-color: #3b82f6; }
.email-card .icon { color: #3b82f6; }

.phone-card { border-color: #22c55e; }
.phone-card .icon { color: #22c55e; }

.visit-card { border-color: #a855f7; }
.visit-card .icon { color: #a855f7; }

.smart-form-card { border-color: #ef4444; }
.smart-form-card .icon { color: #ef4444; }

.method-smart-form {
    border-color: #ef4444;
    cursor: pointer;
}

.method-smart-form .method-icon {
    background: #ef4444;
}

.methodology-card {
    background: var(--light-color);
    padding: 2rem;
    text-align: center;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.methodology-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);
}

.methodology-card .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.partner-logo {
    background: var(--light-color);
    padding: 2rem;
    text-align: center;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.partner-logo: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);
}

.partner-logo i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.courses-page {
    padding-top: 80px;
}
.page-header h1 {
    color: white;
}
.page-header .lead {
    color: #fff !important;
}
.filter-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.filter-group {
    margin-bottom: 25px;
}
.new-course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.new-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.card-img-top {
    height: 180px;
    object-fit: cover;
}
.card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.course-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.course-tags .badge {
    font-size: 0.8rem;
    padding: 5px 10px;
}
.card-title {
    font-weight: 600;
    margin-bottom: 10px;
}
.card-text {
    font-size: 0.9rem;
    color: #6c757d;
    flex-grow: 1;
}
.card-footer {
    background: none;
    border-top: 1px solid #eee;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.video-modal .modal-dialog {
    max-width: 800px;
}
.video-modal .modal-body {
    padding: 0;
    position: relative;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}
.video-modal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-gradient {
    background: linear-gradient(45deg, #4285F4, #3a0ca3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item p {
    color: #000;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #000;
}

/* Contact Illustration */
.contact-illustration {
    position: relative;
    height: 300px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(10px);
}

.float-icon:nth-child(1) {
    top: 20%;
    left: 10%;
}

.float-icon:nth-child(2) {
    top: 50%;
    left: 70%;
}

.float-icon:nth-child(3) {
    bottom: 20%;
    left: 30%;
}

.illustration-card {
    background: white;
    color: #333;
    padding: 25px;
    border-radius: 15px;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.connection-options {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.connection-option {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.connection-option:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Contact Methods */
.method-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 4px solid #667eea;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.method-icon {
    width: 70px;
    height: 70px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.method-details {
    text-align: left;
    margin: 20px 0;
}

.method-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.method-btn:hover {
    background: #5a67d8;
    color: white;
    transform: scale(1.05);
}

/* Smart Contact Form */
.smart-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e9ecef;
    color: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.step.active .step-number {
    background: #667eea;
    color: white;
}

/* Course Grid */
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.course-option input {
    display: none;
}

.course-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.course-option input:checked + .course-card {
    background: #667eea;
    color: white;
    transform: scale(1.05);
}

.course-card i {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
}

/* Live Support */
.live-support-chat {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chat-header {
    background: #667eea;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.chat-preview {
    padding: 20px;
    height: 250px;
    overflow-y: auto;
}

.message {
    max-width: 80%;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 15px;
}

.message.agent {
    background: #f0f2f5;
    margin-right: auto;
}

.message.user {
    background: #667eea;
    color: white;
    margin-left: auto;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.floating-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    min-width: 150px;
}

.floating-contact:hover .floating-menu {
    display: flex;
}

.floating-option {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}

.floating-option:hover {
    background: #f8f9fa;
}

/* Social Connect */
.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.social-platform {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid;
}

.social-platform:hover {
    transform: translateY(-5px);
}

.social-platform i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.social-platform h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.social-platform p {
    font-size: 0.9rem;
    color: #6b7280;
}

.follower-count {
    font-weight: 600;
    color: var(--primary-color);
}

.youtube { border-color: #FF0000; }
.linkedin { border-color: #0A66C2; }
.instagram { border-color: #E4405F; }
.discord { border-color: #5865F2; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-platforms {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .course-grid {
        grid-template-columns: 1fr;
    }
    
    .social-platforms {
        grid-template-columns: 1fr;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
}
