/* Import Google Fonts - Editorial/Modern Style */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Space+Mono:wght@400;700&family=DM+Sans:wght@400;500;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F7B801;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --text-color: #2D3142;
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%);
    --gradient-2: linear-gradient(135deg, #004E89 0%, #1A659E 100%);
    --gradient-3: linear-gradient(135deg, #F7B801 0%, #FF6B35 100%);
    --font-display: 'Playfair Display', serif;
    --font-mono: 'Space Mono', monospace;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Navbar Styles */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary-color);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.brand-text {
    letter-spacing: 2px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: rgba(255,255,255,0.85) !important;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A2E 0%, #2D3142 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 184, 1, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--light-color);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

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

.hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gradient-1);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    color: #fff;
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

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

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 5px solid rgba(255,255,255,0.1);
}

.floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-1);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
}

.floating-card span {
    font-weight: 700;
    font-size: 1.1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Styles */
.section-header {
    margin-bottom: 3rem;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background: var(--light-color);
    position: relative;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Alternate feature card styles */
.feature-card-2 .feature-icon {
    background: var(--gradient-2);
}

.feature-card-3 .feature-icon {
    background: var(--gradient-3);
}

.feature-card-4 .feature-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-card-5 .feature-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Courses Section */
.courses-section {
    padding: 8rem 0;
    background: #fff;
    position: relative;
}

.courses-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 78, 137, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.course-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-1);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-badge-popular {
    background: var(--gradient-2);
}

.course-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.course-meta span {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

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

.course-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.course-description {
    color: var(--text-color);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex: 1;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.course-features span {
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-features i {
    color: var(--primary-color);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.course-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-display);
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

.btn-course {
    background: var(--gradient-1);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-course:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    color: #fff;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 107, 53, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(247, 184, 1, 0.1) 50%, transparent 60%);
    background-size: 100px 100px;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.stat-item {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin: 0;
}

/* Blog Section */
.blog-section {
    padding: 8rem 0;
    background: var(--light-color);
}

.blog-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-1);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.blog-category-design {
    background: var(--gradient-2);
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.blog-excerpt {
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-link:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(247, 184, 1, 0.15) 0%, transparent 50%);
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
}

.btn-cta {
    background: var(--gradient-1);
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 30px rgba(255, 107, 53, 0.4);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.6);
    color: #fff;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--primary-color);
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand i {
    color: var(--primary-color);
}

.footer-brand p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

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

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

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-color);
    color: #fff;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-learn {
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cookie-learn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-cookie-accept {
    background: var(--gradient-1);
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Contact Form Styles */
.contact-section {
    padding: 8rem 0;
    background: var(--light-color);
}

.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
    outline: none;
}

.form-control.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.show {
    display: block;
}

.btn-submit {
    background: var(--gradient-1);
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.contact-info-card {
    background: var(--gradient-1);
    color: #fff;
    padding: 3rem;
    border-radius: 25px;
    height: 100%;
}

.contact-info-card h3 {
    color: #fff;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.contact-info-item div h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info-item div p {
    margin: 0;
    opacity: 0.9;
}

.map-container {
    margin-top: 4rem;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Policy Pages */
.policy-section {
    padding: 8rem 0 4rem;
    background: var(--light-color);
}

.policy-content {
    background: #fff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.policy-content h2 {
    color: var(--dark-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.policy-content h3 {
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.policy-date {
    color: var(--text-color);
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 2rem;
}

/* About Page */
.about-hero {
    background: var(--gradient-2);
    color: #fff;
    padding: 10rem 0 6rem;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #fff;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content-section {
    padding: 6rem 0;
}

.mission-vision-card {
    background: #fff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mission-vision-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-vision-card h3 {
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.team-member {
    text-align: center;
}

.team-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 20px;
}

.team-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-image {
    transform: scale(1.1);
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper,
    .policy-content {
        padding: 2rem;
    }
    
    .feature-card,
    .mission-vision-card {
        margin-bottom: 1.5rem;
    }
}



.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}


.social-links a:hover i{
    color: #fff;
}