/* Base Styles & Variables */
:root {
    --primary-color: #ff033e;
    --primary-light: #f4758d;
    --primary-dark: #7b75e7;
    --secondary-color: #39ad4a;
    --accent-color: #4cbce8;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #4bb543;
    --warning-color: #f0ad4e;
    --danger-color: #d9534f;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #84fffb 100%);
    
    --font-primary: 'Poppins', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.08);
    --shadow-xl: 0 15px 30px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.1);
    
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --glass-blur: blur(10px);
    
    --neumorphism-bg: #f0f0f0;
    --neumorphism-shadow-light: 8px 8px 16px #d9d9d9;
    --neumorphism-shadow-dark: -8px -8px 16px #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #f5f7ff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.75rem;
    color: var(--dark-color);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 12px;
}

.neumorphism {
    background: var(--neumorphism-bg);
    box-shadow: var(--neumorphism-shadow-light), var(--neumorphism-shadow-dark);
    border-radius: 12px;
}

.neumorphism-inset {
    background: var(--neumorphism-bg);
    box-shadow: inset 3px 3px 6px #d9d9d9, 
                inset -3px -3px 6px #ffffff;
    border-radius: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
    transform: translateY(-3px);
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
    transform: translateY(-3px);
}

.btn-secondary:hover i {
    transform: translateX(3px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-color);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-circle:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-icon {
    width: 400px;
    height: 400px;
    animation: pulse 1.5s infinite;
}

.loader-icon img {
    width: 150%;
    height: 150%;
    object-fit: contain;
}

.loader-text {
    font-size: 1.2rem;
    color: var(--gray-color);
    font-weight: 500;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--light-gray);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    animation: loading 2s infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    
    
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.25) !important;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding: 0 20px;
}



.logo-icon {
    height: auto;
    transition: transform 0.3s ease;
    margin-right: 200px; 
    margin-right: -5px;
    z-index: 1001; 
    padding-right: 10px;
}

.logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-grow: 1;
    justify-content: center;
    padding-left: 20px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    color: rgb(0, 0, 0);
}

