*{margin:0;padding:0;box-sizing:border-box}
body{
    font-family:'Inter',sans-serif;
    background:#0b1120;
    color:#fff;
    scroll-behavior:smooth;
}
section{padding:80px 20px}
.container{max-width:1200px;margin:auto}

h2{
    font-size:32px;
    margin-bottom:40px;
    text-align:center;
}

/* NAVBAR */
nav{
    position:fixed;
    top:0;
    width:100%;
    /* background:rgba(11,17,32,0.95); */
    background: #16171C;
    backdrop-filter:blur(10px);
    z-index:1000;
    /* padding:15px 0; */
    box-shadow:0 2px 10px rgba(0,0,0,0.3);
    transition:0.3s;
}
nav .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    font-size:24px;
    font-weight:800;
    color:#25D366;
    text-decoration:none;
}
.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}
.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
    padding:5px 10px;
    border-radius:5px;
}
.nav-links a:hover,
.nav-links a.active{
    color:#25D366;
    background:rgba(37,211,102,0.1);
}
.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
}
.menu-toggle span{
    width:25px;
    height:3px;
    background:#fff;
    margin:4px 0;
    transition:0.3s;
}

/* FAQ */
.faq-container{
    max-width:900px;
    margin:auto;
}
.faq-item{
    background:#111827;
    margin-bottom:15px;
    border-radius:15px;
    overflow:hidden;
    transition:0.3s;
    border:2px solid transparent;
}
.faq-item:hover{
    border-color:rgba(37,211,102,0.3);
}
.faq-question{
    padding:25px;
    cursor:pointer;
    font-size:18px;
    color:#25D366;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:0.3s;
    margin:0;
    user-select:none;
}
.faq-question:hover{
    background:#1f2937;
}
.faq-question:after{
    content:'+';
    font-size:32px;
    font-weight:bold;
    color:#25D366;
    transition:transform 0.3s ease;
    min-width:30px;
    text-align:center;
}
.faq-item.active .faq-question{
    background:#1f2937;
}
.faq-item.active .faq-question:after{
    content:'−';
    transform:rotate(180deg);
}
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
}
.faq-item.active .faq-answer{
    max-height:600px;
}
.faq-answer p{
    padding:0 25px 25px;
    color:#cbd5e1;
    line-height:1.8;
    margin:0;
}

@media(max-width:768px){
    .nav-links{
        position:fixed;
        top:60px;
        right:-100%;
        flex-direction:column;
        background:rgba(11,17,32,0.98);
        width:250px;
        padding:30px;
        transition:0.3s;
        box-shadow:-2px 0 10px rgba(0,0,0,0.5);
        height:calc(100vh - 60px);
    }
    .nav-links.active{
        right:0;
    }
    .menu-toggle{
        display:flex;
    }
}

/* HERO */
.hero{
    margin-top:60px;
    height:90vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}
.hero-slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.hero-slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease-in-out;
    background-size:cover;
    background-position:center;
}
.hero-slide.active{
    opacity:1;
}
.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.7));
}
.hero-content{
    position:relative;
    z-index:10;
    padding:20px;
}
.hero h1{
    font-size:48px;
    font-weight:800;
    margin-bottom:10px;
    text-shadow:2px 2px 4px rgba(0,0,0,0.5);
}
.hero p{
    margin:20px 0;
    font-size:20px;
    color:#d1d5db;
    text-shadow:1px 1px 2px rgba(0,0,0,0.5);
}

@media(max-width:768px){
    .hero{
        height:70vh;
        margin-top:60px;
    }
    .hero h1{
        font-size:32px;
    }
    .hero p{
        font-size:16px;
    }
}

/* BUTTONS */
.btn{
    display:inline-block;
    padding:14px 26px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    margin:5px;
    transition:0.3s;
    border:none;
    cursor:pointer;
    font-size:16px;
}
.btn-primary{
    background:#25D366;
    color:#fff;
}
.btn-primary:hover{
    background:#1fb854;
    transform:translateY(-2px);
    box-shadow:0 4px 15px rgba(37,211,102,0.4);
}
.btn-secondary{
    background:#2563eb;
    color:#fff;
}
.btn-secondary:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
    box-shadow:0 4px 15px rgba(37,99,235,0.4);
}

