/* Global Styles */
:root {
    --primary-color: #0f5132; /* Deep green */
    --secondary-color: #10b981; /* Vibrant green */
    --accent-color: #84cc16; /* Lime green */
    --light-color: #ecfdf5; /* Light green tint */
    --dark-color: #064e3b; /* Very dark green */
    --text-color: #064e3b; /* Dark green */
    --text-light: #047857; /* Medium green */
    --bg-color: #f0fdf4;
    --white: #ffffff;
    --dark: #222;
    --border-radius: 8px;
    --box-shadow: 0 10px 25px rgba(6, 78, 59, 0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.8s ease;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.2px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn:hover::before {
    opacity: 1;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(30, 58, 138, 0.08);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.logo h1 {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary-color);
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    opacity: 0.6;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 35px;
    animation: fadeIn 0.5s ease-out;
    animation-delay: calc(0.1s * var(--i, 0));
    animation-fill-mode: both;
}

nav ul li:nth-child(1) { --i: 1; }
nav ul li:nth-child(2) { --i: 2; }
nav ul li:nth-child(3) { --i: 3; }
nav ul li:nth-child(4) { --i: 4; }
nav ul li:nth-child(5) { --i: 5; }

nav ul li a {
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
    transition: var(--transition-medium);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 58, 138, 0.85)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradientFlow 15s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 10s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInUp 1s ease-out;
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero .btn {
    animation: slideInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.about h2,
.courses h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about h2::after,
.courses h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Courses Section */
.courses {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.courses::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.course-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(30, 58, 138, 0.05);
    position: relative;
    z-index: 1;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-icon {
    font-size: 46px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    background: rgba(59, 130, 246, 0.1);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition-medium);
}

.course-card:hover .course-icon {
    background: rgba(59, 130, 246, 0.15);
    transform: scale(1.1);
}

.course-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-medium);
}

.course-card:hover h3 {
    color: var(--secondary-color);
}

.course-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    transition: var(--transition-medium);
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0) 70%);
    border-radius: 50%;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta .btn::before {
    background: var(--light-color);
}

.cta .btn:hover {
    color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: var(--secondary-color);
    position: relative;
}

.footer-logo span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    opacity: 0.6;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 16px;
    display: inline-block;
}

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

.footer-contact p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    font-size: 16px;
}

.footer-contact p i {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 18px;
    width: 25px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    position: relative;
    z-index: 2;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 58, 138, 0.85)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0) 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-info h2,
.contact-form h2,
.resources-section h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-info h2::after,
.contact-form h2::after,
.resources-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Courses Section Styles for Contact Page */
.courses-section {
    margin-top: 40px;
    animation: fadeIn 0.8s ease-out;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
}

.contact-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
    border: 1px solid rgba(15, 81, 50, 0.1);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transition: var(--transition-medium);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(15, 81, 50, 0.15);
    border-color: rgba(15, 81, 50, 0.2);
}

.course-icon {
    width: 70px;
    height: 70px;
    background: rgba(15, 81, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-medium);
}

.course-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition-medium);
}

.course-card:hover .course-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.course-card:hover .course-icon i {
    color: var(--white);
}

.course-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: var(--transition);
}

.course-card:hover h3 {
    color: var(--secondary-color);
}

.course-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-top: 10px;
    border-top: 1px dashed rgba(15, 81, 50, 0.1);
}

.course-detail {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 14px;
}

.course-detail i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.course-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.course-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.course-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(15, 81, 50, 0.2);
}

.course-btn:hover::before {
    opacity: 1;
}

.direct-contact-options {
    margin-top: 30px;
}

.direct-contact-options h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: var(--white);
    color: var(--dark-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
    flex: 1;
    min-width: 150px;
    animation: fadeIn 0.5s ease-out;
}

.contact-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.phone-btn:hover {
    background: #4CAF50;
    color: white;
}

.whatsapp-btn:hover {
    background: #25D366;
    color: white;
}

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

.office-address {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    animation: fadeIn 0.8s ease-out;
}

.office-address h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.office-address p {
    display: flex;
    align-items: flex-start;
    color: var(--text-color);
    line-height: 1.6;
}