.navbar .nav-links a {
    color: #000 !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.nav-links a.active {
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100% !important;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.menu-line {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu .btn {
    width: 100%;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
}

.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: var(--gray-color);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 500;
}

/* Features Section */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: white;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.feature-card h3 {
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.feature-card p {
    text-align: center;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.feature-hover-content {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-hover-content {
    opacity: 1;
    transform: translateY(0);
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #f9faff 0%, #f0f3ff 100%);
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-decoration {
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(108, 99, 255, 0.2));
}

.step:last-child .step-decoration {
    display: none;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    transition: opacity 0.5s ease;
}

.testimonial-content {
    padding: 50px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    color: rgba(108, 99, 255, 0.1);
    font-size: 3rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.rating {
    color: #ffc107;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #f9faff 0%, #f0f3ff 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 20px 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    margin-bottom: 10px;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.9;
    z-index: 0;
}

.cta-content {
    padding: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cta-bonus i {
    color: var(--accent-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #ffffff 20%, #ffffff 30%, #ffffff 100%) !important;
    color: white;
    padding: 20px 0 10px;
    position: relative;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1) !important;
}


footer .logo {
    font-size: 1.15rem  !important ; 
    margin-bottom: 20px;
    display: inline-flex;
}

footer p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1px;
}

.footer-about .logo-icon {

    height: 40px !important; /* Increase from original 50px */
    width: auto !important;
    transition: transform 0.1s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 2px;
    align-items: start;
}

.footer-contact h3 {
    color: rgb(0, 0, 0);
    margin-bottom: 1.5px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    
}

.contact-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    flex-shrink: 0;
}

.contact-details p {
    color: rgba(0, 0, 0, 0.8) !important;
    margin: 1px;
    font-weight: 1 !important;
    line-height: 1;
    font-size: 14px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 25px;
}

.footer-logo {
    margin-top: 15px;
    height: 40px !important;
    width: auto !important;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand .social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}


.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(0, 0, 0, 0.8) !important;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-col a:hover {
    color: rgb(0, 0, 0) !important;
    padding-left: 5px;
}

footer p,
footer .footer-col h3,
footer .footer-col a {
    color: #000 !important;
}
footer .footer-col a:hover {
    color: var(--primary-color) !important;
}

.social-links {
    display: flex;
    gap: 22px !important;
    margin-top: -35px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(39, 39, 39, 0.1) !important;
    color: rgb(0, 0, 0) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: var(--primary-color) !important;
    color: rgb(0, 0, 0) !important;
    
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: rgb(0, 0, 0);
    background: whitesmoke !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgb(0, 0, 0);
}


/* Responsive Styles */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        align-items: center;
        order: -1;
    }
    
    .footer-contact h3 {
        text-align: center;
    }
    
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-brand .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-icon {
        align-self: center;
    }
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .testimonial-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .cta-content {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .btn-large {
        padding: 12px 24px;
    }
    
    .step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-decoration {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Researchers Page Styles */
.researchers-hero {
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
}

.researchers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.researcher-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.researcher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.researcher-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.researcher-card:hover::before {
    opacity: 1;
}

.researcher-card:hover h3,
.researcher-card:hover p {
    color: white;
}

.researcher-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(108, 99, 255, 0.2);
    transition: all 0.3s ease;
}

.researcher-card:hover .researcher-image {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.researcher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.researcher-info {
    flex: 1;
}

.researcher-info h3 {
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.researcher-info .expertise {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.researcher-card:hover .expertise {
    color: rgba(255, 255, 255, 0.9);
}

.researcher-hover-content {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.researcher-card:hover .researcher-hover-content {
    opacity: 1;
    transform: translateY(0);
}

/* Researcher Social Links Styles */
.researcher-social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-link-icon i {
    font-size: 16px;
}

/* Modal Content Adjustments for Social Links */
.modal-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Ensure the modal content doesn't overflow */
.modal-content {
    overflow-y: auto;
    max-height: 90vh;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-link-icon {
        width: 28px;
        height: 28px;
    }
    
    .social-link-icon i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .researcher-social-links {
        gap: 10px;
    }
    
    .social-link-icon {
        width: 24px;
        height: 24px;
    }
    
    .social-link-icon i {
        font-size: 12px;
    }
}

/* Modal Styles */
.researcher-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.researcher-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    color: #f9f9f9;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.modal-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 5px solid rgba(108, 99, 255, 0.2);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-title {
    flex: 1;
}

.modal-title h2 {
    margin-bottom: 10px;
    color: floralwhite
}

.modal-divider {
    height: 1px;
    background: rgba(108, 99, 255, 0.2);
    margin: 20px 0;
}

.modal-title .expertise {
    color: #ffffff; /* Change expertise text color */
}

.modal-section p, 
.modal-section ul li {
    color: #fbfbfb; /* Change body text color */
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.modal-section ul {
    list-style-type: none;
}

.modal-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.modal-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}



/* About Section Styles */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotate(15deg);
}

/* Research Areas Styles */
.bg-light {
    background: linear-gradient(135deg, #f9faff 0%, #f0f3ff 100%);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.research-card {
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.research-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.research-card:hover .research-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

/* Projects Slider Styles */
.projects-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.project-track {
    display: flex;
    transition: transform 0.5s ease;
}

.project-slide {
    min-width: 100%;
    padding: 0 15px;
}

.project-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Publications Styles */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.publication-card {
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.publication-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.publication-authors {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.publication-abstract {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.publication-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.publication-actions .btn {
    flex: 1;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.publication-card h3 {
    margin-right: 80px; /* Create space for badge on the right */
    word-wrap: break-word; /* Ensure long titles wrap properly */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-slide {
        min-width: 100%;
    }
    
    .research-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .about-grid,
    .research-grid,
    .publications-grid {
        grid-template-columns: 1fr;
    }
    
    .project-slide {
        min-width: 100%;
    }
    
    .publication-actions {
        flex-direction: column;
    }
}

/* Keyframe Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes loading {
    0% {
        width: 0;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile responsive logo */
@media (max-width: 768px) {
    .logo-icon {
        height: 40px; /* Adjust this value as needed */
        width: auto;
    }
    
    .navbar .container {
        padding: 0 15px; /* Add some padding for better spacing */
    }
}

/* For very small screens */
@media (max-width: 576px) {
    .logo-icon {
        height: 35px; /* Even smaller for very small screens */
    }
}

/* Add to your existing CSS */
.social-link-icon .fa-graduation-cap,
.social-link-icon .fa-globe {
    font-size: 16px;
}

/* For responsive adjustments */
@media (max-width: 768px) {
    .social-link-icon .fa-graduation-cap,
    .social-link-icon .fa-globe {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .social-link-icon .fa-graduation-cap,
    .social-link-icon .fa-globe {
        font-size: 12px;
    }
}

/* Past Researchers Section */
.past-researchers {
    background: linear-gradient(135deg, #f9faff 0%, #f0f3ff 100%);
}

.past-researchers .researcher-card {
    opacity: 0.85;
    transition: all 0.4s ease;
}

.past-researchers .researcher-card:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.past-researchers .researcher-image {
    border: 3px solid rgba(108, 99, 255, 0.1);
}

.past-researchers .researcher-card:hover .researcher-image {
    border-color: rgba(108, 99, 255, 0.3);
}