:root {
    /* Colors */
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --accent: #f43f5e;
    --background: #0a0a0a;
    --surface: #1a1a1a;
    --text: #ffffff;
    --text-secondary: #a3a3a3;
    --success: #10b981;
    --error: #ef4444;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s;
    --transition-normal: 0.5s;
    --transition-slow: 0.8s;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: #e8f9fd;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 140px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: black;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Layout */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

/* Main Navigation Styles */
.main-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}
.fas {
            color: #1a237e;
        }
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand/Logo Section */
.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    display: none;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #1a237e;
    background: rgba(26, 35, 126, 0.1);
}

.nav-link:hover i {
    transform: translateY(-2px);
}

.nav-link.active {
    color: #1a237e;
    background: rgba(26, 35, 126, 0.1);
}

/* Ensure consistent spacing with icons */
.nav-link span {
    padding-top: 2px; /* Slight adjustment for vertical alignment */
}

/* Dropdown arrow specific styling */
.dropdown .nav-link i.fa-chevron-down {
    font-size: 0.8rem;
    margin-left: 0.2rem;
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.dropdown-menu li a:hover {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

/* Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: #007bff;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.search-overlay.active {
    transform: translateY(0);
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo-text {
        display: block;
    }
    
    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links-wrapper {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-menu .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu .nav-link:last-child {
        border-bottom: none;
    }
}

/* Scroll Effect */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    padding: 100px 0; /* Adjust padding as needed */
    color: white; /* Text color */
    text-align: center; /* Center text */
}

.hero-content {
    max-width: 800px; /* Limit the width for better readability */
    margin: 0 auto; /* Center the content */
}

.hero-title {
    font-size: 48px; /* Increased font size for the hero title */
    margin-bottom: 20px; /* Space below title */
    font-weight: bold; /* Optional: make the title bold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optional: add a shadow for better readability */
    color: var(--surface);
}

.hero-subtitle {
    font-size: 24px; /* Adjust font size for subtitle */
    margin-bottom: 30px; /* Space below subtitle */
    color: var(--surface);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

/* Buttons */
.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: var(--primary);
    color: var(--text);
    border: none;
}

.secondary-btn {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text);
}

/* Work Section */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--surface);
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out-expo);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.work-card:hover .card-image img {
    transform: scale(1.1);
}

.work-card:hover .card-overlay {
    opacity: 1;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #00ff88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2rem;
    color: white;
}

.service-features {
    color: black;
}

.service-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(90deg, #007bff, #00ff88);
    border-radius: 30px;
    color: white;
    transition: all 0.3s ease;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.testimonials {
    background-color: #59ce8f;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.quote-icon {
    color: #4A90E2; /* Change to match your accent color */
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin-bottom: 15px;
}

.testimonial-rating {
    color: #ffd700;
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin-right: 5px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin: 0;
    color: white;
}

.author-info span {
    font-size: 14px;
    color: whitesmoke;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--surface);
    padding: 2rem;
    border-radius: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--text-secondary);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 1rem;
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Company Info */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.company-desc {
    color: #999;
    line-height: 1.6;
    font-size: 15px;
}

/* Social Links */
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #4A90E2; /* Change to match your accent color */
    transform: translateY(-3px);
}

/* Footer Links Groups */
.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links ul li a:hover {
    color: #4A90E2; /* Change to match your accent color */
    padding-left: 5px;
}

/* Contact Info */
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #999;
}

.footer-contact ul li i {
    color: #4A90E2; /* Change to match your accent color */
    font-size: 18px;
    margin-top: 3px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal p {
    color: #999;
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #4A90E2; /* Change to match your accent color */
}

/* Newsletter */
.footer-newsletter {
    max-width: 400px;
}

.newsletter-form label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 15px;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
}

.input-group input::placeholder {
    color: #999;
}

.input-group button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    background-color: #4A90E2; /* Change to match your accent color */
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background-color: #357abd; /* Darker shade of accent color */
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 60px;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    .legal-links {
        justify-content: center;
    }

    .footer-newsletter {
        width: 100%;
    }

    .hero-title {
        font-size: 36px; /* Smaller font size for mobile devices */
    }
}

/* About Section Styles */
.about-grid {
    display: grid;
    gap: 4rem;
    margin-top: 3rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color:#ff1e00;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color:black;
    margin-bottom: 3rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background:#e8f9fd;
    border-radius: 1rem;
    transition: transform 0.3s var(--ease-out-expo);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color:  #59ce8f;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color:black;
    font-size: 1.1rem;
}

/* Mission & Values */
.mission-values {
    margin-top: 4rem;
}

.mission-card {
    background:#e8f9fd;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.mission-card h3 {
    color: black;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #e8f9fd;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s var(--ease-out-expo);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2rem;
    color: #59ce8f;
    margin-bottom: 1rem;
}

