/* Global Styles */
:root {
    --primary-color: #4a6bff;
    --secondary-color: #6c757d;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --border-radius: 10px;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Header Styles */
.header {
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    background: white;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-brand img {
    max-height: 40px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar Link Styles */
.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.btn-primary {
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    background-color: var(--primary-color) !important;
    border: none !important;
    margin-left: 10px;
    display: inline-block;
}

.nav-link.btn-primary:hover {
    background-color: #3a5ae8 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-link.btn-outline-primary {
    color: white;
    border-color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-link.btn-outline-primary:hover {
    background-color: white;
    border-color: white;
    color: #ff6b6b;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    background: #4a6bff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
}

.hero-section .col-lg-12.text-center h1 {
    font-size: 3.2rem;
    color: #fff;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.btn-primary {
    background-color: white;
    border-color: white;
    color: #ff6b6b;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: #ff6b6b;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: white;
    border-color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

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

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-box i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.features-section .feature-box i {
    color: #ff8282;
}

/* Courses Section */
.courses-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.course-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    color: var(--secondary-color);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--secondary-color);
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.newsletter-section h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-section p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding: 15px;
    border-radius: 30px 0 0 30px;
    border: none;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
}

/* Footer */
.footer {
    background: #2d658d;
    color: white;
    padding: 60px 0 0;
}

.footer .container {
    padding-bottom: 10px;
}

/* Footer Widget */
.footer-widget {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Footer Link Styles */
.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-widget ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-widget ul li a:hover {
    color: white;
}

.footer-widget ul li a:hover::after {
    transform: scaleX(1);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: white;
    font-size: 18px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Footer Social Section */
.footer-social-section {
    padding: 5px 0;
    margin: 0 auto 60px;
    max-width: 600px;
    position: relative;
    z-index: 2;
    background: transparent;
}

.footer-social-section h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
}

.footer-social-section .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    background: transparent;
}

.footer-social-section .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-section .social-link i {
    font-size: 20px;
    line-height: 1;
    color: white;
}

.footer-social-section .social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-social-section .social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.footer-social-section .social-link.twitter:hover {
    background: #000000;
    border-color: #000000;
}

.footer-social-section .social-link.instagram:hover {
    background: #e4405f;
    border-color: #e4405f;
}

.footer-social-section .social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.footer-social-section .social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.footer-social-section .social-link.linktree:hover {
    background: #39e09b;
    border-color: #39e09b;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

@media (max-width: 767.98px) {
    .footer-social-section {
        padding: 20px 0;
    }
    
    .footer-social-section .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-section .social-link i {
        font-size: 18px;
    }
    
    .footer-divider {
        margin: 15px 0;
    }
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-widget {
        margin-bottom: 25px;
    }
    
    .footer-widget h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-widget h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-widget p {
        font-size: 14px;
    }
    
    .footer-widget ul li {
        margin-bottom: 10px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
    
    .footer-divider {
        margin: 30px 0;
    }
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 20px 0;
    }
    
    .nav-link {
        padding: 10px 0 !important;
    }
    
    .nav-link.btn-primary {
        margin: 10px 0;
        display: inline-block;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        max-height: 30px;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section::before {
        width: 100%;
        clip-path: none;
        opacity: 0.5;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    .feature-box,
    .course-card,
    .testimonial-card {
        margin-bottom: 30px;
    }
}

/* Get Involved Section */
.get-involved-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.get-involved-info {
    padding-left: 50px;
}

.video-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #FFC107;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.video-overlay h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.tab-navigation {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: flex-start;
    border-bottom: 2px solid rgba(255, 107, 107, 0.1);
    padding-bottom: 15px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 25px;
}

.tab-btn.active {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6b6b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    position: relative;
    padding: 20px 0;
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

.tab-pane p {
    color: #505965;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.tab-pane .btn {
    background: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-pane .btn:hover {
    background: #ff8787;
    border-color: #ff8787;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

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

.get-involved-info img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.get-involved-info img:hover {
    transform: translateY(-10px);
}

@media (max-width: 991.98px) {
    .get-involved-info {
        padding-left: 0;
        margin-top: 40px;
    }

    .tab-navigation {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-btn {
        font-size: 1rem;
        padding: 8px 20px;
    }
}

@media (max-width: 767.98px) {
    .tab-navigation {
        gap: 10px;
    }

    .tab-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .tab-pane p {
        font-size: 1rem;
    }

    .get-involved-info {
        margin-top: 30px;
    }
}

.powered-by-section {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.powered-by-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.srj-logo {
    height: 60px;
    width: auto;
}

.academy-logo {
    height: 80px;
    width: auto;
}

.association-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 10px;
}

@media (max-width: 767.98px) {
    .logo-container {
        flex-direction: column;
        gap: 15px;
    }

    .srj-logo,
    .academy-logo {
        height: 50px;
    }

    .association-text {
        margin: 5px 0;
    }
}

/* About Us Section */
.about-us-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image .main-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover .main-img {
    transform: translateY(-10px);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ff6b6b;
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
    transform: translateY(30%);
    max-width: 280px;
    line-height: 1.4;
}

.experience-badge .text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.experience-badge .highlight {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

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

.sub-heading {
    display: inline-block;
    font-size: 1.1rem;
    color: #ff6b6b;
    margin-bottom: 15px;
    font-weight: 500;
    position: relative;
}

.sub-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 2px;
    background: #ff6b6b;
    transition: width 0.3s ease;
}

.about-content:hover .sub-heading::after {
    width: 100%;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.about-text p {
    margin-bottom: 20px;
    color: #6c757d;
    line-height: 1.8;
}

.highlight-text {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    border-left: 4px solid #ff6b6b;
    padding-left: 20px;
    margin-left: -24px;
}

@media (max-width: 991.98px) {
    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }

    .experience-badge {
        transform: translateY(0);
        right: 40px;
        max-width: 250px;
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
    .about-image {
        padding: 0;
    }

    .experience-badge {
        right: 20px;
        padding: 15px;
        max-width: 220px;
    }

    .experience-badge .text {
        font-size: 1rem;
    }

    .experience-badge .highlight {
        font-size: 0.9rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .highlight-text {
        font-size: 1rem;
        margin-left: -20px;
    }
}

/* Advisory Board Section */
.advisory-board-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.advisory-board-section .section-header {
    margin-bottom: 60px;
}

.advisor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.advisor-card:hover {
    transform: translateY(-10px);
}

.advisor-image {
    position: relative;
    overflow: hidden;
}

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

.advisor-card:hover .advisor-image img {
    transform: scale(1.05);
}

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(255, 107, 107, 0.9);
    padding: 15px;
    text-align: center;
    transition: bottom 0.3s ease;
}

.advisor-card:hover .social-links {
    bottom: 0;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

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

.advisor-info {
    padding: 25px;
    text-align: center;
}

.advisor-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.advisor-info .position {
    color: #ff6b6b;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .advisor-image img {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .advisor-image img {
        height: 280px;
    }
    
    .advisor-info h3 {
        font-size: 1.3rem;
    }
}

/* Parallax Section */
.parallax-section {
    position: relative;
    background-image: url('assets/images/about.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9) 0%, rgba(74, 107, 255, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.parallax-section h2 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.parallax-section .btn-light {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.parallax-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

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

@media (max-width: 991.98px) {
    .parallax-section {
        background-attachment: scroll;
        height: 400px;
    }
    
    .parallax-section h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 767.98px) {
    .parallax-section {
        height: 350px;
    }
    
    .parallax-section h2 {
        font-size: 2rem;
    }
    
    .parallax-section .btn-light {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff6b6b;
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #ff8787;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top i {
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top i {
        font-size: 16px;
    }
}

/* Events Section */
.events-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.event-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-content {
    padding: 25px;
    position: relative;
}

.event-date {
    position: absolute;
    top: -50px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.event-date .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.event-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
}

.event-content p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.event-meta i {
    color: #ff6b6b;
}

.event-card .btn-primary {
    width: 100%;
    padding: 12px;
    text-align: center;
    background: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
    transition: all 0.3s ease;
}

.event-card .btn-primary:hover {
    background: #ff8787;
    border-color: #ff8787;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .event-card img {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .event-card {
        margin-bottom: 40px;
    }
    
    .event-content {
        padding: 20px;
    }
    
    .event-date {
        padding: 12px;
        top: -45px;
    }
    
    .event-date .day {
        font-size: 20px;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 10px;
    }
}

.online-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(74, 107, 255, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(74, 107, 255, 0.2);
}

.online-badge i {
    font-size: 1rem;
}

.event-note {
    background: rgba(255, 107, 107, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-note i {
    color: #ff6b6b;
    font-size: 1.1rem;
}

.event-note small {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Events Section Header */
.events-section .section-header {
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.events-section .section-header h2 {
    font-size: 3.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.events-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b6b;
    border-radius: 2px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
}

.main-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #505965;
    margin-bottom: 25px;
}

.main-description .highlight {
    color: #4a6bff;
    font-weight: 600;
}

.mission-statement {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.7;
}

.keynote-speaker {
    background: linear-gradient(135deg, #4a6bff 0%, #ff6b6b 100%);
    padding: 3px;
    border-radius: 15px;
    margin-top: 40px;
}

.speaker-announcement {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.announcement-badge {
    display: inline-block;
    background: rgba(74, 107, 255, 0.1);
    color: #4a6bff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.speaker-announcement h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.speaker-announcement p {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 991.98px) {
    .events-section .section-header h2 {
        font-size: 2.8rem;
    }
    
    .main-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .events-section .section-header {
        margin-bottom: 50px;
    }
    
    .events-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .main-description {
        font-size: 1rem;
    }
    
    .mission-statement {
        font-size: 1rem;
    }
    
    .speaker-announcement h3 {
        font-size: 1.8rem;
    }
}

/* Information Tabs Section */
.info-tabs-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-tab-btn {
    background: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-tab-btn i {
    font-size: 1.2rem;
    color: #ff6b6b;
}

.info-tab-btn.active {
    background: #ff6b6b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.info-tab-btn.active i {
    color: white;
}

.info-tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-tab-pane {
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.info-tab-pane.active {
    display: block;
    opacity: 1;
    animation: fadeInUp 0.5s ease;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 30px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-list li i {
    font-size: 1.5rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-list li:hover i {
    transform: scale(1.1);
    background: #ff6b6b;
    color: white;
}

.info-list li h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-list li p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

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

@media (max-width: 991.98px) {
    .tabs-navigation {
        gap: 15px;
    }

    .info-tab-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .info-card {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .tabs-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .info-tab-btn {
        width: 100%;
        justify-content: center;
    }

    .info-list {
        gap: 20px;
    }

    .info-list li {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-list li i {
        margin-bottom: 10px;
    }
}

/* Partners Section */
.partners-section {
    position: relative;
    padding: 120px 0;
    background: url('../images/partners.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.partners-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.92) 0%, rgba(255, 107, 107, 0.88) 100%);
    backdrop-filter: blur(2px);
}

.partners-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.partners-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partners-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0 30px;
    background: linear-gradient(135deg, #fff 0%, #ffd1d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-text {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.goals-container, .benefits-container {
    margin-bottom: 40px;
}

.partners-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.goals-list, .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goals-list li, .benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.goals-list li:hover, .benefits-list li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.goals-list li i, .benefits-list li i {
    font-size: 1.5rem;
    margin-right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.goals-list li:hover i, .benefits-list li:hover i {
    background: #ff6b6b;
    transform: rotate(360deg);
}

.goals-list li span, .benefits-list li span {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-container {
    margin-top: 50px;
    text-align: center;
}

.partners-section .btn-primary {
    background: white;
    color: #ff6b6b;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.partners-section .btn-primary:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .partners-section {
        padding: 80px 0;
    }

    .partners-content {
        padding: 30px;
    }

    .partners-section h2 {
        font-size: 2.5rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .partners-section h2 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .goals-list li, .benefits-list li {
        padding: 15px;
    }

    .goals-list li span, .benefits-list li span {
        font-size: 1rem;
    }

    .partners-section .btn-primary {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

.inspiration-container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

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

.quote-mark {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.slogan {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.sub-slogan {
    font-size: 1.6rem;
    font-weight: 500;
    color: #ff6b6b;
    margin-bottom: 25px;
    font-style: italic;
}

.inspiration-container .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #ff6b6b, white);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.inspiration-container .year {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 991.98px) {
    .inspiration-container {
        margin-bottom: 40px;
        padding: 30px;
    }

    .slogan {
        font-size: 1.8rem;
    }

    .sub-slogan {
        font-size: 1.4rem;
    }

    .inspiration-container .year {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .inspiration-container {
        margin-bottom: 30px;
    }

    .slogan {
        font-size: 1.6rem;
    }

    .sub-slogan {
        font-size: 1.2rem;
    }

    .quote-mark {
        font-size: 2.5rem;
    }
}

.involvement-header {
    text-align: center;
    margin-bottom: 40px;
}

.involvement-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.header-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ff6b6b, #4a6bff);
    margin: 0 auto;
    border-radius: 2px;
}

.involvement-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.involvement-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.involvement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.involvement-card:hover .icon-wrapper {
    transform: rotate(10deg);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: white;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.highlight-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.highlight-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b6b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.highlight-link:hover {
    color: #ff8787;
}

.highlight-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 991.98px) {
    .involvement-header h2 {
        font-size: 2.2rem;
    }

    .involvement-card {
        padding: 20px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .icon-wrapper i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .involvement-header h2 {
        font-size: 2rem;
    }

    .involvement-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-wrapper {
        margin-bottom: 15px;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-form .form-control {
    padding: 12px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.1);
}

.contact-form .form-select {
    padding: 12px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background-color: white;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.1);
}

.contact-form .form-select option {
    padding: 10px;
    color: #333;
}

.contact-form .form-select option:disabled {
    color: #999;
}

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

.contact-form .btn-primary {
    background: linear-gradient(135deg, #4a6bff 0%, #ff6b6b 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(74, 107, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    z-index: 1;
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #4a6bff 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 107, 255, 0.3);
}

.contact-form .btn-primary:hover::before {
    opacity: 1;
}

.contact-form .btn-primary span {
    position: relative;
    z-index: 2;
    display: inline-block;
}

@media (max-width: 767.98px) {
    .contact-form .btn-primary {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info-card:hover i {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-info-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info-section {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-info-card i {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
}

/* Add no-style class for links */
.no-style {
    text-decoration: none;
    color: inherit;
}

.footer-bottom .no-style {
    color: #ff8282 !important;
} 