* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Poppins', sans-serif; line-height: 1.7; color: #333; overflow-x: hidden; 
    background: #f8f9fa;
}

/* Header */
.header { 
    position: fixed; top: 0; width: 100%; z-index: 1000; 
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); 
    box-shadow: 0 2px 25px rgba(0,0,0,0.08);
}
.navbar { padding: 1rem 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo h2 { color: #28a745; font-size: 1.9rem; font-weight: 700; }
.nav-menu { display: flex; list-style: none; gap: 2.5rem; }
.nav-menu a { text-decoration: none; color: #333; font-weight: 500; transition: all 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: #28a745; }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 4px; }
.hamburger span { width: 28px; height: 3px; background: #333; border-radius: 2px; transition: 0.3s; }

/* HERO SLIDER */
.hero-slider { position: relative; height: 100vh; min-height: 700px; overflow: hidden; }
.slider-container { position: relative; height: 100%; width: 100%; }
.slide { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background-size: cover; background-position: center; opacity: 0; transform: scale(1.05);
    transition: all 0.8s ease-in-out;
}
.slide.active { opacity: 1; transform: scale(1); }
.slide-content { 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; color: white; max-width: 900px; z-index: 2;
}
.slide-content h1 { font-size: clamp(3rem, 8vw, 5rem); font-weight: 800; margin-bottom: 1.5rem; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.slide-content p { font-size: 1.4rem; margin-bottom: 2rem; opacity: 0.95; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.cta-button { 
    display: inline-flex; align-items: center; gap: 1rem; padding: 1.2rem 3rem; 
    background: linear-gradient(135deg, #28a745, #20c997); color: white; 
    text-decoration: none; border-radius: 50px; font-weight: 700; font-size: 1.2rem;
    box-shadow: 0 15px 40px rgba(40,167,69,0.4); transition: all 0.3s;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(40,167,69,0.5); }
.cta-button.secondary { background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); }

.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
.dot.active, .dot:hover { background: white; transform: scale(1.3); }
.slider-nav { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; padding: 0 20px; z-index: 10; }
.nav-btn { background: rgba(255,255,255,0.2); border: none; color: white; font-size: 1.5rem; padding: 1rem; cursor: pointer; border-radius: 50%; transition: all 0.3s; }
.nav-btn:hover { background: rgba(255,255,255,0.4); transform: scale(1.1); }

/* HIGHLIGHTS */
.highlights { padding: 5rem 0 3rem; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; text-align: center; }
.highlight-item { transition: all 0.3s; }
.highlight-item:hover { transform: translateY(-10px); }
.highlight-icon { font-size: 3.5rem; color: #28a745; margin-bottom: 1rem; }
.highlight-item h3 { font-size: 2.5rem; font-weight: 800; color: #28a745; margin-bottom: 0.5rem; }

/* PARTNERS */
/* Hover effect for better UX */
.partners-section .partner-logo {
    transition: all 0.3s ease;
}

.partners-section .partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partners-section .section-title {
        font-size: 2rem;
    }
    
    .partners-section .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .partners-section .partner-logo {
        padding: 15px;
        min-height: 100px;
    }
    
    .partners-section .partner-logo img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .partners-section .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* QUERY FORM */
.query-form-section { padding: 6rem 0; background: linear-gradient(135deg, #28a745 0%, #20c997 100%); }
.form-container { max-width: 700px; margin: 0 auto; background: rgba(255,255,255,0.95); padding: 3rem; border-radius: 25px; box-shadow: 0 30px 80px rgba(0,0,0,0.2); }
.form-container h2 { text-align: center; color: #28a745; font-size: 2.2rem; margin-bottom: 2rem; }
.form-group input, .form-group select, .form-group textarea { 
    width: 100%; padding: 1rem 1.2rem; border: 2px solid #e9ecef; border-radius: 12px; 
    font-size: 1rem; transition: all 0.3s; font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { 
    outline: none; border-color: #28a745; box-shadow: 0 0 0 3px rgba(40,167,69,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.submit-btn { 
    width: 100%; padding: 1.2rem; background: linear-gradient(135deg, #25D366, #128C7E); 
    color: white; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(37,211,102,0.4); }

/* REVIEWS */
.reviews-section { padding: 6rem 0; background: #f8f9fa; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.review-card { 
    background: white; padding: 2.5rem; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center; transition: all 0.3s;
}
.review-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
.stars { margin-bottom: 1.5rem; }
.stars i { font-size: 1.3rem; color: #ffc107; margin: 0 2px; }
.stars i.filled { color: #ffc107; }
.review-card h4 { color: #28a745; font-weight: 700; margin-top: 1.5rem; }

/* Responsive */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu { 
        position: fixed; left: -100%; top: 70px; flex-direction: column; background: white; 
        width: 100%; text-align: center; padding: 2rem 0; box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
    .nav-menu.active { left: 0; }
    .form-row { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
}

        /* HERO SLIDER CSS - FULL SCREEN IMAGES */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        .slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }
        .slide.active {
            opacity: 1;
        }
        .slide-image {
            width: 100%;
            height: 100vh;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 10;
            backdrop-filter: blur(5px);
            background: rgba(0,0,0,0.4);
            padding: 40px;
            border-radius: 20px;
            max-width: 700px;
        }
        .slide-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        }
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            font-size: 1.2rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
        }
        .cta-button.primary {
            background: #28a745;
            color: white;
        }
        .cta-button.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .slider-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 20;
        }
        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.6);
            cursor: pointer;
            transition: all 0.3s;
        }
        .dot.active {
            background: #ffd700;
            transform: scale(1.3);
        }
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 20;
        }
        .nav-btn {
            background: rgba(0,0,0,0.6);
            border: none;
            color: white;
            font-size: 24px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }
        .nav-btn:hover {
            background: rgba(255,255,255,0.2);
            transform: scale(1.1);
        }
        @media (max-width: 768px) {
            .slide-content h1 { font-size: 2.2rem; }
            .slide-content p { font-size: 1.1rem; }
            .slide-content { padding: 20px; }
        }
    