* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4f46e5;        /* Vibrant indigo */
    --primary-dark: #4338ca;
    --secondary: #6366f1;
    --accent: #818cf8;
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --text-light: #1e293b;
    --text-lighter: #64748b;
    --text-dark: #0f172a;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(79, 70, 229, 0.1);
    --shadow-hover: 0 20px 40px rgba(79, 70, 229, 0.15);
}
body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.logo h1 i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.logo p {
    font-size: 0.9rem;
    color: var(--text-lighter);
}
.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-lighter);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    color: var(--text-light);
    text-align: center;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    color: var(--text-lighter);
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    color: var(--text-lighter);
    z-index: 1;
}

.search-box input {
    flex: 1;
    padding: 1.2rem 1.2rem 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: var(--text-light);
}

.search-box input::placeholder {
    color: var(--text-lighter);
}

.search-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--bg-dark);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-lighter);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: block; /* Important for anchor tags */
    text-decoration: none;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    color: var(--accent);
}

.category-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.category-card p {
    color: var(--text-lighter);
    margin-bottom: 1rem;
}

.category-hover {
    color: var(--accent);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.category-card:hover .category-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.service-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.specialty {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-lighter);
}

.contact-info i {
    color: var(--primary);
    width: 20px;
}

/* Footer */
.footer {
    background: #0f1420;
    color: var(--text-light);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-section h3 i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.footer-section p {
    color: var(--text-lighter);
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: var(--text-lighter);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-lighter);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .search-input-wrapper {
        margin-bottom: 0.5rem;
    }
    
    .search-box input {
        border-radius: 15px;
    }
    
    .search-btn {
        border-radius: 15px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Styles for Service Cards */
.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header i {
    color: var(--primary);
}

.no-services {
    text-align: center;
    padding: 3rem;
    color: var(--text-lighter);
    grid-column: 1 / -1;
}

.no-services i {
    margin-bottom: 1rem;
    color: var(--primary);
}

.no-services h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}
/* Category Cards as Links */
.category-grid a {
    text-decoration: none;
    color: inherit;
}

.category-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    color: var(--accent);
}

.category-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.category-card p {
    color: var(--text-lighter);
    margin-bottom: 1rem;
}

.category-hover {
    color: var(--accent);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.category-card:hover .category-hover {
    opacity: 1;
    transform: translateY(0);
}
/* About Us Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.feature-card.animated {
    opacity: 1;
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-lighter);
    line-height: 1.6;
}

/* Floating Cards Animation */
.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    width: 300px;
    height: 300px;
    position: relative;
}

.floating-card {
    position: relative;
    margin: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.floating-card.animated {
    opacity: 1;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-light);
}

.card-1, .card-2, .card-3, .card-4 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px); /* Reduced from -10px */
    }
}
.card-2 { animation-delay: 0.5s; }
.card-3 { animation-delay: 1s; }
.card-4 { animation-delay: 1.5s; }
/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.stat-card.animated {
    opacity: 1;
    transform: scale(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-lighter);
    font-weight: 600;
}

/* Animation Classes */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fadeInLeft { animation: fadeInLeft 0.8s ease-out; }
.fadeInRight { animation: fadeInRight 0.8s ease-out; }
.zoomIn { animation: zoomIn 0.8s ease-out; }

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-visual {
        height: 300px;
    }
    
    .floating-cards {
        transform: scale(0.8);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
/* Emergency Services Section */
.emergency-services {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.emergency-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.emergency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.emergency-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ef4444;
}

.emergency-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.emergency-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
}

.emergency-card p {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

/* Popular Services Section */
.popular-services {
    padding: 80px 0;
    background: var(--bg-dark);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.popular-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.popular-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.popular-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.popular-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.popular-card p {
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.popular-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.popular-stats i {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .popular-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .emergency-grid {
        grid-template-columns: 1fr;
    }
}
/* Business Registration Section */
.business-registration {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.benefit-item h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-lighter);
    margin: 0;
}

.business-cta {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 300px;
}

.cta-card i {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.cta-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-lighter);
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-card small {
    color: var(--text-lighter);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .business-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-card {
        max-width: 100%;
    }
}
/* FIXED Category Dropdown Styles */
.category-dropdown-container {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
    position: relative;
}

.dropdown-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-lighter);
    transition: transform 0.3s ease;
}

