/* --- GLOBAL STYLES --- */
:root {
    --primary-blue: #2563eb;
    --primary-pink: #1e90ff;
    --whatsapp-green: #25D366;
    --dark-text: #0f172a;
    --light-text: #64748b;
    --bg-sky: #f0f9ff; 
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Manrope', sans-serif; }

body { 
    background-color: var(--bg-sky); 
    color: var(--dark-text); 
    overflow-x: hidden; 
    user-select: none; /* Right Click/Select Disabled */
    -webkit-user-select: none;
}

/* --- HEADER CSS --- */
header {
    padding: 15px 0; position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
nav {
    max-width: 1200px; margin: auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--dark-text); text-decoration: none; }
.logo-img { height: 47px; width: auto; }
.logo span { color: var(--primary-pink); }

.nav-links { display: none; gap: 30px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark-text); font-weight: 600; font-size: 15px; transition: 0.3s; }
.nav-links a:hover { color: var(--primary-blue); }
.header-btn { background: var(--primary-blue); color: white; padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 14px; }
.menu-btn { font-size: 24px; cursor: pointer; color: #1e293b; display: block; }

/* --- HERO SECTION --- */
.hero {
    max-width: 1200px; margin: 0 auto; padding: 60px 20px;
    text-align: center; display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.hero-text { flex: 1; width: 100%; }
.hero-img { flex: 1; width: 100%; max-width: 600px; }
.hero-img img { width: 100%; height: auto; animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

.hero h1 { 
    font-size: 2.5rem; line-height: 1.2; font-weight: 800; margin-bottom: 15px;
    background: linear-gradient(to right, #0f172a 20%, #2563eb 40%, #ff2d55 60%, #0f172a 80%);
    background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: textShine 4s linear infinite;
}
@keyframes textShine { to { background-position: 200% center; } }

.pill-badge {
    background: #e0f2fe; color: var(--primary-blue); padding: 6px 20px; border-radius: 50px; font-weight: 700; font-size: 13px;
    margin-bottom: 20px; border: 1px solid #bae6fd; display: inline-block;
}
.hero p { font-size: 1rem; color: var(--light-text); margin-bottom: 25px; line-height: 1.6; }

.btn-pink {
    background-color: var(--primary-pink); color: white; padding: 14px 35px; border-radius: 50px; font-weight: 700; text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 45, 85, 0.3); transition: 0.3s; cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
    animation: pulse-pink 2s infinite;
}
.btn-pink:hover { transform: translateY(-3px); animation: none; }
@keyframes pulse-pink { 0% { box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(255, 45, 85, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 45, 85, 0); } }

.contact-row { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 15px; }
.contact-row i { color: var(--primary-blue); font-size: 22px; background: #e0f2fe; padding: 10px; border-radius: 50%; }

/* --- SECTIONS COMMON --- */
.section-padding { padding: 80px 20px; }
.bg-white { background: #fff; }
.bg-alt { background: #e0f2fe; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; color: #1e293b; }

/* --- SERVICES --- */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1200px; margin: auto; }
.service-card { background: white; padding: 30px 20px; border-radius: 20px; text-align: center; box-shadow: var(--card-shadow); transition: 0.3s; }
.service-card:hover { transform: translateY(-5px); }
.icon-circle { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 28px; }
.web-icon { color: #f59e0b; background: #fffbeb; } .app-icon { color: #0ea5e9; background: #f0f9ff; }
.soft-icon { color: #06b6d4; background: #ecfeff; } .mar-icon { color: #ef4444; background: #fef2f2; }
.grp-icon { color: #8b5cf6; background: #f5f3ff; } .wp-icon  { color: #21759b; background: #f0f9ff; }

/* --- STATS SECTION --- */
.stats-section { padding: 60px 20px; background: #f8fafc; }
.stats-container { max-width: 1200px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.stat-card { background: #fff; padding: 30px; border-radius: 20px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.06); transition: 0.3s; }
.stat-card:hover { transform: translateY(-10px); }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--primary-blue); }

/* --- SLIDERS --- */
.slider-wrapper { overflow: hidden; white-space: nowrap; padding: 20px 0; position: relative; }
.slider-track { display: inline-block; animation: scroll 30s linear infinite; }
.slider-wrapper:hover .slider-track { animation-play-state: paused; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.partner-section { padding: 40px 0; background: white; border-bottom: 1px solid #e2e8f0; }
.partner-item { display: inline-flex; align-items: center; justify-content: center; width: 150px; height: 80px; margin: 0 20px; filter: grayscale(100%); opacity: 0.6; transition: 0.3s; }
.partner-item:hover { filter: grayscale(0); opacity: 1; }
.partner-item img { max-width: 100%; max-height: 60px; }

/* --- ABOUT SECTION (NEW DESIGN) --- */
.about-section { padding: 100px 20px; background: #e0f2fe; position: relative; overflow: hidden; }
.about-container { display: flex; flex-wrap: wrap; align-items: center; gap: 60px; max-width: 1200px; margin: auto; }
.about-img-wrapper { flex: 1; min-width: 350px; position: relative; }
.about-main-img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); position: relative; z-index: 2; }
.exp-badge {
    position: absolute; bottom: -30px; left: -30px; z-index: 3;
    background: var(--primary-blue); color: white; padding: 25px;
    border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    border: 5px solid white; animation: float 4s ease-in-out infinite;
}
.exp-badge h3 { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.exp-badge span { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; }
.about-text { flex: 1; min-width: 350px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
.af-item { display: flex; align-items: center; gap: 15px; }
.af-icon { width: 50px; height: 50px; background: #fff1f2; color: var(--primary-pink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.af-text h4 { font-size: 1.1rem; font-weight: 700; }
.af-text p { font-size: 0.85rem; color: #64748b; }
.btn-blue { background: #1e293b; color: white; padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; transition: 0.3s; }
.btn-blue:hover { transform: translateY(-3px); background: var(--primary-blue); box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3); }

/* --- PORTFOLIO & TEAM --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1200px; margin: auto; }
.portfolio-item { position: relative; border-radius: 15px; overflow: hidden; height: 280px; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: white; padding: 20px; transform: translateY(100%); transition: 0.3s; }
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }

.team-card, .testi-card { display: inline-block; width: 300px; margin: 0 15px; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; vertical-align: top; white-space: normal; }
.testi-card { width: 340px; padding: 30px; text-align: left; border: 1px solid #e2e8f0; }
.team-img-box { height: 260px; overflow: hidden; background: #cbd5e1; }
.team-img-box img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 20px; }
.client-box { display: flex; align-items: center; gap: 15px; margin-top: 15px; }
.client-box img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.video-card { display: inline-block; width: 320px; margin: 0 15px; background: #000; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.1); vertical-align: top; }
.video-card iframe { width: 100%; height: 200px; border: none; display: block; }

/* --- FOOTER CSS --- */
footer { background: #0f172a; color: #cbd5e1; padding: 70px 20px 20px; }
.footer-grid { max-width: 1200px; margin: auto; display: grid; grid-template-columns: 1fr; gap: 30px; text-align: left; }
.footer-col h3 { color: white; font-size: 1.3rem; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { text-decoration: none; color: #cbd5e1; transition: 0.3s; }
.footer-links a:hover { color: var(--primary-pink); padding-left: 5px; }
.footer-bottom { border-top: 1px solid #334155; padding-top: 20px; text-align: center; font-size: 14px; margin-top: 50px;}

.floating-buttons { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 999; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); text-decoration: none; animation: pulse-pink 2s infinite; }
.whatsapp-btn { background-color: var(--whatsapp-green); } .call-btn { background-color: #1d4ed8; }

@media (min-width: 1024px) {
    .nav-links { display: flex; } .menu-btn { display: none; }
    .hero { flex-direction: row; justify-content: space-between; text-align: left; padding: 80px 20px; }
    .contact-row { justify-content: flex-start; } .hero h1 { font-size: 3.5rem; }
    .service-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .stats-container { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .exp-badge { left: -30px; bottom: -30px; }
}
@media (max-width: 768px) {
    .exp-badge { left: 0; bottom: -20px; padding: 15px; } .exp-badge h3 { font-size: 1.8rem; }
    .about-features { grid-template-columns: 1fr; }
}


/* --- MOBILE SIDE MENU (DRAWER STYLE) --- */
@media (max-width: 1024px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* ऊपर से शुरू हो */
        position: fixed;
        top: 0;
        right: -300px; /* स्क्रीन के बाहर छुपा हुआ */
        width: 280px;  /* मेनू की चौड़ाई */
        height: 100vh; /* पूरी ऊंचाई */
        background: #ffffff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 80px 20px 40px; /* ऊपर जगह छोड़ी ताकि क्रॉस बटन न दबे */
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* स्मूथ स्लाइडिंग */
        z-index: 9999;
    }

    /* जब एक्टिव हो तो स्क्रीन पर आ जाए */
    .nav-links.active {
        right: 0;
    }

    /* लिंक्स की स्टाइलिंग */
    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 10px;
    }
    
    .nav-links a {
        font-size: 18px;
        color: #334155;
        display: block;
    }

    /* बटन की स्टाइलिंग */
    .header-btn {
        margin-top: 20px;
        display: block;
        text-align: center;
        width: 100%;
    }

    /* MENU BUTTON (HAMBURGER) */
    .menu-btn {
        display: block;
        z-index: 10000; /* मेनू के भी ऊपर रहे */
        position: relative;
    }
    
    /* ओवेरले (काला धुंधला बैकग्राउंड) */
    .overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        display: none; /* पहले छुपा रहे */
        opacity: 0;
        transition: 0.3s;
    }
    .overlay.active { display: block; opacity: 1; }
}


/* --- PAGE HEADER (Banner) --- */
.page-header {
    background: #1e293b; /* Dark Blue */
    padding: 80px 20px;
    text-align: center;
    color: white;
}
.header-content h1 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }
.header-content p { color: #cbd5e1; font-size: 1.1rem; }
.header-content a { color: var(--primary-pink); text-decoration: none; font-weight: 600; }

/* --- CONTACT SECTION --- */
.contact-section { padding: 80px 20px; background: white; }

.contact-container {
    max-width: 1100px; margin: auto;
    display: flex; flex-wrap: wrap; 
    gap: 0; 
    background: #fff; border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden; border: 1px solid #f1f5f9;
}

/* Left Side */
.contact-info { flex: 1; min-width: 300px; background: #1e293b; color: white; padding: 50px; }
.contact-info h3 { font-size: 2rem; margin-bottom: 20px; }
.contact-info p { color: #cbd5e1; margin-bottom: 30px; }
.info-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.info-item i { width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-pink); }

/* Right Side (Form) */
.contact-form { flex: 1.5; min-width: 300px; padding: 50px; background: white; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #334155; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 15px; border: 1px solid #e2e8f0; border-radius: 10px;
    font-size: 15px; outline: none; background: #f8fafc;
}
.form-group input:focus { border-color: var(--primary-blue); background: white; }
.submit-btn {
    width: 100%; background: var(--primary-blue); color: white; padding: 15px;
    border: none; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.submit-btn:hover { background: #1d4ed8; transform: translateY(-3px); }

/* Responsive */
@media (max-width: 768px) {
    .contact-container { flex-direction: column; }
    .contact-info, .contact-form { padding: 30px; }
}


/* --- SERVICES PAGE STYLES --- */
.services-list-section { padding: 80px 20px; background: white; }
.container { max-width: 1100px; margin: auto; }

.service-row {
    display: flex; align-items: center; gap: 50px; margin-bottom: 80px;
}
.service-row.reverse {
    flex-direction: row-reverse; /* इमेज को दाईं तरफ करने के लिए */
}

.srv-img { flex: 1; }
.srv-img img {
    width: 100%; border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.srv-img img:hover { transform: scale(1.02); }

.srv-text { flex: 1; }
.srv-text h3 { font-size: 2rem; margin: 15px 0; color: #1e293b; }
.srv-text p { color: #64748b; margin-bottom: 20px; line-height: 1.6; }

.btn-arrow {
    color: var(--primary-blue); font-weight: 700; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
    transition: 0.3s;
}
.btn-arrow:hover { gap: 12px; color: #1d4ed8; }

/* CTA Section (Bottom Banner) */
.cta-section {
    background: #1e293b; padding: 60px 20px; text-align: center; color: white;
}
.cta-section h2 { margin-bottom: 10px; font-size: 2.2rem; }
.cta-section p { margin-bottom: 30px; color: #cbd5e1; }

/* Responsive */
@media (max-width: 768px) {
    .service-row, .service-row.reverse { flex-direction: column; text-align: left; }
    .srv-img { margin-bottom: 20px; }
}



/* --- ABOUT PAGE STYLES --- */

/* Intro Section */
.about-row { display: flex; align-items: center; gap: 60px; }
.about-img-col { flex: 1; position: relative; }
.about-img-col img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.exp-box {
    position: absolute; bottom: -30px; right: -30px;
    background: var(--primary-blue); color: white; padding: 20px 30px;
    border-radius: 20px; text-align: center; border: 5px solid white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}
.exp-box h3 { font-size: 2.5rem; font-weight: 800; line-height: 1; }

.about-text-col { flex: 1; }
.about-text-col h2 { font-size: 2.2rem; margin: 15px 0; color: #1e293b; }
.about-text-col p { color: #64748b; margin-bottom: 20px; line-height: 1.6; }

/* Mission Vision Cards */
.mission-vision { display: flex; gap: 20px; margin-top: 30px; }
.mv-box {
    background: #f8fafc; padding: 25px; border-radius: 15px; border: 1px solid #e2e8f0;
}
.mv-box i { font-size: 24px; color: var(--primary-pink); margin-bottom: 10px; }
.mv-box h4 { font-size: 1.1rem; margin-bottom: 5px; color: #1e293b; }
.mv-box p { font-size: 0.9rem; margin-bottom: 0; }

/* Stats Grid */
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center;
}
.stat-item { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.stat-item i { font-size: 40px; color: var(--primary-blue); margin-bottom: 15px; }
.stat-item h3 { font-size: 2rem; font-weight: 800; color: #1e293b; }

/* Team Grid */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-member { text-align: center; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.tm-img { height: 300px; overflow: hidden; }
.tm-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.team-member:hover .tm-img img { transform: scale(1.1); }
.tm-info { padding: 20px; }
.tm-info h3 { font-size: 1.2rem; color: #1e293b; }
.tm-info span { color: var(--primary-pink); font-size: 0.9rem; font-weight: 600; }

/* Responsive */
@media (max-width: 768px) {
    .about-row { flex-direction: column; }
    .exp-box { right: 0; bottom: -20px; }
    .mission-vision { flex-direction: column; }
    .stats-grid, .team-grid { grid-template-columns: 1fr; }
}