@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #ffedd5;
    --secondary: #0f172a;
    --accent: #4f46e5;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Styles */
h1,
h2,
h3,
h4 {
    color: var(--secondary);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button,
.cta-btn {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(249, 115, 22, 0.45);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--secondary);
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

header.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    border-radius: 8px;
}

nav ul {
    display: flex;
    gap: 32px;
}

nav ul li a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: var(--primary);
}

/* Badge in Hero */
.badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-block;
}

.badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 160px 20px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('lasa banner1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    top: -200px;
    right: -100px;
    z-index: 0;
}

.hero>* {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    max-width: 900px;
}

.hero h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #cbd5e1;
    font-weight: 400;
    margin-bottom: 32px;
    max-width: 700px;
}

.hero p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 750px;
    margin-bottom: 40px;
}

.hero .buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Why Choose Us */
.why {
    padding: 100px 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #f1f5f9;
    z-index: 1;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), transparent 60%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(249, 115, 22, 0.2);
    border-color: var(--primary-light);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
}

.why-card-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: color 0.4s ease;
}

.why-card:hover .why-card-icon i {
    color: white;
}

.why-card h4 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.why-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 40px;
    background: var(--bg-white);
}

.m-v-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.m-v-box {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.m-v-box:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.m-v-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

/* About Section */
.about {
    padding: 100px 40px;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img .image-wrapper {
    position: relative;
    z-index: 1;
}

.about-img .image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.15;
}

.about-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    display: block;
    position: relative;
    z-index: 2;
    border: 8px solid white;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: white;
    padding: 24px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border: 1px solid #f1f5f9;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.experience-badge .num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.objectives-list {
    margin-top: 40px;
}

.objectives-list h3 {
    margin-bottom: 20px;
}

.objectives-list ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-weight: 500;
}

.objectives-list i {
    color: #22c55e;
}

/* Services */
.services {
    padding: 100px 40px;
    background-color: #f1f5f9;
}

.service-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-content {
    padding: 32px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.service-card h3 {
    margin-bottom: 16px;
}

.sub-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
}

.sub-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Partnership Sections */
.partnership {
    padding: 100px 40px;
    margin-bottom: 30px;
}

.secondary-bg {
    background: var(--secondary);
    color: white;
}

.secondary-bg h2,
.secondary-bg h4 {
    color: white;
}

.secondary-bg p {
    color: #94a3b8;
}

.partnership-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.partnership-inner.inverted {
    grid-template-columns: 1fr 1.2fr;
}

.partnership-box h2 {
    margin-bottom: 20px;
}

.dual-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.dual-col h4 {
    margin-bottom: 16px;
}

.dual-col ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

/* How it works */
.how-it-works {
    padding: 100px 40px;
    background: var(--bg-light);
}

.steps-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-card h4 {
    margin-bottom: 12px;
    color: var(--primary);
}

/* Video Section */
.video-section {
    padding: 100px 40px;
    background: var(--bg-white);
}

.video-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #1e293b;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.video-placeholder:hover {
    transform: scale(1.03);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.video-placeholder:hover .play-btn {
    background: var(--primary);
    color: white;
}

.video-placeholder h4 {
    color: white;
}

/* App Section */
/* APP SECTION */

.app-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #f5f7ff, #eef2ff);
}

.app-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT TEXT */

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #222;
}

.app-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

/* FEATURES */

.app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.app-features li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #444;
}

.app-features i {
    color: #28a745;
    margin-right: 10px;
}

/* BUTTON */

.app-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 17px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.app-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-2px);
}

/* RIGHT IMAGE */

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    width: 300px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */

@media(max-width:768px) {

    .app-container {
        flex-direction: column;
        text-align: center;
    }

    .app-image img {
        width: 220px;
    }

}





/* Testimonials */
.testimonials {
    padding: 100px 40px;
    background: var(--bg-light);
    overflow: hidden;
}

.testimonial-slider-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-track {
    width: 100%;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Hide scrollbar in Firefox */
    scroll-behavior: smooth;
    padding: 20px 0;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar in Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 calc(25% - 15px);
    scroll-snap-align: start;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testi-content {
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.testi-content p {
    font-size: 0.95rem;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.6;
}

.testi-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.testi-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.testi-name h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--secondary);
}

.testi-name span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.slider-btn {
    background: white;
    color: var(--primary);
    border: 1px solid #e2e8f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: absolute;
    z-index: 20;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* Mobile responsive adjustments for cards */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 calc(100%);
    }
}

/* Contact */
.contact {
    padding: 100px 40px;
    background: var(--bg-white);
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.contact-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #020617;
    color: #94a3b8;
    padding: 80px 40px 40px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 65px;
    margin-bottom: 24px;
}

.social-links a {
    color: white;
    font-size: 1.25rem;
    margin-right: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
}

.footer-col h4 {
    color: white;
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 968px) {

    .partnership-inner,
    .partnership-inner.inverted,
    .m-v-container,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .app-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .dual-col {
        grid-template-columns: 1fr;
    }
}