.category-dropdown-container.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

/* THIS IS THE KEY FIX - Use container active class */
.category-dropdown-container.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: var(--bg-card-hover);
    border-left-color: var(--primary);
    padding-left: 2rem;
}

.dropdown-item i {
    width: 20px;
    color: var(--primary);
}

/* Ensure dropdown doesn't break grid */
.category-grid {
    position: relative;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: var(--bg-card-hover);
    border-left-color: var(--primary);
    padding-left: 2rem;
}

.dropdown-item i {
    width: 20px;
    color: var(--primary);
}

/* Ensure dropdown doesn't break grid */
.category-grid {
    position: relative;
}
/* Tech Icons Styling */
.tech-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.tech-icon {
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-lighter);
}

.tech-icon:hover {
    transform: scale(1.2);
    color: var(--primary);
}

/* Specific icon colors */
.tech-icon .fa-html5 { color: #e34f26; }
.tech-icon .fa-css3-alt { color: #1572b6; }
.tech-icon .fa-js-square { color: #f7df1e; }
.tech-icon .fa-font-awesome { color: #528dd7; }
.tech-icon .fa-font { color: var(--primary); }

.tech-icon:hover .fa-html5,
.tech-icon:hover .fa-css3-alt,
.tech-icon:hover .fa-js-square,
.tech-icon:hover .fa-font-awesome,
.tech-icon:hover .fa-font {
    filter: brightness(1.2);
}

/* Infinity and Heart icons in stats */
.dev-stat .fa-infinity,
.dev-stat .fa-heart {
    color: var(--accent);
    font-size: 1.8rem;
}
/* Developer Section */
.developer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.developer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.developer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.dev-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.dev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
}

.dev-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.dev-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.dev-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.dev-bio {
    color: var(--text-lighter);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.dev-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.dev-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
}

.dev-stat .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.dev-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

.tech-stack {
    margin-bottom: 2rem;
}

.tech-stack h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.tech-icon {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tech-icon:hover {
    transform: scale(1.2);
}

.dev-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.dev-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dev-btn.primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
}

.dev-btn.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary);
}

.dev-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Developer Features */
.dev-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.feature.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-lighter);
    line-height: 1.5;
}

/* Secret Message */
.secret-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.secret-message.active {
    display: flex;
}

.secret-content {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--primary);
}

.secret-content i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.secret-content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.secret-content p {
    color: var(--text-lighter);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.secret-content button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secret-content button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .developer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dev-stats {
        grid-template-columns: 1fr;
    }
    
    .dev-cta {
        flex-direction: column;
    }
    
    .secret-content {
        margin: 2rem;
        padding: 2rem;
    }
}
/* About Mhow Section - New Structure */
.about-mhow {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--white) 100%);
}

.about-mhow-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

/* Image Section */
.mhow-visual {
    position: relative;
}

.mhow-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.mhow-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mhow-img:hover {
    transform: scale(1.02);
}