.office-address p i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-info > p {
    margin-bottom: 35px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item .icon {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 20px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.contact-item:hover .icon {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.contact-item .text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item .text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.5;
}

.social-links h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.social-icons {
    display: flex;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 15px;
    transition: var(--transition-medium);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
    animation: fadeIn 0.5s ease-out;
    animation-delay: calc(0.1s * var(--i, 0));
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.social-icon:nth-child(1) { --i: 1; }
.social-icon:nth-child(2) { --i: 2; }
.social-icon:nth-child(3) { --i: 3; }
.social-icon:nth-child(4) { --i: 4; }

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 1;
    opacity: 0;
    transition: var(--transition-medium);
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon i {
    position: relative;
    z-index: 2;
    transition: var(--transition-medium);
}

.social-icon:hover i {
    transform: scale(1.2);
}

/* Contact Form */
.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: rgba(241, 245, 249, 0.5);
    color: var(--text-color);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    animation: fadeIn 0.5s ease-out;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background-color: rgba(241, 245, 249, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    background-color: white;
    transform: translateY(-2px);
}

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

.btn-submit {
    width: 100%;
    font-size: 16px;
    padding: 16px;
    margin-top: 10px;
    letter-spacing: 1.5px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease-out;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-medium);
}

.faq-question:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.5;
    transition: var(--transition-medium);
}

.faq-toggle {
    font-size: 18px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    margin-left: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.05);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease 0.2s;
}

.faq-item.active .faq-toggle {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.2);
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 16px;
    }

    .course-card h3 {
        font-size: 20px;
    }

    .testimonial-card p {
        font-size: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info, .contact-form, .location-info {
        padding: 30px;
    }

    .contact-course-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .course-details {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 15px 20px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .about,
    .courses,
    .contact-section,
    .faq-section,
    .cta-section {
        padding: 70px 0;
    }
    
    .about h2,
    .courses h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .about p {
        font-size: 16px;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-course-grid {
        grid-template-columns: 1fr;
    }
    
    .course-card {
        padding: 25px;
    }
    
    .course-icon {
        width: 60px;
        height: 60px;
    }
    
    .course-icon i {
        font-size: 24px;
    }
    
    .page-header {
        padding: 80px 0;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form,
    .resources-section {
        margin-bottom: 40px;
    }
    
    .contact-info h2,
    .contact-form h2,
    .resources-section h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .resources-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .resource-card {
        padding: 20px;
    }
    
    .resource-icon {
        width: 50px;
        height: 50px;
    }
    
    .resource-icon i {
        font-size: 20px;
    }
    
    .resource-card h3 {
        font-size: 20px;
    }
    
    .webinar-item {
        flex-direction: column;
    }
    
    .webinar-date {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .newsletter-signup {
        padding: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        margin-bottom: 10px;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
    
    .contact-item .icon {
        min-width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .contact-item .text h3 {
        font-size: 16px;
    }
    
    .contact-item .text p {
        font-size: 14px;
    }
    
    .contact-form form {
        margin-top: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        margin-bottom: 5px;
        font-size: 14px;
    }
    
    .form-control {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .faq-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-toggle {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer {
        font-size: 14px;
        padding: 10px 0 0;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo h2 {
        font-size: 24px;
    }
    
    .footer-links h3,
    .footer-contact h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .footer-contact p {
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    .footer-bottom {
        margin-top: 30px;
        font-size: 14px;
    }
    
    .section-intro {
        font-size: 15px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .about, 
    .courses,
    .contact-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .about h2, 
    .courses h2,
    .cta h2,
    .faq-section h2 {
        font-size: 28px;
    }
    
    .about p {
        font-size: 15px;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    
    .course-card {
        padding: 20px;
    }
    
    .course-card h3 {
        font-size: 18px;
    }
    
    .course-card p {
        font-size: 14px;
    }
    
    .course-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .course-icon i {
        font-size: 20px;
    }
    
    .course-details {
        margin-bottom: 15px;
    }
    
    .course-btn {
        padding: 10px 15px;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 30px;
    }
    
    .page-header p {
        font-size: 15px;
    }
    
    .contact-info h2, 
    .contact-form h2,
    .resources-section h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .contact-info h2::after, 
    .contact-form h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info > p {
        text-align: center;
        font-size: 15px;
    }
    
    .resource-card {
        padding: 15px;
    }
    
    .resource-card h3 {
        font-size: 18px;
    }
    
    .resource-card p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .resource-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .webinar-item {
        padding: 10px;
    }
    
    .webinar-info h4 {
        font-size: 15px;
    }
    
    .webinar-info p {
        font-size: 13px;
    }
    
    .newsletter-signup {
        padding: 15px;
    }
    
    .newsletter-signup h3 {
        font-size: 18px;
    }
    
    .newsletter-signup p {
        font-size: 14px;
    }
    
    .newsletter-input {
        padding: 10px;
        font-size: 14px;
    }
    
    .newsletter-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .contact-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .contact-item .text h3 {
        font-size: 15px;
    }
    
    .contact-item .text p {
        font-size: 13px;
    }
    
    .section-intro {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-logo h2 {
        font-size: 22px;
    }
    
    .footer-logo p {
        font-size: 14px;
    }
    
    .footer-links h3,
    .footer-contact h3 {
        font-size: 16px;
    }
    
    .footer-links ul li a {
        font-size: 14px;
    }
    
    .footer-contact p {
        font-size: 13px;
    }
    
    .footer-bottom {
        font-size: 13px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}