/* Modern CSS Reset */
:root {
    --primary: #006837;
    --primary-light: #4d9b59;
    --primary-dark: #004225;
    --secondary: #FFC72C;
    --accent: #FF6B35;
    --dark: #2D2D2D;
    --gray: #6C757D;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light-gray);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 104, 55, 0.2);
}

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

.btn-secondary:hover {
    background-color: #e6b400;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
    text-align: center;
}

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

/* Header */
.glass-header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary);
}

.logo-container h1 span {
    font-weight: 400;
}

.logo-container p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--gray);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav ul li a i {
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a.active {
    color: var(--primary);
    font-weight: 600;
}

.btn-login {
    background-color: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #006837 0%, #4d9b59 100%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0,104,55,0.8) 0%, rgba(76,175,80,0.6) 100%);
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    z-index: 2;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    color: white;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(90deg, #FFC72C 0%, #FF9A3C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    /* opacity: ; */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: linear-gradient(90deg, #FFC72C 0%, #FF9A3C 100%);
    color: #2D2D2D;
    box-shadow: 0 4px 15px rgba(255, 166, 0, 0.3);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 166, 0, 0.4);
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.4);
    border-radius: 50px;
    animation: pulse 2s infinite;
    opacity: 0;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-icon {
    color: #FFC72C;
}

.hero-visual {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.main-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.visual-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 3px);
    background-size: 20px 20px;
    top: -30px;
    left: -30px;
    z-index: 1;
}

.visual-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 15px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    z-index: 1;
}

/* Typing animation */
.typing-text {
    display: inline-block;
    position: relative;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -8px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-actions, .trust-badges {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 50px;
    }
    
    .main-visual {
        transform: perspective(1000px) rotateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-shape {
        display: none;
    }
}
/* Stats Bar */
.stats-bar {
    background-color: var(--white);
    padding: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    margin-top: -30px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}


/* Enhanced Services Section CSS */

.services {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    color: var(--primary);
    position: relative;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    z-index: 1;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    margin: 15px auto 0 auto;
    border-radius: 2px;
    opacity: 0.95;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: var(--gray);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.5;
    z-index: 1;
}

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

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    font-size: 28px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-hover {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card:hover .service-hover {
    height: 80px;
    margin-top: 15px;
}

.service-hover a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    border-radius: 5px;
    background: #f8f9fa;
    color: #3498db;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.service-hover a:hover {
    background: #3498db;
    color: white;
}

.service-hover a.troubleshoot {
    background: #f1f2f6;
    color: #7f8c8d;
}

.service-hover a.troubleshoot:hover {
    background: #95a5a6;
    color: white;
}

/* Special Cards */
.lms-card .service-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.virtual-card .service-icon {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
}

.faq-card .service-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.lms-badge {
    position: absolute;
    top: 15px;
    right: -25px;
    background: #e74c3c;
    color: white;
    padding: 3px 25px;
    font-size: 0.7rem;
    transform: rotate(45deg);
    font-weight: bold;
}

/* Quick FAQ Section */
.quick-faq {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
    border-left: 4px solid #3498db;
}

.quick-faq h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
}

.faq-question h4 {
    color: #34495e;
    font-size: 1rem;
    margin: 0;
}

.faq-question i {
    color: #7f8c8d;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 15px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.full-faq-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    color: #3498db;
    font-weight: 500;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Contact Cards Styling */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    text-align: center;
    color: var(--primary);
    position: relative;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    z-index: 1;
    display: block;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    margin: 15px auto 0 auto;
    border-radius: 2px;
    opacity: 0.95;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: var(--gray);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.5;
    z-index: 1;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    z-index: -1;
    opacity: 0.1;
}

.card-digital .card-bg-accent {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
}

