* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 2rem;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.02);
}
.logo-image {
    height: 5rem;
    width: auto;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: green;
    letter-spacing: -0.5px;
}
.logo-subtitle {
    font-size: 0.8rem;
    color: rgb(0, 0, 0);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #4b5563;
    margin: 5px 0;
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6),
                opacity 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 1rem;
    }

    .logo-image {
        height: 4.1rem;
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: white;
        padding: 6rem 2rem;
        flex-direction: column;
        gap: 2rem;
        transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.4s ease;
        transition-delay: calc(0.1s * var(--i));
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        display: none;
    }
}
/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.295), rgba(0, 0, 0, 0.5)),
                url('/assets/Custom.avif') center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.contact-info {
    padding: 20px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-right: 15px;
}

.info-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.info-details p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #4CAF50;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #45a049;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 400px;
    margin-top: 60px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Success Message */
.success-message {
    display: none;
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 20px;
    }

    .map-section {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }

    .info-item {
        flex-direction: column;
    }

    .info-item i {
        margin-bottom: 10px;
    }
}
/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background-color: #333;
    color: white;
}

.footer a {
    color: #fe0000;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Support Hours Section Styles */
.support-hours {
    background: #f9f9f9;
    padding: 60px 20px;
    margin-top: 60px;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-hours h2 {
    text-align: center;
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.support-hours .subtitle {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.support-card h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-card h3 i {
    font-size: 1.4rem;
}

.support-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.support-card .highlight {
    color: #4CAF50;
    font-weight: 600;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .back-to-top-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 25px;
        right: 15px;
    }

    .support-hours h2 {
        font-size: 1.8rem;
    }

    .support-grid {
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .back-to-top-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
        bottom: 20px;
        right: 12px;
    }

    .support-hours {
        padding: 40px 15px;
    }

    .support-card {
        padding: 20px;
    }
}

@media screen and (max-width: 280px) {
    .back-to-top-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        bottom: 15px;
        right: 10px;
    }

    .support-hours h2 {
        font-size: 1.5rem;
    }

    .support-card h3 {
        font-size: 1.1rem;
    }

    .support-card {
        padding: 15px;
    }
}