/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ef348d;
    --secondary: #ba1991;
    --tertiary: #384f9f;
    --accent: #42b1df;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary);
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 8px;
    margin-right: 10px;
}

.logo-text {
    color: var(--tertiary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.animated-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--tertiary);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 52, 141, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--tertiary);
    border: 2px solid var(--tertiary);
}

.btn-secondary:hover {
    background-color: var(--tertiary);
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    position: relative;
    height: 400px;

}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-illustration {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration i {
    font-size: 15rem;
    color: var(--accent);
    opacity: 0.7;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--tertiary), #2a3c8a);
    padding: 60px 0;
    color: white;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Events Preview */
.events-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.event-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.event-date {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 1.2rem;
    font-weight: 600;
}

.event-content {
    padding: 20px;
    flex: 1;
}

.event-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.event-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.event-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.event-link:hover {
    color: var(--secondary);
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(239, 52, 141, 0.1), rgba(66, 177, 223, 0.1));
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* About Content */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin: 30px 0 15px;
    color: var(--tertiary);
}

.about-text h2:first-child {
    margin-top: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(239, 52, 141, 0.05);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--dark);
}

.about-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-illustration {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-illustration i {
    font-size: 15rem;
    color: var(--primary);
    opacity: 0.7;
}

/* Institutions Section */
.institutions-section {
    background-color: #f8f9fa;
}

.institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.institution {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--tertiary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.institution:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

/* Footer */
/* Footer with Gradient */
footer {
    background: linear-gradient(135deg, #42b1df, #384f9f, #ba1991, #ef348d);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Optional: Add subtle animation to gradient */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(66, 177, 223, 0.9), 
        rgba(56, 79, 159, 0.9), 
        rgba(186, 25, 145, 0.9), 
        rgba(239, 52, 141, 0.9));
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-section ul li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: var(--transition);
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.footer-section i {
    margin-right: 10px;
    color: white;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: white;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    border-radius: 5px;
    background-color: white;
    color: var(--primary);
    font-weight: 600;
    border: none;
}

.newsletter-form button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, 
        rgba(66, 177, 223, 0.1), 
        rgba(56, 79, 159, 0.1), 
        rgba(186, 25, 145, 0.1), 
        rgba(239, 52, 141, 0.1));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #42b1df, #384f9f, #ba1991, #ef348d);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ef348d, #ba1991, #384f9f, #42b1df);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: linear-gradient(to bottom, #42b1df, #384f9f, #ba1991, #ef348d) rgba(66, 177, 223, 0.1);
}

/* For Firefox, we need to use a different approach */
html {
    scrollbar-width: thin;
}

/* Optional: Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Responsive Adjustments for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-section h3::after {
        width: 40px;
    }
}

/* Add subtle animation to footer gradient */
@keyfooter {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

footer {
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Enhanced scrollbar animation */
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #42b1df, #384f9f, #ba1991, #ef348d);
    background-size: 400% 400%;
    animation: scrollbarGradient 10s ease infinite;
}

@keyframes scrollbarGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* End footer styles */

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container,
    .about-content {
        flex-direction: column;
    }
    
    .hero-image,
    .about-image {
        height: 300px;
        width: 100%;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    
    .animated-title {
        font-size: 2.8rem;
    }
    
    .hero-illustration i,
    .about-illustration i {
        font-size: 12rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .animated-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 130px 0 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats .container {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Additional CSS for new pages */

/* Auth Buttons */
.auth-buttons {
    margin-left: 20px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Updated Institutions Grid */
.institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.institution {
    background-color: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.institution:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.institution:hover i {
    color: white !important;
}

.institution i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.institution h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--tertiary);
}

.institution:hover h3 {
    color: white;
}

.institution p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0;
}

.institution:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Activities Timeline */
.activities-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.activities-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-date {
    min-width: 100px;
    font-weight: 600;
    color: var(--tertiary);
    padding-right: 20px;
    text-align: right;
}

.timeline-content {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-left: 30px;
    flex: 1;
    border-left: 4px solid var(--primary);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 30px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-subtitle {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background-color: rgba(239, 52, 141, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Courses Section */
.courses-section {
    background-color: #f8f9fa;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.course-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.course-header h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-right: 15px;
}

.course-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-badge.free {
    background-color: rgba(66, 177, 223, 0.2);
    color: var(--accent);
}

.course-badge.paid {
    background-color: rgba(56, 79, 159, 0.2);
    color: var(--tertiary);
}

.course-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.course-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray);
}

.course-details i {
    margin-right: 5px;
}

/* Projects Showcase */
.projects-showcase {
    margin-top: 40px;
}

.project-card.featured {
    display: flex;
    background: linear-gradient(135deg, rgba(56, 79, 159, 0.05), rgba(66, 177, 223, 0.05));
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    flex: 0 0 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.project-image i {
    font-size: 8rem;
    color: white;
    opacity: 0.9;
}

.project-content {
    flex: 1;
    padding: 30px;
}

.project-status {
    display: inline-block;
    background-color: rgba(66, 177, 223, 0.2);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.project-skills span {
    background-color: rgba(239, 52, 141, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.project-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--tertiary);
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(239, 52, 141, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon i {
    font-size: 1.2rem;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-text p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    color: white;
}

.social-link.facebook:hover {
    background-color: #3b5998;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-link.linkedin:hover {
    background-color: #0077b5;
}

.social-link.twitter:hover {
    background-color: #1da1f2;
}

.social-link.youtube:hover {
    background-color: #ff0000;
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(239, 52, 141, 0.1);
}

.btn-full {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(239, 52, 141, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-card.featured {
        flex-direction: column;
    }
    
    .project-image {
        flex: 0 0 200px;
    }
    
    .timeline-date {
        min-width: 80px;
        font-size: 0.9rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 5px;
    }
}

@media (max-width: 576px) {
    .activities-timeline::before {
        left: 20px;
    }
    
    .timeline-content {
        margin-left: 25px;
    }
    
    .timeline-content::before {
        left: -32px;
    }
}

/* Managers Section Styles */
.managers-section {
    background-color: #f8f9fa;
}

.managers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.manager-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.manager-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.manager-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.manager-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.manager-role-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 140px;
    text-align: center;
}

.manager-role-badge.president {
    background: linear-gradient(135deg, #ef348d, #ba1991);
}

.manager-role-badge.vice-president {
    background: linear-gradient(135deg, #384f9f, #42b1df);
}

.manager-role-badge.secretary {
    background: linear-gradient(135deg, #42b1df, #384f9f);
}

.manager-role-badge.media {
    background: linear-gradient(135deg, #ba1991, #ef348d);
}

.manager-role-badge.project {
    background: linear-gradient(135deg, #384f9f, #ef348d);
}

.manager-role-badge.treasurer {
    background: linear-gradient(135deg, #42b1df, #ba1991);
}

.manager-role-badge.research {
    background: linear-gradient(135deg, #ef348d, #42b1df);
}

.manager-info {
    padding: 40px 25px 25px;
    text-align: center;
}

.manager-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.manager-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.manager-bio {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.manager-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(239, 52, 141, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    background-color: #f8f9fa;
    color:  #2a3c8a;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color:  #2a3c8a;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #ef348d, #ba1991);
    color: white;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--tertiary);
}

/* Responsive Adjustments for Managers */
@media (max-width: 992px) {
    .managers-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .managers-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .cta-content h2 {
        color:  #2a3c8a;
        font-size: 2rem;
    }
    
    .cta-content p {
        color:  #2a3c8a;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .managers-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Animation for manager cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.manager-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.manager-card:nth-child(1) { animation-delay: 0.1s; }
.manager-card:nth-child(2) { animation-delay: 0.2s; }
.manager-card:nth-child(3) { animation-delay: 0.3s; }
.manager-card:nth-child(4) { animation-delay: 0.4s; }
.manager-card:nth-child(5) { animation-delay: 0.5s; }
.manager-card:nth-child(6) { animation-delay: 0.6s; }
.manager-card:nth-child(7) { animation-delay: 0.7s; }

/* New Index Page Styles */

/* About Preview Section */
.about-preview {
    background-color: #f8f9fa;
}

.about-preview-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-preview-text {
    flex: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature p {
    color: var(--gray);
    font-size: 0.95rem;
}

.about-preview-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.preview-illustration {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-illustration i {
    font-size: 15rem;
    color: var(--accent);
    opacity: 0.8;
}

/* Events Grid */
.events-section {
    background-color: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.event-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.event-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.event-date {
    color: var(--gray);
}

.event-date i {
    margin-right: 5px;
}

.event-type {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-type.online {
    background-color: rgba(66, 177, 223, 0.1);
    color: var(--accent);
}

.event-type.offline {
    background-color: rgba(56, 79, 159, 0.1);
    color: var(--tertiary);
}

.event-type.hackathon {
    background-color: rgba(239, 52, 141, 0.1);
    color: var(--primary);
}

.event-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
    flex: 1;
}

.event-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.event-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
}

.event-link:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Courses Preview */
.courses-preview {
    background-color: #f8f9fa;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.course-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.course-badge.free {
    background-color: rgba(66, 177, 223, 0.2);
    color: var(--accent);
}

.course-badge.paid {
    background-color: rgba(56, 79, 159, 0.2);
    color: var(--tertiary);
}

.course-icon {
    font-size: 3.5rem;
    margin: 20px 0;
    color: var(--primary);
}

.course-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.course-card p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
    flex: 1;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--gray);
}

.course-meta i {
    margin-right: 5px;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Featured Project */
.featured-project {
    background: linear-gradient(135deg, rgba(56, 79, 159, 0.05), rgba(66, 177, 223, 0.05));
}

.project-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.project-text {
    flex: 1;
}

.project-text h3 {
    font-size: 2rem;
    margin: 15px 0 20px;
    color: var(--tertiary);
}

.project-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-item i {
    font-size: 1.5rem;
}

.highlight-item span {
    font-weight: 500;
    color: var(--dark);
}

.project-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.project-illustration {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-illustration i {
    font-size: 15rem;
    color: var(--primary);
    opacity: 0.8;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-style: italic;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    left: -10px;
    top: -20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Home CTA */
.cta-home {
    background: linear-gradient(135deg, var(--tertiary), #2a3c8a);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color:  #2a3c8a;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color:  #2a3c8a;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--tertiary);
}

/* Partners */
.partners {
    background-color: #f8f9fa;
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    transition: var(--transition);
}

.partner-logo i {
    font-size: 3rem;
    color: var(--tertiary);
    transition: var(--transition);
}

.partner-logo span {
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-10px);
}

.partner-logo:hover i {
    color: var(--primary);
}

.partner-logo:hover span {
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-preview-content,
    .project-content {
        flex-direction: column;
    }
    
    .about-preview-image,
    .project-image {
        width: 100%;
        height: 300px;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .project-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .events-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .partner-logo {
        width: calc(50% - 20px);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: white;
}

.faq-question:hover {
    background-color: rgba(239, 52, 141, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
    font-weight: 600;
    transition: var(--transition);
}

.faq-item.active .faq-question h3 {
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background-color: white;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px; /* Large enough for most answers */
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Animation for FAQ items */
@keyframes fadeInFAQ {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInFAQ 0.5s ease forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* Contact Form Enhancements */
.contact-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(239, 52, 141, 0.1);
    background-color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Contact Info Enhancements */
.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon i {
    font-size: 1.2rem;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-text p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.social-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-contact h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
}

.social-link.facebook:hover {
    background-color: #3b5998;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-link.linkedin:hover {
    background-color: #0077b5;
}

.social-link.twitter:hover {
    background-color: #1da1f2;
}

.social-link.youtube:hover {
    background-color: #ff0000;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 16px 18px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* WhatsApp Styles */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    color: white;
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

.whatsapp-direct {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(37, 211, 102, 0.1);
    border-radius: 10px;
    border-left: 4px solid #25D366;
}

.whatsapp-direct h3 {
    color: #128C7E;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.whatsapp-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.contact-item .fa-whatsapp {
    color: #25D366 !important;
}

/* Form Description */
.form-description {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.form-notice {
    background-color: rgba(37, 211, 102, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-left: 4px solid #25D366;
}

.form-notice i {
    color: #25D366;
    font-size: 1.2rem;
    margin-top: 2px;
}

.form-notice p {
    margin: 0;
    color: #128C7E;
    font-size: 0.95rem;
}

/* WhatsApp floating button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Updated footer WhatsApp info */
.footer-section .fa-whatsapp {
    color: #25D366 !important;
}

/* WhatsApp button in form */
.btn-primary .fa-whatsapp {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Phone input styling */
#phone {
    font-family: 'Poppins', sans-serif;
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-direct {
        text-align: center;
    }
    
    .btn-whatsapp {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .floating-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Enhanced Scrollbar Styling */
/* Vertical Scrollbar */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(
        to bottom,
        rgba(239, 52, 141, 0.05) 0%,
        rgba(186, 25, 145, 0.05) 33%,
        rgba(56, 79, 159, 0.05) 66%,
        rgba(66, 177, 223, 0.05) 100%
    );
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        to bottom,
        #ef348d 0%,
        #ba1991 33%,
        #384f9f 66%,
        #42b1df 100%
    );
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        to bottom,
        #42b1df 0%,
        #384f9f 33%,
        #ba1991 66%,
        #ef348d 100%
    );
    border: 3px solid white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(
        to bottom,
        #ef348d 33%,
        #ba1991 66%,
        #384f9f 100%,
        #42b1df 133%
    );
}

/* Horizontal Scrollbar (if needed) */
::-webkit-scrollbar:horizontal {
    height: 14px;
}

::-webkit-scrollbar-track:horizontal {
    background: linear-gradient(
        to right,
        rgba(239, 52, 141, 0.05) 0%,
        rgba(186, 25, 145, 0.05) 33%,
        rgba(56, 79, 159, 0.05) 66%,
        rgba(66, 177, 223, 0.05) 100%
    );
}

::-webkit-scrollbar-thumb:horizontal {
    background: linear-gradient(
        to right,
        #ef348d 0%,
        #ba1991 33%,
        #384f9f 66%,
        #42b1df 100%
    );
}

::-webkit-scrollbar-thumb:horizontal:hover {
    background: linear-gradient(
        to right,
        #42b1df 0%,
        #384f9f 33%,
        #ba1991 66%,
        #ef348d 100%
    );
}

/* Scrollbar Corner */
::-webkit-scrollbar-corner {
    background: linear-gradient(
        to bottom right,
        rgba(239, 52, 141, 0.1),
        rgba(66, 177, 223, 0.1)
    );
    border-radius: 0 0 10px 0;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #ef348d #f0f0f0;
}

/* For Firefox, we need to create a custom scrollbar with gradient */
/* Note: Firefox doesn't support gradient scrollbars natively, so we use a solid color */
html {
    scrollbar-color: #ef348d rgba(239, 52, 141, 0.1);
}

/* Optional: Add animated gradient scrollbar for WebKit browsers */
@keyframes scrollbarGradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Animated scrollbar for WebKit browsers */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(
            to bottom,
            #ef348d,
            #ba1991,
            #384f9f,
            #42b1df,
            #384f9f,
            #ba1991,
            #ef348d
        );
        background-size: 100% 400%;
        animation: scrollbarGradient 8s linear infinite;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        animation-duration: 4s;
    }
}

/* Alternative: Simple gradient without animation (more stable) */
/* Uncomment this if you prefer non-animated gradient */
/*
::-webkit-scrollbar-thumb {
    background: linear-gradient(
        to bottom,
        #ef348d 0%,
        #ba1991 25%,
        #384f9f 50%,
        #42b1df 75%,
        #384f9f 100%
    );
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        to bottom,
        #42b1df 0%,
        #384f9f 25%,
        #ba1991 50%,
        #ef348d 75%,
        #ba1991 100%
    );
}
*/

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        to right,
        #ef348d,
        #ba1991,
        #384f9f,
        #42b1df
    );
    transform-origin: 0%;
    z-index: 9999;
    display: none; /* Hidden by default, enable with JavaScript if desired */
}

/* Responsive scrollbar */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
        border: 2px solid rgba(255, 255, 255, 0.8);
    }
}

@media (max-width: 480px) {
    ::-webkit-scrollbar {
        width: 8px;
    }
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for specific elements if needed */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #ef348d rgba(239, 52, 141, 0.1);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(239, 52, 141, 0.05);
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(
        to bottom,
        #ef348d,
        #ba1991,
        #384f9f,
        #42b1df
    );
    border-radius: 4px;
}