/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: right;
}

.mobile-menu-close {
    font-size: 30px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-items li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-items a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
    font-weight: 500;
}

.mobile-menu-items a:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: white;
}

.contact-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-item p {
    margin: 8px 0;
    line-height: 1.6;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-map iframe {
    border-radius: 10px;
}

/* Footer Styles */
.footer {
    background-color: #0a0a0a;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.6;
    margin: 8px 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Footer Logo Styles */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 200px;
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    margin-top: 40px;
}

.about-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.mission, .vision {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mission p, .vision p {
    line-height: 1.7;
    color: var(--text-color);
}

.values {
    text-align: center;
}

.values h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

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

.value-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-item p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-right .nav-menu {
        display: none;
    }
    
    .get-started-btn {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .about-intro-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mission, .vision {
        padding: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 25px 20px;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-left {
        display: flex;
        align-items: center;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        order: 2;
        margin-left: auto;
    }
    
    /* Ensure mobile menu overlay */
    .mobile-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(48, 2, 26, 0.568);
      
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: -1;
    }
    
    .mobile-menu.active::before {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .mobile-menu {
        width: 250px;
    }
}