* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a1a;
    color: #fff;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight {
    color: #6C63FF;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(108, 99, 255, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.logo h1 {
    font-size: 1.5rem;
}

.logo span {
    color: #6C63FF;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

nav ul a:hover, nav ul a.active {
    color: #6C63FF;
}

.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    background: linear-gradient(135deg, #0a0a1a, #12122a);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(108, 99, 255, 0.15);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stats strong {
    font-size: 1.8rem;
    color: #6C63FF;
    display: block;
}

.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn.primary {
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    color: #fff;
}

.btn.outline {
    border: 2px solid #6C63FF;
    color: #6C63FF;
}

.btn.primary:hover, .btn.outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

/* Floating Cards */
.hero-image {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(108,99,255,0.2), rgba(255,101,132,0.2));
    backdrop-filter: blur(12px);
    padding: 12px 22px;
    border-radius: 50px;
    border: 1px solid rgba(108,99,255,0.5);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.floating-card:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(108,99,255,0.4);
}

.floating-card i {
    font-size: 1rem;
}

.floating-card:nth-child(1) { top: 10%; left: 0; animation: float1 4s ease infinite; }
.floating-card:nth-child(2) { top: 35%; right: 0; animation: float2 4.5s ease infinite; }
.floating-card:nth-child(3) { bottom: 25%; left: 5%; animation: float3 5s ease infinite; }
.floating-card:nth-child(4) { bottom: 10%; right: 10%; animation: float4 3.5s ease infinite; }

@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes float3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float4 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.tag {
    display: inline-block;
    background: rgba(108, 99, 255, 0.15);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    color: #6C63FF;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-title p {
    color: #aaa;
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background: #0f0f22;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.brand-card {
    background: rgba(255,255,255,0.03);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(108,99,255,0.2);
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: #6C63FF;
    box-shadow: 0 15px 30px rgba(108,99,255,0.2);
}

.brand-card i {
    font-size: 48px;
    color: #6C63FF;
    margin-bottom: 15px;
}

.brand-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.brand-card p {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.brand-tag {
    display: inline-block;
    background: rgba(108,99,255,0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    color: #6C63FF;
}

/* Certificates Section */
.certificates {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #12122a 100%);
}

.certificates-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 60px;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.certificates-header h3 {
    font-size: 1.2rem;
    color: #6C63FF;
}

.certificates-header h3 i {
    margin-right: 10px;
}

.certificates-header p {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 5px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.certificate-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(108,99,255,0.08));
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(108, 99, 255, 0.2);
    backdrop-filter: blur(10px);
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108,99,255,0.2), transparent);
    transition: left 0.5s;
}

.certificate-card:hover::before {
    left: 100%;
}

.certificate-card:hover {
    transform: translateY(-8px);
    border-color: #6C63FF;
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.3);
}

.certificate-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.certificate-icon i {
    font-size: 48px;
    color: #6C63FF;
}

.cert-badge {
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
}