.value-card h1 {
    margin-bottom: 0.5rem;
    color: black;
}

/* Team Section */
.team-section {
    margin-top: 4rem;
}

.team-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #d8f6fc;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out-expo);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s var(--ease-out-expo);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: bottom 0.3s var(--ease-out-expo);
}

.team-member:hover .member-social {
    bottom: 0;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social a {
    color: var(--text);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.member-social a:hover {
    color: var(--primary);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
    color: black;
}

.member-info h4 {
    margin-bottom: 0.5rem;
    color: black;
}

.member-info span {
    color: black;
    display: block;
    margin-bottom: 0.5rem;
}

.member-info p {
    color: black;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-grid {
        gap: 2rem;
    }

    .company-stats {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: 0.3s;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-items li {
    margin-bottom: 15px;
}

.mobile-menu-items a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
}

.mobile-menu-items i {
    width: 24px;
    color: #1a237e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-nav {
        display: none; /* Hide desktop navigation */
    }

    .menu-button {
        display: block; /* Show mobile menu button */
    }
}

/* When menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .header-nav {
        display: none;
    }
}

/* Optional: Add touch feedback for mobile devices */
@media (hover: none) {
    .mobile-link:active {
        color: #4A90E2; /* Change this to match your accent color */
        transform: scale(0.95);
    }
}

/* Optional: Add hover effect for rating stars */
.testimonial-rating i:hover {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

/* Optional: Add animation for quote icon */
.quote-icon i {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Image Slider Styles */
.showcase {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.swiper-container {
    position: relative;
    padding: 20px 0;
}

/* Main Slider */
.mainSwiper {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.mainSwiper .swiper-slide {
    height: 500px; /* Adjust based on your needs */
}

.slide-content {
    width: 100%;
    height: 100%;
}

.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slide-content:hover .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.slide-overlay p {
    margin-bottom: 15px;
}

.slide-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff1e00; /* Change to match your accent color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.slide-btn:hover {
    background-color: #59ce8f; /* Darker shade of accent color */
}

/* Thumbnails Slider */
.thumbSwiper {
    width: 100%;
    padding: 10px 0;
}

.thumbSwiper .swiper-slide {
    width: 25%;
    height: 100px;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

/* Navigation Buttons */
.slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: auto;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    color: #333;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
}

.swiper-pagination-bullet-active {
    background: #1a237e;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mainSwiper .swiper-slide {
        height: 300px;
    }

    .thumbSwiper .swiper-slide {
        height: 70px;
    }
}

/* Card Slider Section */
.card-slider-section {
    padding: 100px 0;
    background-color: #e8f9fd;
}

.card-slider-container {
    position: relative;
    padding: 20px 0;
    margin-top: 50px;
}

/* Card Styles */
.card {
    background: #e8f9fd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff1e00; /* Change to match your accent color */
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: black;
}

.card-content p {
    color: black;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: black;
    font-size: 14px;
}

.meta-item i {
    color: #4A90E2; /* Change to match your accent color */
}

.card-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff1e00; /* Change to match your accent color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
}

.card-btn:hover {
    background-color: #9e1908; /* Darker shade of accent color */
    transform: translateY(-2px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
    color: #333;
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #4A90E2; /* Change to match your accent color */
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-slider-section {
        padding: 60px 0;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 14px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
}

.modal-content {
    background-color: #1a1a1a;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 70%; /* Could be more or less, depending on screen size */
    border-radius: 10px;
    position: relative;
}
.modal .modal-content h3 {
    position: center;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.terms-and-conditions {
    padding: 80px 0;
    background-color: #0a0a0a; /* Light background for contrast */
}

.sections-container {
    max-width: 800px; /* Limit the width for better readability */
    margin: 0 auto; /* Center the content */
    padding: 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ff1e00;
}

h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: black;
}

p {
    line-height: 1.6;
    color: black;
}

.last-updated {
    font-style: italic;
    margin-bottom: 20px;
}

.article {
    padding: 40px 20px; /* Add padding for spacing */
}

.sectionss-container {
    max-width: 800px; /* Limit the width for better readability */
    margin: 0 auto; /* Center the content */
    text-align: center; /* Center text */
}

.article-title {
    font-size: 32px; /* Adjust font size for the title */
    margin: 20px 0; /* Space above and below the title */
}

.article-meta {
    font-size: 14px; /* Smaller font size for meta information */
    color: #888; /* Gray color for meta information */
}

.article-content {
    text-align: left; /* Align content to the left for better readability */
}

.article-image {
    border-radius: 10px; /* Optional: add rounded corners to the image */
    margin-bottom: 20px; /* Space below the image */
}

.news {
    padding: 80px 0; /* Add padding for spacing */
    background-color: #f8f9fa; /* Light background for contrast */
}

.section-header {
    text-align: center; /* Center the header */
    margin-bottom: 40px; /* Space below the header */
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between cards */
}

.news-card {
    background: white; /* Card background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    overflow: hidden; /* Hide overflow */
    transition: transform 0.3s; /* Smooth transition */
}

.news-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.news-image {
    width: 100%; /* Full width */
    height: auto; /* Maintain aspect ratio */
}

.news-title {
    font-size: 20px; /* Title font size */
    margin: 15px; /* Margin around title */
}

.news-date {
    font-size: 14px; /* Smaller font size for date */
    color: #888; /* Gray color for date */
    margin: 0 15px; /* Margin around date */
}

.news-description {
    padding: 0 15px 15px; /* Padding for description */
    color: #555; /* Darker text color */
}

.read-more-button {
    display: inline-block; /* Make it an inline block */
    padding: 10px 20px; /* Button padding */
    background-color: #ff1e00; /* Button color */
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    margin: 15px; /* Margin around button */
    transition: background-color 0.3s; /* Smooth transition */
}

.read-more-button:hover {
    background-color:#ff1e00; /* Darker shade on hover */
}

.loan-types {
    padding: 20px;
}

.loan-list p {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    margin: 10px 0; /* Space between paragraphs */
}

.loan-list i {
    color: #4A90E2; /* Change color of the check icon */
    margin-right: 10px; /* Space between icon and text */
}

.contact-details {
    color: black; /* Change text color to black */
}


/* Logo Styles */
.logo-image {
    max-width: 50px; /* Set a smaller maximum width for the logo */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure it behaves like a block element */
}
.highlight {
    color: #FFD700; /* Change this to your desired color */
    font-weight: bold; /* Optional: make it bold */
}
.cooperative {
    color: blue; /* Change this to your desired blue color */
    font-weight: bold; /* Optional: make it bold */
}
.multi-purpose {
    color: #ff1e00; /* Yellow gold color */
    font-weight: bold; /* Optional: make it bold */
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(90deg, #007bff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern List Style */
.modern-list {
    list-style: none;
    padding: 0;
}

.modern-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.modern-list li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* Pre-Header Styles */
.pre-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1a237e, #0d47a1);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    z-index: 1001;
}

.pre-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Announcements Ticker */
.announcements-ticker {
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    white-space: nowrap;
}

.ticker-content {
    overflow: hidden;
}

.ticker-items {
    display: flex;
    animation: ticker 20s linear infinite;
}

.ticker-items span {
    padding: 0 2rem;
    white-space: nowrap;
}

/* Quick Info */
.quick-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a {
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Main Header Styles */
.main-header {
    position: fixed;
    top: 40px; /* Height of pre-header */
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: top 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem; /* Increased padding top/bottom */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.logo-link {
    display: flex;
    align-items: center;
    gap: 1.2rem; /* Increased gap */
    text-decoration: none;
    padding: 0.5rem 0; /* Added padding */
}

.logo-image {
    height: 60px; /* Increased logo size */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px; /* Added gap between title and subtitle */
}

.logo-title {
    font-size: 1.5rem; /* Increased font size */
    font-weight: 700;
    color: #1a237e;
}

.logo-subtitle {
    font-size: 0.9rem; /* Increased font size */
    color: #666;
}

/* Navigation Styles */
.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0; /* Added padding */
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem; /* Increased padding */
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: #1a237e;
    background: rgba(26, 35, 126, 0.1);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 600px;
    padding: 1rem;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: #333;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(26, 35, 126, 0.1);
}

.dropdown-item i {
    font-size: 1.5rem;
    color: #1a237e;
}

.dropdown-item h4 {
    margin: 0;
    font-size: 1rem;
}

.dropdown-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #333;
}

.member-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: #1a237e;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-btn:hover {
    background: #0d47a1;
    transform: translateY(-2px);
}

/* Mobile Toggle - Moved to the right */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pre-header {
        display: none;
    }
    
    .main-header {
        top: 0;
    }
    
    body {
        padding-top: 100px; /* Adjusted for mobile */
    }
    
    .dropdown-content {
        min-width: 400px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
}

/* Animations */
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* When scrolled past pre-header */
.main-header.scrolled {
    top: 0;
}

/* Mobile Menu Button */
.menu-button {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    transition: 0.3s;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-items li {
    margin-bottom: 15px;
}

.mobile-menu-items a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
}

.mobile-menu-items i {
    width: 24px;
    color: #1a237e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-nav {
        display: none; /* Hide desktop navigation */
    }

    .menu-button {
        display: block; /* Show mobile menu button */
    }
}

/* When menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile Menu Dropdown Styles */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    color: #333;
    font-size: 18px;
}

.menu-item-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-dropdown.active {
    display: block;
    margin: 10px 0;
}

.mobile-dropdown li a {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-dropdown li a:hover {
    background-color: #eee;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item-content span {
    font-weight: 500;
}

.dropdown-item-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Icon styles */
.mobile-dropdown li a i {
    font-size: 20px;
    width: 24px;
    color: #1a237e;
}

/* Animation for dropdown */
.mobile-dropdown {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.mobile-dropdown.active {
    max-height: 1000px; /* Adjust based on content */
}

/* Slider Styles */
.swiper {
    width: 100%;
    height: 500px;
    margin: 20px 0;
}

.swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .swiper {
        height: 300px;
    }
}


/* ... existing code ... */

/* Modern Button Styles - Add this section to your style.css */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.button-primary {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
}

.button-secondary {
    background: white;
    color: #1a237e;
    border: 2px solid #1a237e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.button-secondary:hover {
    background: #1a237e;
    color: white;
    transform: translateY(-2px);
}

/* Update existing read-more-button styles */
.read-more-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
}

.read-more-button i {
    transition: transform 0.3s ease;
}

.read-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
}

.read-more-button:hover i {
    transform: translateX(4px);
}

/* Update existing view-all-button styles */
.view-all-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
    margin-top: 40px;
}

.view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
}