/* Content Section */
.mhow-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mhow-description {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.mhow-description p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Quick Facts */
.quick-facts-box {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.quick-facts-box h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.fact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card-hover);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fact:hover {
    transform: translateY(-3px);
    background: var(--primary);
    color: var(--white);
}

.fact:hover i,
.fact:hover strong,
.fact:hover span {
    color: var(--white);
}

.fact i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.fact div {
    display: flex;
    flex-direction: column;
}

.fact strong {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.fact span {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

/* Features */
.mhow-features {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.mhow-features h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: var(--bg-card-hover);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: var(--white);
}

.feature:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.feature i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature span {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.feature:hover span {
    color: var(--white);
}

/* Responsive */
@media (max-width: 968px) {
    .about-mhow-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mhow-img {
        height: 300px;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .mhow-content {
        gap: 2rem;
    }
    
    .mhow-description,
    .quick-facts-box,
    .mhow-features {
        padding: 1.5rem;
    }
}
/* The side navigation menu - STICK TO LEFT EDGE */
.sidebar {
  margin: 0;
  padding: 0;
  width: 280px;
  background-color: var(--bg-card);
  position: fixed;
  height: 100vh;
  overflow: auto;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
}

/* Sidebar header */
.sidebar-header {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
  margin-top: 80px; /* Account for header height */
}

.sidebar-header h3 {
  margin: 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Menu categories */
.menu-category {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.menu-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-light);
  font-weight: 600;
}

.menu-header:hover {
  background: var(--bg-card-hover);
  color: var(--primary);
}

.menu-header i:first-child {
  width: 20px;
  text-align: center;
}

.menu-header i:last-child {
  margin-left: auto;
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.menu-header.active i:last-child {
  transform: rotate(180deg);
}

.menu-header.active {
  background: var(--primary);
  color: var(--white);
}

/* Sub-menu */
.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-card-hover);
}

.sub-menu.active {
  max-height: 500px;
}

.sub-item {
  display: block;
  padding: 0.8rem 1.5rem 0.8rem 3.5rem;
  color: var(--text-lighter);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  font-size: 0.9rem;
}

.sub-item:hover {
  background: var(--bg-card);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 4rem;
}

/* Page content */
.content {
  margin-left: 280px;
  padding: 100px 3rem 2rem 3rem;
  min-height: 100vh;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 90px;
  left: 20px;
  z-index: 1001;
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  gap: 0.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}

/* Overlay for mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

/* RESPONSIVE - Mobile */
@media screen and (max-width: 1024px) {
  .sidebar {
    left: -100%;
    transition: left 0.3s ease;
    width: 300px;
  }
  
  .sidebar.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .sidebar-overlay.active {
    display: block;
  }
  
  .content {
    margin-left: 0;
    padding: 100px 1rem 2rem 1rem;
  }
}

@media screen and (max-width: 480px) {
  .sidebar {
    width: 100%;
  }
}
/* Improved Dropdown Styles */
.category-dropdown-container {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
    position: relative;
}

.dropdown-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-lighter);
    transition: transform 0.3s ease;
}

.dropdown-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

/* Show dropdown when active */
.category-dropdown-container.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: var(--bg-card-hover);
    border-left-color: var(--primary);
    padding-left: 2rem;
}

.dropdown-item i {
    width: 20px;
    color: var(--primary);
}

/* The side navigation menu - STICK TO LEFT EDGE */
.sidebar {
  margin: 0;
  padding: 0;
  width: 280px;
  background-color: var(--bg-card);
  position: fixed;
  height: 100vh;
  overflow: auto;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.sidebar.active {
  transform: translateX(0);
}

/* Sidebar header */
.sidebar-header {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
  margin-top: 80px; /* Account for header height */
}

.sidebar-header h3 {
  margin: 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Menu categories */
.menu-category {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.menu-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-light);
  font-weight: 600;
}

.menu-header:hover {
  background: var(--bg-card-hover);
  color: var(--primary);
}

.menu-header i:first-child {
  width: 20px;
  text-align: center;
}

.menu-header i:last-child {
  margin-left: auto;
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.menu-header.active i:last-child {
  transform: rotate(180deg);
}

.menu-header.active {
  background: var(--primary);
  color: var(--white);
}

/* Sub-menu */
.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-card-hover);
}

.sub-menu.active {
  max-height: 500px;
}

.sub-item {
  display: block;
  padding: 0.8rem 1.5rem 0.8rem 3.5rem;
  color: var(--text-lighter);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  font-size: 0.9rem;
}

.sub-item:hover {
  background: var(--bg-card);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 4rem;
}

/* Page content */
.content {
  margin-left: 0;
  padding: 100px 3rem 2rem 3rem;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}

.sidebar.active ~ .content {
  margin-left: 280px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 90px;
  left: 20px;
  z-index: 1001;
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  gap: 0.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}

/* Overlay for mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.sidebar-overlay.active {
  display: block;
}

/* RESPONSIVE - Mobile */
@media screen and (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .sidebar.active ~ .content {
    margin-left: 0;
  }
}

@media screen and (max-width: 480px) {
  .sidebar {
    width: 100%;
  }
}
.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
