/* Global Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --gray: #95a5a6;
    --light-gray: #f5f5f5;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.announcement-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.announcement-bar i {
    margin-right: 5px;
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Header Styles */
.sticky-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.sticky-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-mark {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    margin: 0 15px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 25px 0;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active:after,
.nav-links a:hover:after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(1);
}

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

.header-cta {
    margin-left: 30px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--white);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.services-preview h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background: var(--light-gray);
    color: var(--secondary-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
}

/* About Page */
.about-content {
    padding: 80px 0;
    background: var(--white);
}

.about-content .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.about-text p {
    margin-bottom: 30px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.values {
    padding: 80px 0;
    background: var(--light-gray);
}

.values h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.values h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Services Page */
.services-details {
    padding: 80px 0;
    background: var(--white);
}

.service {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-text {
    flex: 1;
}

.service-text h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.service-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.service-text p {
    margin-bottom: 20px;
}

.service-text ul {
    margin-bottom: 30px;
}

.service-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.service-text ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Careers Page */
.career-intro {
    padding: 80px 0;
    background: var(--white);
}

.career-intro h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.career-intro h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.career-intro p {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.open-positions {
    padding: 80px 0;
    background: var(--light-gray);
}

.open-positions h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.open-positions h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.position-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.position-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.position-card p {
    margin-bottom: 10px;
}

.position-card .btn {
    margin-top: 20px;
    display: inline-block;
}

.how-to-apply {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.how-to-apply h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.how-to-apply h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.how-to-apply p {
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
    background: var(--white);
}

.contact-content .container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.info-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-form {
    flex: 1;
}

.contact-form h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.contact-form h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

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

.map {
    padding: 0 0 80px;
}

.map iframe {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: block;
}

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

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Social Links */
.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

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

/* Newsletter Form */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        transition: all 0.5s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-links li {
        margin: 0 0 15px 0;
    }
    
    .nav-links a {
        padding: 10px 0;
    }
    
    .nav-links a:after {
        bottom: 5px;
    }
    
    .header-cta {
        margin: 20px 0 0 0;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .announcement-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        margin-top: 8px;
    }
    
    .about-content .container,
    .contact-content .container {
        flex-direction: column;
    }
    
    .service {
        flex-direction: column;
    }
    
    .service:nth-child(even) {
        flex-direction: column;
    }
    
    .service-image,
    .service-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .values-grid,
    .benefits-grid,
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-mark {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Animation on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/*about.html*/
/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/*service career contact */
/* Apply Steps */
.apply-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.apply-step {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.apply-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.general-application {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

/* Emergency Support */
.emergency-support {
    padding: 80px 0;
    background: var(--light-gray);
}

.support-card {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.support-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.support-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.support-card p {
    margin-bottom: 15px;
}

/* Social Contact */
.social-contact {
    margin-top: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    text-align: center;
}

.social-contact h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Form enhancements */
.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Map section */
.map h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--secondary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/*privacy.html */
/* Privacy Policy Styles */
.privacy-content {
    padding: 80px 0;
    background: var(--white);
}

.privacy-intro {
    margin-bottom: 50px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.privacy-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.privacy-section h3 {
    color: var(--secondary-color);
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.privacy-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.privacy-section li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Responsive adjustments for privacy page */
@media (max-width: 768px) {
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-intro {
        padding: 20px;
    }
}

/*terms.html*/
/* Terms of Service Styles */
.terms-content {
    padding: 80px 0;
    background: var(--white);
}

.terms-intro {
    margin-bottom: 50px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.terms-section {
    margin-bottom: 50px;
}

.terms-section h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.terms-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.terms-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.terms-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.terms-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.terms-section li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Responsive adjustments for terms page */
@media (max-width: 768px) {
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-intro {
        padding: 20px;
    }
}

/* Back to top button for long pages */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Use Cases Page Styles */
.industries-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.industries-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.industry-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.industry-card h3 {
    padding: 20px 20px 10px;
    color: var(--secondary-color);
}

.industry-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.use-cases {
    padding: 80px 0;
    background: var(--white);
}

.use-cases h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.use-case-card {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.use-case-card:nth-child(even) {
    flex-direction: row-reverse;
}

.use-case-image {
    flex: 1;
}

.use-case-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.use-case-content {
    flex: 1;
}

.case-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.use-case-content h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.case-challenge, .case-solution {
    margin-bottom: 20px;
    line-height: 1.8;
}

.case-results {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
}

.case-results h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.case-results ul {
    list-style: none;
}

.case-results li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.case-results i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-style: normal;
    margin: 0;
}

/* Responsive adjustments for use cases */
@media (max-width: 992px) {
    .use-case-card {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .use-case-image, .use-case-content {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-content h3 {
        font-size: 1.5rem;
    }
}

/*new service file css added */
/* Services Page Specific Styles */

.services-overview {
    padding: 60px 0;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.services-intro h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.services-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
}

.category-filter {
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-filter.active, .category-filter:hover {
    background: #2c6fd1;
    color: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
    height: 200px;
    overflow: hidden;
}

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

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

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 20px;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    list-style-type: none;
    line-height: 1.5;
}

.service-features li:before {
    content: "•";
    color: #2c6fd1;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    top: 0;
}

.service-card-cta {
    margin-top: 15px;
    text-align: center;
}

/* Text alignment fixes */
.services-intro, .service-card-content {
    text-align: left;
}

.service-features li {
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .services-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-filter {
        width: 80%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .services-intro h2 {
        font-size: 1.8rem;
    }
}

/*Testing the service_old fieldset*/
 /* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Announcement Bar */
        .announcement-bar {
            background-color: #1a365d;
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .announcement-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .social-icons a {
            color: white;
            margin-left: 15px;
            text-decoration: none;
        }
        
        /* Header */
        .sticky-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .sticky-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            width: auto;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 15px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover, .nav-links a.active {
            color: #2563eb;
        }
        
        .btn {
            display: inline-block;
            background-color: #2563eb;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #1e40af;
        }
        
        .btn-primary {
            background-color: #2563eb;
        }
        
        .btn-large {
            padding: 12px 30px;
            font-size: 16px;
        }
        
        .mobile-menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Page Header */
        .page-header {
            /*background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');*/
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Services Overview */
        .services-overview {
            padding: 80px 0;
        }
        
        .services-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        .services-intro h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #1e293b;
        }
        
        .services-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .category-filter {
            padding: 10px 20px;
            background-color: #f1f5f9;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .category-filter:hover, .category-filter.active {
            background-color: #2563eb;
            color: white;
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-card-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-card-image img {
            transform: scale(1.05);
        }
        
        .service-card-content {
            padding: 25px;
        }
        
        .service-card-content h3 {
            margin-bottom: 15px;
            color: #1e293b;
        }
        
        .service-features {
            margin: 20px 0;
            padding-left: 20px;
        }
        
        .service-features li {
            margin-bottom: 8px;
            color: #64748b;
        }
        
        .service-cta {
            margin-top: 25px;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: #2563eb;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        
        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-section .btn {
            background-color: white;
            color: #2563eb;
        }
        
        .cta-section .btn:hover {
            background-color: #f1f5f9;
        }
        
        /* Footer */
        footer {
            background-color: #1e293b;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-section p, .footer-section a {
            color: #cbd5e1;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #334155;
            border-radius: 50%;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: #2563eb;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links, .header-cta {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .announcement-bar .container {
                flex-direction: column;
                gap: 10px;
            }
            
            .service-grid {
                grid-template-columns: 1fr;
            }
            
            .services-categories {
                flex-direction: column;
                align-items: center;
            }
        }

/*about.html number counting display -24-09-25*/
/* Stats Section Styles */
.stats-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #ffd700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number::after {
    content: "+";
    font-size: 2rem;
    color: #ffd700;
    margin-left: 5px;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-box {
        max-width: 100%;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

        /* Compact Stats Section */
        .compact-stats {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            padding: 50px 0;
            color: white;
            text-align: center;
            margin: 40px 0;
        }
        
        .compact-stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .compact-stat-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 25px 15px;
            text-align: center;
            flex: 1;
            min-width: 180px;
            max-width: 220px;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .compact-stat-box:hover {
            transform: translateY(-5px);
        }
        
        .compact-stat-icon {
            font-size: 30px;
            margin-bottom: 15px;
            color: #ffd700;
        }
        
        .compact-stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 5px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .compact-stat-number::after {
            content: "+";
            font-size: 1.5rem;
            color: #ffd700;
            margin-left: 3px;
        }
        
        .compact-stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        /* Content Section */
        .content-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }
        
        .content-section h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .content-section p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .compact-stats-container {
                flex-direction: column;
                align-items: center;
            }
            
            .compact-stat-box {
                max-width: 100%;
                width: 100%;
            }
            
            .nav-links {
                display: none; /* Hide on mobile for simplicity */
            }
            
            .content-section h1 {
                font-size: 2rem;
            }
        }


/* Service badges for trending/high-demand services */
.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.services-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
/******************contactus-send message colours************************ */
/* Form message styles */
.form-messages {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.form-messages.success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.form-messages.error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.form-messages .message {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-messages .error-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.form-messages .message i {
    font-size: 1.2em;
    margin-top: 2px;
}

/* Field error styles */
.field-error {
    border-color: #e74c3c !important;
    background-color: #fdf2f2;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Loading state for buttons */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Success state for form */
.form-success .form-group input,
.form-success .form-group textarea,
.form-success .form-group select {
    border-color: #28a745 !important;
    background-color: #f8fff9;
}

/******************Fix mobile menu issu*********************/
/* ===== MOBILE MENU FIXES ===== */
/* Reset mobile menu styles to work with JavaScript */
@media (max-width: 992px) {
    .main-nav {
        display: none !important; /* Hidden by default on mobile */
        position: fixed;
        top: 80px !important;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        display: flex !important; /* Show when active */
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: #f8f9fa;
        color: #007bff;
        padding-left: 15px;
    }
    
    .header-cta {
        margin: 20px 0 0 0;
        width: 100%;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }
    
    .header-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        cursor: pointer;
        z-index: 1001;
        background: none;
        border: none;
        color: #333;
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle:hover {
        background: #f8f9fa;
        border-radius: 4px;
    }
}

/* Desktop Styles */
@media (min-width: 993px) {
    .main-nav {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Sticky Header Fix */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sticky-header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}