.card-inperson .card-bg-accent {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.card-hours .card-bg-accent {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.card-header {
    padding: 2rem 2rem 1rem;
    position: relative;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card-digital .card-icon {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
}

.card-inperson .card-icon {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.card-hours .card-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.contact-card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
}

.card-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 2rem; /* Increased space below the h3 */
    font-weight: 600;
}

.card-body {
    padding: 0 2rem 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.method-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: white;
    margin-top: 4px;
}

.email {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
}

.phone {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.location {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.clock {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

.method-details h4 {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.method-details a, .method-details p {
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.method-details a:hover {
    color: #3498db;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.phone-numbers span {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

.availability {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    background: rgba(155,89,182,0.1);
    border-radius: 8px;
    color: #9b59b6;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.map-link:hover {
    background: rgba(155,89,182,0.2);
    transform: translateX(5px);
}

.hours-display {
    margin: 1.5rem 0;
}

.day {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.day:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 500;
    color: #2c3e50;
}

.day-hours {
    font-weight: 600;
    color: #2c3e50;
}

.day.closed .day-hours {
    color: #e74c3c;
}

.holiday-notice {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    padding: 0.8rem;
    background: rgba(236,240,241,0.5);
    border-radius: 8px;
    margin-top: 1.5rem;
}

.card-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, 
        rgba(52,152,219,0.3) 0%, 
        rgba(46,204,113,0.3) 50%, 
        rgba(52,152,219,0.3) 100%);
    background-size: 200% 100%;
    animation: wave 3s linear infinite;
}

.card-digital .card-wave {
    background: linear-gradient(90deg, 
        rgba(52,152,219,0.3) 0%, 
        rgba(46,204,113,0.3) 50%, 
        rgba(52,152,219,0.3) 100%);
}

.card-inperson .card-wave {
    background: linear-gradient(90deg, 
        rgba(155,89,182,0.3) 0%, 
        rgba(142,68,173,0.3) 50%, 
        rgba(155,89,182,0.3) 100%);
}

.card-hours .card-wave {
    background: linear-gradient(90deg, 
        rgba(243,156,18,0.3) 0%, 
        rgba(230,126,34,0.3) 50%, 
        rgba(243,156,18,0.3) 100%);
}

@keyframes wave {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .card-header, .card-body {
        padding: 1.5rem 1rem;
    }
}
/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    background-color: var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 20px 0;
    margin-bottom: 0;
    border-top: 1px solid #eee;
}

.faq-item.active .faq-question {
    background-color: var(--primary);
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-item.active .faq-question i {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-footer {
    text-align: center;
    margin-top: 40px;
}

.view-all-faqs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.view-all-faqs:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* Footer */
.main-footer {
    background-color: #198754; /* Green */
    color: #fff;
    padding: 60px 0 0;
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo h3 {
    color: #fff;
    margin-bottom: 0;
    font-size: 1.3rem;
}

.footer-col p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: #157347;
    color: #d4edda;
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #fff;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: #d4edda;
    padding-left: 5px;
}

.footer-col ul li i {
    font-size: 0.8rem;
    width: 20px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form button {
    padding: 0 15px;
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #e6b400;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.8rem;
    color: #fff;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #d4edda;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    max-height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.hero-banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

@media (max-width: 600px) {
    .hero-banner,
    .hero-banner img {
        max-height: 120px;
        height: 120px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .search-container {
        margin: 0 auto 2rem;
    }
    
    .quick-links {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text .subtitle {
        font-size: 1rem;
    }
    
    .stats-bar .container {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .search-container input {
        border-radius: 50px;
        margin-bottom: 10px;
    }
    
    .search-container button {
        border-radius: 50px;
        width: 100%;
    }
    
    .stats-bar .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* uesd wifi styling */
/* Simple, clean styles */
/* body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.5;
    padding: 20px;
    margin: 0;
}

.guide-container {
    max-width: 500px;
    margin: 40px auto;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header .icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #4CAF50;
}

.header h1 {
    font-size: 24px;
    margin: 0;
    color: #333;
}

.header h1 span {
    color: #4CAF50;
    font-weight: 600;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.step.highlight {
    border-left: 4px solid #4CAF50;
    background: #f5fff5;
}

.number {
    width: 30px;
    height: 30px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.content h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.content p {
    margin: 5px 0;
    color: #555;
    font-size: 14px;
}

.credentials {
    margin: 10px 0;
}

.credential {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.credential code {
    font-family: monospace;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
}

.credential button {
    background: #e8f5e9;
    border: none;
    color: #4CAF50;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}

.credential button:hover {
    background: #d0e8d0;
}

.footer {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 13px;
    text-align: center;
}

.footer i {
    color: #4CAF50;
    margin-right: 5px;
}

#toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

#toast.show {
    opacity: 1;
}

@media (max-width: 500px) {
    .guide-container {
        padding: 20px;
    }
} */