.view-all-button:hover i {
    transform: translateX(4px);
}

/* Additional Button Variations */
.button-outline {
    background: transparent;
    border: 2px solid #1a237e;
    color: #1a237e;
    padding: 10px 22px;
}

.button-outline:hover {
    background: #1a237e;
    color: white;
}

.button-rounded {
    border-radius: 50px;
}

.button-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a237e;
    color: white;
}

.button-icon:hover {
    transform: rotate(90deg);
}

/* Button Sizes */
.button-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.button-large {
    padding: 14px 32px;
    font-size: 1.125rem;
}

/* Special Effects */
.button-glow {
    animation: button-glow 2s ease-in-out infinite;
}

.button-ripple {
    position: relative;
    overflow: hidden;
}

.button-ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.button-ripple:active::after {
    transform: scale(2);
}

/* Animations */
@keyframes button-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(26, 35, 126, 0.2); }
    50% { box-shadow: 0 0 20px rgba(26, 35, 126, 0.4); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .button-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .view-all-button {
        padding: 12px 24px;
    }
}


/* Update your mobile menu styles in style.css */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    height: 50px;
}

.mobile-logo img {
    height: 100%;
    width: auto;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #eee;
    position: relative;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    width: 100%;
    gap: 0.75rem;
}

.mobile-nav-link .toggle-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