.certificate-details h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.certificate-details p {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.cert-issuer {
    display: inline-block;
    background: rgba(108, 99, 255, 0.15);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    color: #6C63FF;
    margin-bottom: 10px;
}

.cert-date {
    font-size: 0.7rem;
    color: #888;
    margin-top: 8px;
}

.cert-hover-effect {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 8px;
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    transition: bottom 0.3s ease;
}

.certificate-card:hover .cert-hover-effect {
    bottom: 0;
}

.cert-hover-effect span {
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Certificate Showcase */
.certificate-showcase {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.showcase-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.showcase-title i {
    color: #6C63FF;
    margin-right: 10px;
}

.certificate-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.download-card:hover {
    background: rgba(108, 99, 255, 0.15);
    transform: translateX(5px);
}

.download-icon i {
    font-size: 40px;
    color: #ff4444;
}

.download-info h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.download-info p {
    font-size: 0.7rem;
    color: #aaa;
}

.download-btn {
    margin-left: auto;
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
}

/* Certificate Badges */
.certificate-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    padding: 30px;
    background: rgba(108, 99, 255, 0.05);
    border-radius: 60px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.badge-circle i {
    font-size: 24px;
    color: white;
}

.badge-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(108, 99, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0); }
}

/* Services */
.services {
    padding: 80px 0;
    background: #0f0f22;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.service {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.service:hover {
    transform: translateY(-5px);
    border-color: #6C63FF;
}

.service i {
    font-size: 45px;
    color: #6C63FF;
    margin-bottom: 15px;
}

.service h3 {
    margin-bottom: 12px;
}

.service p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.price {
    display: inline-block;
    background: rgba(108,99,255,0.15);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #6C63FF;
}

/* About */
.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-text h2 {
    font-size: 2rem;
    margin: 15px 0 20px;
}

.about-text p {
    color: #bbb;
    margin-bottom: 20px;
}

.founder {
    display: flex;
    gap: 15px;
    background: rgba(108,99,255,0.1);
    padding: 20px;
    border-radius: 20px;
    margin: 25px 0;
}

.founder i {
    font-size: 45px;
    color: #6C63FF;
}

.contact-info {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 8px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-stack span {
    background: rgba(255,255,255,0.05);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: rgba(255,255,255,0.03);
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
}

.stat-box i {
    font-size: 35px;
    color: #6C63FF;
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #0f0f22;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    display: none;
    border: 1px solid rgba(108,99,255,0.2);
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial i {
    font-size: 40px;
    color: #6C63FF;
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
}

.stars {
    color: #FFD700;
    margin-top: 5px;
    font-size: 0.8rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-controls button {
    background: rgba(108,99,255,0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
}

.slider-controls button:hover {
    background: #6C63FF;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #6C63FF;
}

/* Gallery */
.gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item span {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 15px;
    text-align: center;
    transition: 0.3s;
}

.gallery-item:hover span {
    bottom: 0;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: #0f0f22;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background: rgba(255,255,255,0.03);
    padding: 35px;
    border-radius: 25px;
}

.contact-form h3 {
    margin-bottom: 25px;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px 18px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #6C63FF;
}

.contact-form button {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 20px;
}

.info-card h3, .info-card h4 {
    margin-bottom: 12px;
}

.info-card p {
    margin: 8px 0;
}

.info-card i {
    color: #6C63FF;
    margin-right: 8px;
}

.sales {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(108,99,255,0.15), rgba(255,101,132,0.15));
}

.sales i {
    font-size: 35px;
}

.sales a {
    color: #6C63FF;
    text-decoration: none;
}

.timing .closed {
    color: #FF6584;
}

.timing .emergency {
    margin-top: 12px;
    color: #6C63FF;
}

/* Footer */
footer {
    background: #050510;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col img {
    width: 50px;
    margin-bottom: 12px;
    border-radius: 10px;
}

.footer-col h3 {
    margin-bottom: 10px;
}

.footer-col p, .footer-col a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin: 8px 0;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #6C63FF;
}

.social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social a {
    width: 40px;
    height: 40px;
    background: rgba(108,99,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #aaa;
    font-size: 0.8rem;
}

/* WhatsApp Button */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    transition: 0.3s;
    z-index: 100;
}

.whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #0a0a1a;
        width: 100%;
        text-align: center;
        padding: 30px;
        transition: 0.3s;
        z-index: 999;
    }
    
    nav ul.active {
        left: 0;
    }
    
    .menu-btn {
        display: block;
    }
    
    .stats {
        flex-wrap: wrap;
    }
    
    .floating-card {
        display: none;
    }
    
    .services-grid, .gallery-grid, .brands-grid, .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certificate-download-grid {
        grid-template-columns: 1fr;
    }
    
    .download-card {
        flex-wrap: wrap;
    }
    
    .download-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .certificate-badges {
        flex-direction: column;
        align-items: center;
        border-radius: 30px;
    }
    
    .certificates-header {
        width: 100%;
        text-align: center;
    }
}