/* PAGE HEADER */
.page-header{
    margin-top:60px;
    padding:100px 20px 60px;
    text-align:center;
    background:linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.page-header h1{
    font-size:42px;
    margin-bottom:15px;
    color:#25D366;
}
.page-header p{
    font-size:18px;
    color:#cbd5e1;
}

/* ABOUT */
.about{
    text-align:center;
    max-width:800px;
    margin:auto;
    color:#cbd5e1;
    line-height:1.8;
    font-size:17px;
}

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}
.about-text h2{
    text-align:left;
    margin-bottom:20px;
}
.about-text p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:20px;
}
.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

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

/* MISSION VISION */
.mission-vision{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}
.mv-box{
    background:#111827;
    padding:40px;
    border-radius:15px;
    border-left:4px solid #25D366;
}
.mv-box h3{
    font-size:24px;
    margin-bottom:20px;
    color:#25D366;
}
.mv-box p{
    color:#cbd5e1;
    line-height:1.8;
}

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

/* VALUES */
.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.value-card{
    background:#111827;
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:0.3s;
}
.value-card:hover{
    transform:translateY(-8px);
    background:#1f2937;
}
.value-icon{
    font-size:48px;
    margin-bottom:15px;
}
.value-card h3{
    margin-bottom:10px;
    color:#25D366;
}
.value-card p{
    color:#cbd5e1;
}

/* TEAM */
.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}
.team-card{
    background:#111827;
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:0.3s;
}
.team-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(37,211,102,0.2);
}
.team-card img{
    width:150px;
    height:150px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:4px solid #25D366;
}
.team-card h3{
    margin-bottom:5px;
    color:#25D366;
}
.role{
    color:#6b7280;
    font-size:14px;
    margin-bottom:10px;
}
.bio{
    color:#cbd5e1;
    font-size:15px;
}

/* WHY US */
.why-us-list{
    max-width:900px;
    margin:auto;
}
.why-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#111827;
    padding:25px;
    margin-bottom:20px;
    border-radius:15px;
    transition:0.3s;
}
.why-item:hover{
    background:#1f2937;
    transform:translateX(10px);
}
.why-icon{
    font-size:32px;
    color:#25D366;
    min-width:40px;
}
.why-item h4{
    color:#25D366;
    margin-bottom:8px;
}
.why-item p{
    color:#cbd5e1;
    line-height:1.7;
}

/* SERVICES */
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.service-card{
    background:#111827;
    padding:30px;
    border-radius:15px;
    transition:.3s;
    border:2px solid transparent;
}
.service-card:hover{
    transform:translateY(-8px);
    background:#1f2937;
    border-color:#25D366;
}
.service-card h3{
    margin-bottom:15px;
    color:#25D366;
}
.service-card p{
    color:#cbd5e1;
    line-height:1.7;
}

/* SERVICE DETAIL */
.service-detail{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:60px;
}
.service-detail.reverse{
    direction:rtl;
}
.service-detail.reverse .service-detail-content{
    direction:ltr;
}
.service-detail.reverse .service-detail-image{
    direction:ltr;
}
.service-number{
    display:inline-block;
    background:#25D366;
    color:#0b1120;
    font-size:24px;
    font-weight:800;
    padding:10px 20px;
    border-radius:8px;
    margin-bottom:20px;
}
.service-detail-content h2{
    text-align:left;
    margin-bottom:20px;
}
.service-detail-content p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:20px;
}
.service-list{
    list-style:none;
    margin-top:20px;
}
.service-list li{
    color:#cbd5e1;
    padding:10px 0;
    padding-left:30px;
    position:relative;
}
.service-list li:before{
    content:'✓';
    position:absolute;
    left:0;
    color:#25D366;
    font-weight:bold;
    font-size:18px;
}
.service-detail-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