/* Hover styles for dropdowns */
.has-submenu:hover .mobile-submenu {
    display: block;
}

.has-submenu:hover .toggle-icon {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.mobile-submenu li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1rem 1rem 2.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-submenu li a:hover {
    background-color: #e9ecef;
}

.submenu-content {
    display: flex;
    flex-direction: column;
}

.submenu-content span {
    font-weight: 500;
    color: #1a237e;
}

.submenu-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0.25rem 0 0 0;
}

/* Icon styles */
.mobile-nav-link i,
.mobile-submenu li a i {
    width: 20px;
    text-align: center;
    color: #1a237e;
}

/* Animation for submenu items */
.mobile-submenu li {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.has-submenu:hover .mobile-submenu li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-submenu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-submenu li:nth-child(2) { transition-delay: 0.2s; }
.mobile-submenu li:nth-child(3) { transition-delay: 0.3s; }
.mobile-submenu li:nth-child(4) { transition-delay: 0.4s; }

/* Active states */
.mobile-nav-link.active {
    color: #1a237e;
    background-color: rgba(26, 35, 126, 0.1);
}

/* Touch-friendly area for mobile */
@media (max-width: 768px) {
    .mobile-nav-link,
    .mobile-submenu li a {
        padding: 15px;
    }
    
    .mobile-submenu li a {
        padding-left: 3rem;
    }
}
/* ... existing code ... */


        .mobile-nav-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 15px;
            text-decoration: none;
            color: #000000;
            width: 100%;
        }

        .mobile-submenu a {
            color: #000000;
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 10px 15px;
            gap: 10px;
        }

        .submenu-content {
            color: #000000;
        }

        .submenu-content p {
            color: #666666;
            font-size: 0.9em;
            margin-top: 2px;
        }

        .toggle-submenu {
            background: none;
            border: none;
            padding: 8px;
            color: #000000;
            cursor: pointer;
            margin-left: auto;
        }

        .mobile-nav-link i,
        .mobile-submenu i {
            color: #000000;
        }
    

