/* CREATIVE PARCHAR - GLOBAL STYLES 
    Brand Colors: Orange (#FF4D24), Purple (#7B3FE4), Yellow (#FFC107)
*/

:root {
    --brand-orange: #FF4D24;
    --brand-purple: #7B3FE4;
    --brand-yellow: #FFC107;
    --brand-dark: #121212;
    --brand-card: #1c1c1c;
    --text-gray: #b0b0b0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--brand-dark);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- NAVIGATION BAR --- */
.navbar {
    padding: 25px 0;
    transition: var(--transition);
    background: transparent !important;
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.95) !important;
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-link {
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    position: relative;
    margin: 0 15px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-orange) !important;
}

/* Hover Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--brand-orange);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* --- HERO BANNER --- */
.hero-section {
    padding: 200px 0 120px;
    background: radial-gradient(circle at top right, rgba(123, 63, 228, 0.15), transparent),
                radial-gradient(circle at bottom left, rgba(255, 77, 36, 0.05), transparent);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- BUTTONS --- */
.know-more-btn {
    background: var(--brand-purple);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 20px rgba(123, 63, 228, 0.2);
}

.know-more-btn:hover {
    background: var(--brand-orange);
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 15px 30px rgba(255, 77, 36, 0.3);
}

/* --- SERVICES REEL (OUR EXPERTISE) --- */
.expertise-header {
    margin-bottom: 50px;
}

.reel-container {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    background: #0d0d0d;
}

.reel-track {
    display: flex;
    width: max-content;
    animation: scrollReel 40s linear infinite;
}

@keyframes scrollReel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.service-card {
    width: 320px;
    background: var(--brand-card);
    padding: 50px 40px;
    margin-right: 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    border-color: var(--brand-purple);
    background: #222;
    transform: translateY(-10px);
}

.service-card h4 {
    color: var(--brand-yellow);
    font-weight: 700;
    margin-top: 20px;
}

/* --- PORTFOLIO --- */
.project-card {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    height: 400px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.95) 10%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: 0.4s;
}

.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover .project-img { transform: scale(1.1); opacity: 0.6; }

/* --- TESTIMONIALS (Centered & Branded) --- */
.testimonial-section {
    background: radial-gradient(circle at center, #1a1a1a, #0d0d0d);
    padding: 120px 0;
}

.slider-wrapper {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-slide {
    display: none;
    width: 100%;
    max-width: 850px;
}

.testimonial-slide.active {
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.quote-mark {
    font-size: 100px;
    color: var(--brand-orange);
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.4;
    font-family: 'Georgia', serif;
}

.testimonial-text {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 30px;
    font-style: italic;
}

.client-name {
    color: var(--brand-yellow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 8px;
    transition: 0.3s;
}

.dot.active {
    background: var(--brand-orange);
    width: 30px;
    border-radius: 10px;
}

/* --- FOOTER (4 COLUMNS) --- */
.main-footer {
    background: #080808;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    height: 50px;
    margin-bottom: 30px;
}

.footer-title {
    color: white;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--brand-orange);
    transform: translateX(5px);
}

.newsletter-box {
    position: relative;
    display: flex;
}

.newsletter-input {
    background: #161616 !important;
    border: 1px solid #333 !important;
    color: white !important;
    border-radius: 50px 0 0 50px !important;
    padding: 12px 20px !important;
}

.newsletter-btn {
    border-radius: 0 50px 50px 0 !important;
    background: var(--brand-orange) !important;
    border: none !important;
    color: white !important;
    font-weight: 700;
    padding: 0 25px !important;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    .hero-section { padding-top: 150px; }
    .project-card { height: 300px; }
    .main-footer { text-align: center; }
    .newsletter-box { justify-content: center; margin-top: 20px; }
}



/* --- ABOUT PAGE SPECIALS --- */
.vision-box {
    background: linear-gradient(145deg, #1a1a1a, #121212);
    border: 1px solid rgba(123, 63, 228, 0.2);
    border-radius: 40px;
    padding: 80px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.feature-card {
    background: #1c1c1c;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    border-top: 5px solid var(--brand-orange);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #252525;
    box-shadow: 0 10px 30px rgba(255, 77, 36, 0.1);
}






/* --- SERVICES PAGE MIDDLE CONTENT (Bento Grid) --- */

/* Hero text adjustment for Services */
.services-hero-text {
    max-width: 800px;
    margin: 0 auto;
}

/* The Grid Container */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 40px 0;
}

/* Individual Service Card (Bento Box) */
.service-bento-card {
    background: var(--brand-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

/* Distinct Top Border Accents for different services */
.service-bento-card.accent-orange { border-top: 5px solid var(--brand-orange); }
.service-bento-card.accent-purple { border-top: 5px solid var(--brand-purple); }
.service-bento-card.accent-yellow { border-top: 5px solid var(--brand-yellow); }

.service-bento-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: #222222;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Icon Styling */
.service-icon-wrap {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Typography */
.service-bento-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-bento-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* SEO/GEO Badge (Subtle tag for ranking) */
.service-geo-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.2);
    font-weight: 700;
}

/* CTA Section at bottom of services */
.cta-banner-wrap {
    background: linear-gradient(135deg, #1a1a1a 0%, #080808 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 80px 40px;
    margin-top: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.cta-banner-wrap h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 30px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .service-bento-card {
        min-height: auto;
        padding: 30px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}



/* ============================================================
   CONTACT PAGE - MODERN ANIMATED CONTENT
   ============================================================ */

/* 1. Background "Lava Lamp" Blobs */
.contact-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--brand-purple) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
    animation: moveBlobs 20s infinite alternate ease-in-out;
}

.blob-orange {
    background: radial-gradient(circle, var(--brand-orange) 0%, transparent 70%);
    width: 400px;
    height: 400px;
    right: -10%;
    top: 20%;
    animation-delay: -5s;
}

@keyframes moveBlobs {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 100px) scale(1.2); }
    100% { transform: translate(-50px, 200px) scale(0.9); }
}

/* 2. Contact Info Cards (Pathankot & Gurgaon) */
.contact-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 35px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

.contact-card-v2:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--brand-purple);
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(123, 63, 228, 0.2);
}

.icon-box-v2 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-purple), #2a1b4a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* 3. Modern Glassmorphic Form */
.contact-form-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.custom-input-group {
    position: relative;
    margin-bottom: 30px;
}

.custom-input-group input, 
.custom-input-group textarea,
.custom-input-group select {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 18px !important;
    padding: 18px 25px !important;
    transition: all 0.3s ease;
}

.custom-input-group input:focus, 
.custom-input-group textarea:focus {
    border-color: var(--brand-orange) !important;
    background: rgba(0, 0, 0, 0.5) !important;
    box-shadow: 0 0 20px rgba(255, 77, 36, 0.2) !important;
    outline: none;
}

/* 4. Animated Submit Button */
.btn-submit-glow {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    border: none;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-purple));
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-submit-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 77, 36, 0.4);
}

.btn-submit-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-submit-glow:hover::before {
    left: 100%;
}

/* 5. Section Headers for Contact */
.contact-header-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .contact-form-glass {
        padding: 40px 30px;
    }
    .blob {
        width: 300px;
        height: 300px;
    }
}