@media(max-width:768px){
    .service-detail,
    .service-detail.reverse{
        grid-template-columns:1fr;
        direction:ltr;
    }
}

/* BRANDS */
.brands-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.brand-card{
    background:#111827;
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:0.3s;
    border:2px solid transparent;
}
.brand-card:hover{
    border-color:#25D366;
    transform:translateY(-5px);
}
.brand-card h3{
    color:#25D366;
    font-size:28px;
    margin-bottom:15px;
}
.brand-card p{
    color:#cbd5e1;
    line-height:1.7;
}

/* STATS */
.stats{
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
    gap:20px;
}
.stat-box{
    background:#111827;
    padding:30px;
    border-radius:15px;
    text-align:center;
    flex:1;
    min-width:200px;
    transition:0.3s;
}
.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(37,211,102,0.2);
}
.stat-box h3{
    font-size:38px;
    color:#25D366;
    margin-bottom:10px;
}
.stat-box p{
    color:#cbd5e1;
}

/* GALLERY SLIDER */
.gallery-section{
    background:#0a0f1a;
}
.gallery-slider{
    position:relative;
    max-width:900px;
    margin:auto;
    overflow:hidden;
    border-radius:15px;
}
.gallery-track{
    display:flex;
    transition:transform 0.5s ease-in-out;
}
.gallery-slide{
    min-width:100%;
    height:500px;
}
.gallery-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(37,211,102,0.8);
    color:#fff;
    border:none;
    padding:15px 20px;
    cursor:pointer;
    font-size:20px;
    border-radius:5px;
    transition:0.3s;
    z-index:10;
}
.slider-btn:hover{
    background:#25D366;
}
.slider-btn.prev{left:10px}
.slider-btn.next{right:10px}

.slider-dots{
    text-align:center;
    margin-top:20px;
}
.dot{
    display:inline-block;
    width:12px;
    height:12px;
    background:#374151;
    border-radius:50%;
    margin:0 5px;
    cursor:pointer;
    transition:0.3s;
}
.dot.active{
    background:#25D366;
    width:30px;
    border-radius:6px;
}

@media(max-width:768px){
    .gallery-slide{
        height:300px;
    }
}

/* BLOG */
.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
    gap:25px;
}
.blog-card{
    background:#111827;
    border-radius:15px;
    overflow:hidden;
    transition:0.3s;
}
.blog-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(37,211,102,0.2);
}
.blog-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}
.blog-content{
    padding:20px;
}
.blog-content h3{
    margin-bottom:10px;
    color:#25D366;
}
.blog-content .date{
    color:#6b7280;
    font-size:14px;
    margin-bottom:10px;
    display:block;
}

/* BLOG FULL ARTICLE */
.blog-card-full{
    background:#111827;
    border-radius:15px;
    overflow:hidden;
    margin-bottom:40px;
}
.blog-card-full img{
    width:100%;
    height:400px;
    object-fit:cover;
}
.blog-card-full .blog-content{
    padding:40px;
}
.blog-card-full h2{
    text-align:left;
    margin-bottom:20px;
    color:#25D366;
}
.blog-card-full h3{
    color:#25D366;
    margin-top:30px;
    margin-bottom:15px;
    font-size:24px;
}
.blog-card-full p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:20px;
}
.blog-card-full .excerpt{
    font-size:18px;
    color:#d1d5db;
    font-weight:500;
}
.blog-list{
    list-style:none;
    margin:20px 0;
}
.blog-list li{
    color:#cbd5e1;
    padding:10px 0;
    padding-left:30px;
    position:relative;
    line-height:1.7;
}
.blog-list li:before{
    content:'•';
    position:absolute;
    left:0;
    color:#25D366;
    font-size:24px;
}
.highlight{
    background:rgba(37,211,102,0.1);
    border-left:4px solid #25D366;
    padding:20px;
    border-radius:8px;
    margin:20px 0;
}

@media(max-width:768px){
    .blog-card-full img{
        height:250px;
    }
    .blog-card-full .blog-content{
        padding:25px;
    }
}

/* CONTACT */
.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}
.contact-info{
    background:#111827;
    padding:40px;
    border-radius:15px;
}
.contact-info h3{
    margin-bottom:30px;
    color:#25D366;
    font-size:24px;
}
.contact-item{
    margin:25px 0;
    display:flex;
    gap:15px;
    align-items:flex-start;
}
.contact-icon{
    font-size:28px;
    min-width:40px;
}
.contact-item strong{
    color:#25D366;
    display:block;
    margin-bottom:5px;
}
.contact-item p{
    color:#cbd5e1;
    line-height:1.7;
}
.contact-item a{
    color:#25D366;
    text-decoration:none;
}
.contact-item a:hover{
    text-decoration:underline;
}

.social-links{
    margin-top:30px;
    padding-top:30px;
    border-top:1px solid #374151;
}
.social-links h4{
    color:#25D366;
    margin-bottom:15px;
}
.social-icons{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.social-icon{
    color:#cbd5e1;
    text-decoration:none;
    padding:10px;
    border-radius:8px;
    transition:0.3s;
}
.social-icon:hover{
    background:rgba(37,211,102,0.1);
    color:#25D366;
}

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

/* FORM */
form{
    background:#111827;
    padding:40px;
    border-radius:15px;
    display:flex;
    flex-direction:column;
    gap:15px;
}
input,textarea,select{
    padding:14px;
    border:2px solid #1f2937;
    border-radius:8px;
    background:#0b1120;
    color:#fff;
    font-family:inherit;
    font-size:16px;
    transition:0.3s;
}
input:focus,textarea:focus,select:focus{
    outline:none;
    border-color:#25D366;
    background:#111827;
}
select{
    cursor:pointer;
}
select option{
    background:#111827;
    color:#fff;
}
textarea{
    resize:vertical;
    min-height:120px;
}

/* LOCATION */
.location{
    text-align:center;
}
iframe{
    width:100%;
    height:400px;
    border:none;
    border-radius:15px;
    margin-top:20px;
}

/* FAQ */
.faq-container{
    max-width:900px;
    margin:auto;
}
.faq-item{
    background:#111827;
    margin-bottom:15px;
    border-radius:15px;
    overflow:hidden;
    transition:0.3s;
}
.faq-question{
    padding:25px;
    cursor:pointer;
    font-size:18px;
    color:#25D366;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:0.3s;
}
.faq-question:hover{
    background:#1f2937;
}
.faq-question:after{
    content:'+';
    font-size:28px;
    font-weight:bold;
}
.faq-item.active .faq-question:after{
    content:'−';
}
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
}
.faq-item.active .faq-answer{
    max-height:500px;
}
.faq-answer p{
    padding:0 25px 25px;
    color:#cbd5e1;
    line-height:1.8;
}

/* FOOTER */
footer{
    background:#070c18;
    padding:30px;
    text-align:center;
    color:#94a3b8;
    font-size:14px;
}

/* FLOAT WHATSAPP */
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:#fff;
    padding:15px 20px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 4px 15px rgba(37,211,102,0.4);
    z-index:999;
    transition:0.3s;
    display:flex;
    align-items:center;
    gap:8px;
}
.whatsapp-float:hover{
    transform:scale(1.05);
    box-shadow:0 6px 20px rgba(37,211,102,0.6);
}

/* RESPONSIVE */
@media(max-width:480px){
    section{
        padding:60px 15px;
    }
    h2{
        font-size:26px;
    }
    .btn{
        padding:12px 20px;
        font-size:14px;
    }
    .page-header h1{
        font-size:32px;
    }
    .stat-box h3{
        font-size:28px;
    }
    .whatsapp-float{
        bottom:15px;
        right:15px;
        padding:12px 16px;
        font-size:14px;
    }
}

/* ANIMATIONS */
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes slideIn{
    from{
        transform:translateX(-100%);
    }
    to{
        transform:translateX(0);
    }
}

/* UTILITY CLASSES */
.text-center{text-align:center}
.mt-20{margin-top:20px}
.mt-30{margin-top:30px}
.mb-20{margin-bottom:20px}
.mb-30{margin-bottom:30px}