/*=================== Home Page ===================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* --- Global Styles & Variables --- */
:root {
    --dark-charcoal: #1a1a1a;
    --darker-charcoal: #111111;
    --card-bg: #2b2b2b;
    --lime-green: #32ff7e;
    --white-text: #f5f5f5;
    --grey-text: #a9a9a9;
    --black: #0a0a0a;
    --white: #ffffff;
    --neon-lime: #a2ff00;
    --grey: #1a1a1a;
    --text-grey: #cccccc;
    --font-primary: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--black);
    color: var(--white-text);
    line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; width: 90%; }
.gap-0{gap: 0 !important;}
h1, h2, h3 { font-family:var(--font-primary); font-weight: 700; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; color: var(--lime-green); }
section { padding: 5rem 0; border-bottom: 1px solid #333; }
.btn { display: inline-block; padding: 12px 30px; background-color: var(--lime-green); color: var(--dark-charcoal); text-decoration: none; font-weight: 700; border-radius: 5px; transition: all 0.3s ease; border: none; cursor: pointer; max-width: max-content; font-size: 15px;}
.btn:hover { transform: translateY(-5px); background-color: #ffffff; }
header .btn-contact{color: #0a0a0a; background-color: #a2ff00; border: 2px solid #a2ff00; padding: 8px 16px; border-radius: 5px; text-decoration: none; font-weight: 700; transition: all 0.3s ease;}

/* --- Header --- */
#main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.5rem 0; background: transparent; transition: background-color 0.4s ease; }
#main-header.scrolled { background-color: rgba(26, 26, 26, 0.9); backdrop-filter: blur(5px); }
#main-header .container { display: flex; justify-content: space-between; align-items: center;width: 90%; }
.logo { font-family:var(--font-primary); font-size: 1.5rem; color: var(--white-text); text-decoration: none;  font-weight: 700;}
.logo-icon { color: var(--lime-green); }
nav ul { list-style: none; display: flex; align-items: center; }
nav ul li { margin-left: 2rem; }
nav ul li.dropdown > a{padding-bottom: 14px;}
.responsive_nav ul li .arrow{
    position: absolute;
    font-size: 25px;
    width: 40px;
    height: 41px;
    right: 0;
    display: flex;
    top: 0;
    align-items: center;
    justify-content: center;
    z-index: 9;
    background: #32ff7e;
    transition: all 200ms ease-in-out;
}
.responsive_nav ul li .arrow.active {
    transform: rotate(90deg);
}
.responsive_nav  .dropdown-content.active{display: block !important; position: static !important;}
nav ul li a { color: var(--white-text); text-decoration: none; font-weight: 600; padding-bottom: 5px; border-bottom: 2px solid transparent; transition: color 0.3s, border-color 0.3s; }
nav ul li a:hover { color: var(--lime-green); border-color: var(--lime-green); }
.btn-contact { background: var(--lime-green); color: var(--dark-charcoal); padding: 8px 18px; border-radius: 5px; }
.btn-contact:hover { color: var(--dark-charcoal); border-color: transparent; background: #ffffff; }

/* --- Animations --- */
.fade-in { animation: fadeIn 1.5s 0.5s ease-in-out forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; } }
.scroll-animate { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.scroll-animate.visible { opacity: 1; transform: translateY(0); }

/* --- 1. Hero Section --- */
#hero { height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center; position: relative; padding: 0; }
#hero-video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: 100%; z-index: -1; filter: brightness(0.4); object-fit: cover; }
.hero-content h1 { font-size: 4.5rem; margin-bottom: 1rem; }
.hero-content p { max-width: 600px; margin: 0 auto 2rem; }

/* --- 2. About Us --- */
.about-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
.about-visual img { width: 100%; border-radius: 8px; }
.about-text h2 { text-align: left; }

/* --- 3. Services --- */
.services-grid {display: flex;gap: 2rem; justify-content: center;flex-wrap: wrap;}
.service-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: calc(100% / 3 - 22px);
}
.service-card:hover { transform: translateY(-10px); background-color: var(--lime-green); color: var(--dark-charcoal); }
.service-card i { font-size: 2.5rem; margin-bottom: 1rem; color: var(--lime-green); transition: color 0.3s ease; }
.service-card:hover i { color: var(--dark-charcoal); }

/* --- 4. Portfolio --- */
#portfolio-filters { text-align: center; margin-bottom: 2rem; }
.filter-btn { background: none; border: 1px solid var(--grey-text); color: var(--grey-text); padding: 8px 20px; margin: 0 5px; border-radius: 25px; cursor: pointer; transition: all 0.3s ease;font-weight: 600;font-size: 12px; }
.filter-btn:hover { background-color: var(--grey-text); color: var(--dark-charcoal); }
.filter-btn.active { background-color: var(--lime-green); border-color: var(--lime-green); color: var(--dark-charcoal); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.portfolio-item { border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 16/9; text-align: center; background: #2b2b2b;}
.portfolio-item video {max-width: 100%; height: 100%;}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-item:hover img { transform: scale(1.1); }

/* --- 5. Why Choose Us --- */
#why-us { background-color: var(--darker-charcoal); }
.advantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; text-align: center; }
.advantage-item i { font-size: 3rem; color: var(--lime-green); margin-bottom: 1rem; }
.advantage-item h3 { margin-bottom: 0.5rem; }
.advantage-item p { color: var(--grey-text); }

/* --- 6. Testimonials --- */
section#testimonials{background: url('image/testimonial.png') no-repeat center; position: relative; background-size: cover; background-attachment: fixed;}
section#testimonials *{position: relative; z-index: 2;}
section#testimonials::after{content: ''; background: #00000070; position: absolute; inset: 0; z-index: 1; backdrop-filter: blur(3px);}
.testimonial-slider { max-width: 600px; margin: 0 auto; text-align: center; position: relative; min-height: 150px; }
.testimonial-card { display: none; opacity: 0; transition: opacity 0.5s ease-in-out; padding: 40px 35px; background: #fff7ec19;border-radius: 15px;position: relative;}
.testimonial-card.active {display:block; opacity: 1; }
.testimonial-card p { font-size: 1.2rem; font-style: italic; margin-bottom: 1rem; }
.testimonial-card h4 { color: var(--lime-green); font-weight: 600; }
.testimonial-card::after,
.testimonial-card::before {
    content: '';
    background: url('image/quote.png') center no-repeat;
    position: absolute;
    z-index: 1;
    height: 60px;
    width: 60px;
    background-size: 80px;
    border-radius: 50%;
    /* box-shadow: 0 0 6px #000; */
    background-color: #e7e7e7;
    outline: 4px solid #ffffff30;
    filter: hue-rotate(300deg);
    transform: rotate(180deg);
}

.testimonial-card::after {
    right: 50px;
    bottom: -30px;
    filter: hue-rotate(260deg);
    transform: none;
}

.testimonial-card::before {
    top: -30px;
    left: 50px;
    transform: rotate(180deg);
  }

/* --- 7. Mid-page CTA --- */
#mid-cta h3 { font-size: 2rem; margin-bottom: 1.5rem; }

/* --- 8. Pricing --- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; align-items: center; }
.pricing-card {background: var(--card-bg);padding: 2.5rem 2rem;border-radius: 8px;text-align: center;border: 2px solid transparent;transition: all 0.3s ease;min-height: 100%;}
.pricing-card:hover {border-color: var(--lime-green);transform: scale(1.05) translateY(-15px);box-shadow: 0px 0px 20px #32ff7e75;}
.pricing-card.popular {border-color: var(--lime-green);}
.popular-tag {background: #a2ff00bf;color: var(--dark-charcoal);font-weight: 700;padding: 8px 10px;font-size: 0.8rem;border-radius: 5px 0 5px 0;}
.pricing-card h3 { font-size: 1.8rem; margin: 1rem 0; }
.pricing-card ul { list-style: none; margin-bottom: 2rem; }
.pricing-card ul li { margin-bottom: 0.5rem; }

/* --- 9. Blog --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.blog-post img { width: 100%; border-radius: 8px; margin-bottom: 1rem; aspect-ratio: 16/10; object-fit: cover; }
.blog-post h3 { margin-bottom: 0.5rem; }
.blog-post a { color: var(--lime-green); text-decoration: none; font-weight: 600; }

/* --- 10. Contact --- */
.contact-container { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.contact-form h2 { text-align: left; }
.contact-form form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 1rem; background: #2b2b2b; border: 1px solid #444; border-radius: 5px; color: var(--white-text); font-family: 'Open Sans', sans-serif; font-size: 1rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--lime-green); }
.contact-info a { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; text-decoration: none; color: var(--white-text);
 }
.contact-info h3 {font-size: 30px; color: #a2ff00; margin-bottom: 20px;}
.contact-info i { color: var(--lime-green); font-size: 20px;}
.contact-info .social-links {
    display: flex;
    margin-top: 15px;
}
.social-links a { color: var(--white-text); font-size: 1.5rem; margin-right: 1rem; transition: color 0.3s ease; }
.social-links a:hover { color: var(--lime-green); }

/* --- 11. Footer --- */
footer { background: var(--darker-charcoal); padding: 2rem 0; border: none; }
.footer-container { display: flex; justify-content: space-between; align-items: center; }
.footer-links a { color: var(--grey-text); margin-left: 1.5rem; text-decoration: none; }
.footer-links a:hover { color: var(--white-text); }
footer p { color: var(--grey-text); }

/*=================== Home Page ===================*/
/*=================== About Page ===================*/

/* ==========================================================================
   STANDALONE STYLESHEET FOR LIMELIGHT ABOUT US PAGE
   ========================================================================== */

/* --- 1. Global Styles & Variables --- */

/* --- 2. Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-lime);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-lime);
}

.nav-link.active-page {
    color: var(--neon-lime);
}

.nav-cta {
    border: 2px solid var(--white);
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-cta:hover {
    background-color: var(--neon-lime);
    color: var(--black);
    border-color: var(--neon-lime);
}

.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--white); transition: all 0.3s ease-in-out; }

/* --- 3. Page Header --- */
.page-header {
    padding: 140px 0 80px 0;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://placehold.co/1920x500/000000/FFFFFF?text=Team') no-repeat center center/cover;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* --- General Section Styling --- */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: var(--white);
}

.dark-bg {
    background-color: #000;
}

/* --- 4. Story Section (Timeline) --- */
.story-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--neon-lime);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -14px;
    background-color: var(--black);
    border: 4px solid var(--neon-lime);
    top: 15px;
    border-radius: 50%;
    z-index: 114;
}

    .timeline-item:nth-child(even)::after {
        left: -15px;
    }

.timeline-content {
    padding: 20px 30px;
    background-color: var(--grey);
    position: relative;
    border-radius: 6px;
}

.timeline-content h3 {
    color: var(--neon-lime);
    margin-bottom: 0.5rem;
}

/* --- 5. Mission & Vision Section --- */
.mission-vision-section {
    padding: 80px 0;
}

.mission-vision-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mission-card, .vision-card {
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 10px;
    text-align: center;
}

.mission-card {
    border-left: 5px solid var(--neon-lime);
}

.vision-card {
    border-right: 5px solid var(--neon-lime);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

/* --- 6. Testimonials Section --- */
.testimonials-section {
    padding: 80px 0;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.testimonial-card {
    background-color: #1a1a1a8f ;
    padding: 3rem 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--neon-lime);
}
.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 40px;
}
.quote::before {
    content: '“';
    font-size: 4rem;
    color: var(--neon-lime);
    position: absolute;
    left: -10px;
    top: -10px;
    opacity: 0.5;
}
.client-info {
    text-align: right;
}
.client-info h4 {
    color: var(--white);
    margin: 0;
}
.client-info span {
    color: var(--text-grey);
}

/* --- 7. Team Section --- */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.team-member img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    height: 100%;
    object-fit: cover;
}

.team-member:hover img {
    transform: scale(1.1);
}

.member-info {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0), #00000050);
    padding: 1rem 0.8rem 1rem;
    text-align: center;
    height: 110px;
    backdrop-filter: blur(2px);
}

.member-info h4 {
    font-size: 1.3rem;
    color: var(--white);
}

.member-info p {
    font-size: 0.9rem;
    color: var(--neon-lime);
}

/* --- 8. Associate Brands Section --- */
.partners-section {
    padding: 80px 0;
}
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}
.partner-logo img {
    max-width: 150px;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}
.partner-logo img:hover {
    filter: grayscale(0%) brightness(1);
}

/* --- 9. Footer --- */
.main-footer {
    background-color: #000;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #222;
}

.main-footer p {
    color: var(--text-grey);
}
#mid-cta {
    background: url('image/newsletter-background.png') no-repeat center center/cover;
    text-align: center;
    transform: none;
    background-attachment: fixed;
    position: relative;
}
#mid-cta *{
    position: relative;
    z-index: 2;
}
#mid-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0));
}

#mid-cta h3 { font-size: 2rem; margin-bottom: 1.5rem; }

.btn:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
}

.Newsletter{padding: 5rem 0;}
/* --- 10. Responsive Design --- */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }
    .nav-menu.active { left: 0; }
    .nav-item { padding: 1.5rem 0; border-bottom: 1px solid var(--grey); }
    .nav-cta { border: none; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .timeline::after { left: 10px; }
    .timeline-item { width: 100%; padding-left: 30px; padding-right: 0; }
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-item::after, .timeline-item:nth-child(even)::after { left: -4px; }
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .mission-vision-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}


/*=================== About Page ===================*/
/*=================== Service Page ===================*/

/* ==========================================================================
   STANDALONE STYLESHEET FOR LIMELIGHT SERVICES PAGE
   This file contains all necessary styles. No other CSS file is needed.
   ========================================================================== */


/* --- 2. Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}


.nav-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-lime);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-lime);
}

.nav-link.active-page {
    color: var(--neon-lime);
}

.nav-cta {
    border: 2px solid var(--neon-lime);
    padding: 8px 16px;
    border-radius: 5px;
    color: var(--neon-lime);
}

.nav-cta:hover {
    background-color: var(--neon-lime);
    color: var(--black);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
}

/* --- 3. General Page Elements & Buttons --- */

.btn-primary {
    background-color: var(--neon-lime);
    color: var(--black);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--neon-lime);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* --- 4. Services Page Specific Sections --- */

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-section {
    padding: 80px 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* === Keyframes for Animation === */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 25px rgba(162, 255, 0, 0.2); }
    50% { box-shadow: 0 0 45px rgba(162, 255, 0, 0.4); }
    100% { box-shadow: 0 0 25px rgba(162, 255, 0, 0.2); }
}

@keyframes buttonThrob {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes animated-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* === SECTION 1: VIDEO PRODUCTION (ENHANCED HIGHLIGHT) === */
.service-detail-section:first-of-type {
    transform: scale(1.03); 
}

.service-detail-section:first-of-type .container {
    position: relative;
    background: linear-gradient(145deg, #222, #111);
    border-radius: 15px;
    padding: 2.5rem;
    z-index: 1;
    overflow: hidden;
    animation: pulseGlow 4s infinite ease-in-out;
}

.service-detail-section:first-of-type .container::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(60deg, #a2ff00, #ffffff, #a2ff00, #ffffff);
    background-size: 300% 300%;
    animation: animated-gradient 3s linear infinite;
    z-index: -1;
    border-radius: 15px;
}

.service-detail-section:first-of-type .btn-primary {
    animation: buttonThrob 2.5s infinite ease-in-out;
}

/* Base styles for all service sections */
.service-detail-section.dark-bg {
    background-color: #000;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #333;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neon-lime);
    text-align: left;
}

.service-description p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
}
.btn-primary.serviceBtn {
    border: 2px solid var(--neon-lime);
}
.btn-primary.serviceBtn:hover {
    background-color: var(--white);
    color: var(--black);
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.service-list li::before {
    content: '✔';
    color: var(--neon-lime);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* --- 5. Video Portfolio Section --- */
.video-portfolio-section {
    padding: 80px 0;
}

.video-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.video-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.video-item:hover img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
    opacity: 1;
    transition: background 0.3s ease;
}

.video-item:hover .video-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.video-overlay h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
    transform: translateY(20px);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-item:hover .video-overlay h3 {
    transform: translateY(0);
}

.play-icon {
    font-size: 3rem;
    color: var(--white);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(0,0,0,0.7);
}

.video-item:hover .play-icon {
    opacity: 1;
    transform: scale(1);
}

/* --- 6. Footer --- */
.main-footer {
    background-color: #000;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #222;
}

.main-footer p {
    color: var(--text-grey);
    margin-bottom: 0.5rem;
}


/* --- 7. Responsive Design --- */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px; /* Adjust based on header height */
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--grey);
    }
    
    .nav-cta {
        border: none;
    }
    .nav-cta:hover {
        background-color: transparent;
        color: var(--neon-lime);
    }
    
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (min-width: 768px) {
    .page-title {
        font-size: 4rem;
    }

    .service-layout {
        grid-template-columns: 1fr 1fr;
    }

    .service-layout.reverse .service-image {
        order: 2;
    }
    .service-layout.reverse .service-description {
        order: 1;
    }
}

/*=================== Service Page ===================*/
/* ==========================================================================
   STANDALONE STYLESHEET FOR DIGITAL MARKETING PAGE
   ========================================================================== */

/* --- 1. Global Styles & Variables --- */

.dark-bg { background-color: #000; }
.section-title { font-size: 2.5rem; font-weight: 900; text-align: center; margin-bottom: 3rem; text-transform: uppercase; }

/* --- 2. Header & Navigation --- */
.main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background-color: rgba(10, 10, 10, 0.8); backdrop-filter: blur(10px); padding: 15px 0; }
.nav-logo { font-size: 1.8rem; font-weight: 900; color: var(--neon-lime); text-decoration: none; }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-link { color: var(--white); text-decoration: none; font-weight: 700; transition: color 0.3s ease; }
.nav-link:hover, .nav-link.active-page { color: var(--neon-lime); }
.nav-cta { border: 2px solid var(--white); padding: 8px 16px; border-radius: 5px; }
.nav-cta:hover { background-color: var(--neon-lime); color: var(--black); border-color: var(--neon-lime); }
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--white); transition: all 0.3s ease-in-out; }

/* --- 3. Hero Section --- */
.hero-section { padding: 180px 0 120px 0; text-align: center; background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('https://placehold.co/1920x600/000/FFF?text=📈') no-repeat center center/cover; }
.hero-title { font-size: 3.5rem; font-weight: 900; margin-bottom: 1rem; line-height: 1.2; color: var(--white); }
.hero-subtitle { font-size: 1.2rem; color: var(--text-grey); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-primary { background-color: var(--neon-lime); color: var(--black); }
.btn-primary:hover { background-color: transparent; color: var(--neon-lime); }

/* --- 4. Services Section --- */
.services-section { padding: 80px 0; }
.serviceSec .service-card { width: calc(100% /3 - 1.5rem); text-align: center;}
.service-card:hover { transform: translateY(-10px); border-color: var(--neon-lime); }
.service-icon { font-size: 2rem; color: var(--neon-lime); margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* --- 5. Case Studies Section --- */
.case-studies-section { padding: 80px 0; }
.case-study-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1000px; margin: 0 auto; }
.case-study-card { display: flex; flex-direction: column; align-items: center; background-color: var(--grey); padding: 2rem; border-radius: 10px; text-align: center; }
.result-highlight { margin-bottom: 1.5rem; }
.result-number { display: block; font-size: 2.8rem; font-weight: 900; color: var(--neon-lime); line-height: 1; }
.result-label { color: var(--text-grey); }
.case-study-content h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* --- 6. CTA Section --- */
.cta-section { padding: 80px 0; text-align: center; background-color: var(--grey); }
.cta-section h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; color: var(--text-grey); margin-bottom: 2rem; }

/* --- 7. Footer --- */
.main-footer { background-color: #000; text-align: center; padding: 2rem 0; border-top: 1px solid #222; }
.main-footer p { color: var(--text-grey); }

/* --- 8. Responsive Design --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .nav-menu { position: fixed; left: -100%; top: 75px; flex-direction: column; background-color: var(--black); width: 100%; text-align: center; transition: 0.3s; gap: 0; }
    .nav-menu.active { left: 0; }
    .nav-item { padding: 1.5rem 0; border-bottom: 1px solid var(--grey); }
    .nav-cta { border: none; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (min-width: 768px) {
    .case-study-card { flex-direction: row; text-align: left; gap: 2rem; }
    .result-highlight { margin-bottom: 0; }
}

@media (min-width: 992px) {
    .case-study-grid { grid-template-columns: 1fr 1fr; }
}


/*=================== Digital-marketing Page ===================*/

/* ==========================================================================
   STANDALONE STYLESHEET FOR VIDEO PRODUCTION PAGE
   ========================================================================== */

/* --- 1. Global Styles & Variables --- */


.dark-bg { background-color: #000; }

/* --- 2. Header & Navigation --- */
.main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background-color: rgba(10, 10, 10, 0.8); backdrop-filter: blur(10px); padding: 15px 0; }
.nav-logo { font-size: 1.8rem; font-weight: 900; color: var(--neon-lime); text-decoration: none; }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-link { color: var(--white); text-decoration: none; font-weight: 700; transition: color 0.3s ease; }
.nav-link:hover, .nav-link.active-page { color: var(--neon-lime); }
.nav-cta { border: 2px solid var(--white); padding: 8px 16px; border-radius: 5px; }
.nav-cta:hover { background-color: var(--neon-lime); color: var(--black); border-color: var(--neon-lime); }
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--white); transition: all 0.3s ease-in-out; }

/* --- 3. Hero Section --- */
.hero-section { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.video-background video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4)); z-index: 2; }
.hero-content { position: relative; z-index: 3; padding: 20px; }
.hero-title { font-size: 4rem; font-weight: 900; margin-bottom: 1rem; line-height: 1.1; }
.hero-subtitle { font-size: 1.5rem; color: var(--text-grey); margin-bottom: 2rem; }
.btn-primary { background-color: var(--neon-lime); color: var(--black); }
.btn-primary:hover { background-color: transparent; color: var(--neon-lime); }

/* --- 4. Process Section --- */
.process-section { padding: 80px 0; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.process-step { background-color: var(--grey); padding: 2rem; text-align: center; border-radius: 10px; border-bottom: 3px solid transparent; transition: all 0.3s ease; }
.process-step:hover { transform: translateY(-10px); border-bottom-color: var(--neon-lime); }
.step-icon { font-size: 3rem; color: var(--neon-lime); margin-bottom: 1rem; }
.process-step h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }

/* --- 5. Video Types Section --- */
.video-types-section { padding: 80px 0; }
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.type-card { background-color: var(--grey); padding: 2rem; border-radius: 8px; text-align: center; border: 1px solid #333; transition: all 0.3s ease; color: white; cursor: pointer;}
.type-card:hover { border-color: var(--neon-lime); color: var(--neon-lime); transform: scale(1.05); }
.type-card h4 { font-size: 1.2rem; font-weight: 600; }

/* --- 6. Featured Projects Section --- */
.featured-projects-section { padding: 80px 0; }
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.video-embed { position: relative; padding-bottom: 56.25%; /* 16:9 aspect ratio */ height: 0; overflow: hidden; border-radius: 10px; margin-bottom: 1rem; border: 1px solid #333; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.project-item h3 { font-size: 1.8rem; color: var(--neon-lime); }
.project-item p { color: var(--text-grey); }

/* --- 7. Footer --- */
.main-footer { background-color: #000; text-align: center; padding: 2rem 0; border-top: 1px solid #222; }
.main-footer p { color: var(--text-grey); }

/* --- 8. Responsive Design --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .nav-menu { position: fixed; left: -100%; top: 75px; flex-direction: column; background-color: var(--black); width: 100%; text-align: center; transition: 0.3s; gap: 0; }
    .nav-menu.active { left: 0; }
    .nav-item { padding: 1.5rem 0; border-bottom: 1px solid var(--grey); }
    .nav-cta { border: none; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (min-width: 992px) {
    .projects-grid { grid-template-columns: 1fr 1fr; }
}

/*=================== Video production Page ===================*/

/* ==========================================================================
   STANDALONE STYLESHEET FOR WEB DEVELOPMENT PAGE
   ========================================================================== */

/* --- 1. Global Styles & Variables --- */

.dark-bg { background-color: #000; }
.section-title { font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 3rem; text-transform: uppercase; }

/* --- 2. Header & Navigation --- */
.main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background-color: rgba(10, 10, 10, 0.8); backdrop-filter: blur(10px); padding: 15px 0; }
.nav-logo { font-size: 1.8rem; font-weight: 900; color: var(--neon-lime); text-decoration: none; }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-link { color: var(--white); text-decoration: none; font-weight: 700; transition: color 0.3s ease; }
.nav-link:hover, .nav-link.active-page { color: var(--neon-lime); }
.nav-cta { border: 2px solid var(--white); padding: 8px 16px; border-radius: 5px; }
.nav-cta:hover { background-color: var(--neon-lime); color: var(--black); border-color: var(--neon-lime); }
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--white); transition: all 0.3s ease-in-out; }

/* --- 3. Hero Section --- */
.hero-section { padding: 180px 0 120px 0; text-align: center; background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('https://placehold.co/1920x600/000/FFF?text=</>') no-repeat center center/cover; }
.hero-title { font-family: var(--font-primary); font-size: 3.5rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; color: var(--white); }
.hero-subtitle { font-size: 1.2rem; color: var(--text-grey); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-primary { background-color: var(--neon-lime); color: var(--black); }
.btn-primary:hover { background-color: transparent; color: var(--neon-lime); }

/* --- 4. Approach Section --- */
.approach-section { padding: 80px 0; }
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.approach-item { background-color: var(--grey); padding: 2.5rem 2rem; text-align: center; border-radius: 10px; border: 1px solid #333; transition: all 0.3s ease; }
.approach-item:hover { transform: translateY(-10px); border-color: var(--neon-lime); }
.approach-icon { font-size: 2.5rem; color: var(--neon-lime); margin-bottom: 1.5rem; }
.approach-item h3 { font-family: var(--font-primary); font-size: 1.4rem; margin-bottom: 0.5rem; }

/* --- 5. Technology Stack Section --- */
.tech-stack-section { padding: 80px 0; }
.tech-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.tech-item { background-color: var(--grey); padding: 10px 20px; border-radius: 20px; border: 1px solid #444; font-family: var(--font-primary); transition: all 0.3s ease; }
.tech-item:hover { background-color: var(--neon-lime); color: var(--black); border-color: var(--neon-lime); }

/* --- 6. Featured Projects Section --- */
.featured-projects-section { padding: 80px 0; }
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.project-card { background-color: var(--grey); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s ease; }
.project-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.project-image img { width: 100%; display: block; }
.project-content { padding: 2rem; }
.project-content h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.project-content p { color: var(--text-grey); margin-bottom: 1.5rem; }
.project-tag { display: inline-block; background-color: #333; color: var(--neon-lime); padding: 5px 10px; border-radius: 15px; font-size: 0.8rem; font-family: var(--font-primary); margin-right: 10px; }

/* --- 7. Footer --- */
.main-footer { background-color: #000; text-align: center; padding: 2rem 0; border-top: 1px solid #222; }
.main-footer p { color: var(--text-grey); }

/* --- 8. Responsive Design --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .nav-menu { position: fixed; left: -100%; top: 75px; flex-direction: column; background-color: var(--black); width: 100%; text-align: center; transition: 0.3s; gap: 0; }
    .nav-menu.active { left: 0; }
    .nav-item { padding: 1.5rem 0; border-bottom: 1px solid var(--grey); }
    .nav-cta { border: none; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (min-width: 992px) {
    .projects-grid { grid-template-columns: 1fr 1fr; }
}

/*=================== Web-development Page ===================*/

/* ==========================================================================
   STANDALONE STYLESHEET FOR LIMELIGHT CONTACT PAGE
   ========================================================================== */

/* --- 1. Global Styles & Variables --- */



/* --- 2. Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-lime);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-lime);
}

.nav-link.active-page, .nav-cta.active-page {
    color: var(--neon-lime);
    border-color: var(--neon-lime);
}

.nav-cta {
    border: 2px solid var(--white);
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-cta:hover {
    background-color: var(--neon-lime);
    color: var(--black);
    border-color: var(--neon-lime);
}

.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--white); transition: all 0.3s ease-in-out; }


/*RESPONSIVE MENU*/

.responsive_btn {
  display: none;
  cursor: pointer;
  text-align: center;
  width: 40px;
  height: 40px;
  margin: -2px 0;
  float: right;
  position: relative;
  z-index: 20;
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  background: #000;
}
.responsive_btn span {display: block; height: 2px; width: 20px; position: relative; top: 50%; margin: -1px auto;}
.responsive_btn span:before,.responsive_btn span:after {content: ""; display: inline-block; height: 100%; width: 100%; position: absolute; left: 0;}
.responsive_btn span:before {top: -6px;}
.responsive_btn span:after {bottom: -6px;}
.responsive_btn span,.responsive_btn span:before,.responsive_btn span:after {
  background: #000000;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
.responsive_btn:hover span, .responsive_btn:hover span:before, .responsive_btn:hover span:after {background: #fff;}

.responsive_nav {
  display: block;
  position: fixed;
  left: -220px;
  top: 0;
  bottom: 0;
  width: 220px;
  min-height: 100%;
  z-index: 9999;
  background: #000;
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 200ms ease-in-out 0s;
  padding: 10px 15px;
}
.responsive_nav ul {margin: 0; padding: 0; text-align: left;}
.responsive_nav ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  text-transform: capitalize;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  width: 100%;
}
.responsive_nav ul li:first-child {border-top: none; margin-top: 12px;}
.responsive_nav ul li:after{display: none;}
.responsive_nav ul li > a {display: block !important; padding: 10px 12px !important; color: inherit; position: relative;}
.responsive_nav ul li a:hover,.responsive_nav ul li a:focus,.responsive_nav ul li.active > a{color: #000000; background: #1d7874;}
.responsive_nav ul ul {padding: 0 0 15px 15px;}
.responsive_nav ul .sub-menu,.responsive_nav ul li a i {display: none;}
.responsive_nav .subarrow {display: block; pointer-events: inherit; width: 30px; height: 40px; line-height: 40px !important; right: 0;}
.responsive_nav ul .sub-menu .container {width: 100%; padding: 0;}
.bodyOverlay {position: fixed;left: 0;top: 0;right: 0;bottom: 0;z-index: 9998;transform: none;background: rgba(0, 0, 0, 0.6);opacity: 0;visibility: hidden;-webkit-transition: all 500ms ease 0s;transition: all 500ms ease 0s;}
html.responsive,.responsive body {overflow-y: hidden;}
.responsive .wrapper {-webkit-transform: translate(-280px, 0) !important; transform: translate(-280px, 0) !important;}
.responsive .bodyOverlay {opacity: 1; visibility: visible;}
.responsive .responsive_nav {left: 0;}
.responsive .responsive_btn {pointer-events: none;}
.responsive .responsive_btn span {-webkit-transform: rotate(45deg); transform: rotate(45deg);}
.responsive .responsive_btn span:after {-webkit-transform: rotate(270deg); transform: rotate(270deg); top: 0;}
.responsive .responsive_btn span:before {opacity: 0;}
.responsive_nav .opened > .subarrow {-webkit-transform: rotate(180deg); transform: rotate(180deg);}
.responsive_nav .mCSB_outside + .mCSB_scrollTools{right: 0;}
.responsive .responsive_nav .mCSB_outside + .mCSB_scrollTools{right: -4px;}
.responsive_nav .navMenu {
  display: block;
}

.responsive_nav ul li > a.btn-contact {
    margin-top: 15px;
    text-align: center;
    width: max-content;
    padding: 10px 30px !important;
}
.responsive .responsive_nav .responsive_btn{display: none !important;}
/*MENU END*/


/* --- 3. Page Header --- */
.page-header {
    padding: 140px 0 80px 0;
    text-align: center;
    background: url(image/contact.png) no-repeat center;
    background-size: cover;
    border-bottom: 1px solid #222;
    position: relative;
}
.page-header::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000096;
}
.page-header .container{
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* --- 4. Contact Section --- */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* --- Contact Info (Left Side) --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    background-color: var(--grey);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--neon-lime);
}

.info-block h3 {
    font-size: 1.5rem;
    color: var(--neon-lime);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--text-grey);
    font-size: 1rem;
}
.info-block p a{color: var(--text-grey);}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    display: block;
}

/* --- Contact Form (Right Side) --- */
.contact-form-container {
    background-color: var(--grey);
    padding: 2rem;
    border-radius: 10px;
}
.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--neon-lime);
    line-height: 1.2;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--white);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 5px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--neon-lime);
    box-shadow: 0 0 10px rgba(162, 255, 0, 0.3);
}

.btn-primary {
    background-color: var(--neon-lime);
    color: var(--black);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--neon-lime);
}

.full-width {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

/* --- 5. Footer --- */
.main-footer {
    background-color: #000;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #222;
}

.main-footer p {
    color: var(--text-grey);
}


.serviceBannerPart {
    text-align: center;
    position: relative;
    max-width: 100%;
    padding-bottom: 0;
    height: 80vh;
}
.serviceBannerPart video {
    max-width: 100%;
     width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(0.6);
    object-fit: cover;
}
section.serviceBannerPart .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 2rem));
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}
p.page-subtitle.para {
    margin-bottom: 30px;
}

/* --- 6. Responsive Design --- */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }
    .nav-menu.active { left: 0; }
    .nav-item { padding: 1.5rem 0; border-bottom: 1px solid var(--grey); }
    .nav-cta { border: none; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.25fr;
    }
}

/*=================== Contact Page ===================*/
/*=================== Responsive CSS ===================*/

@media only screen and (max-width: 1100px){
    #hero {
    height: 90vh;
    }
.hero-content h1 {
    font-size: 4rem;
    max-width: 80%;
    margin: auto;
}
.advantage-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));

}
.pricing-grid, .approach-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.page-title{font-size: 2.8rem;}
.section-title{font-size: 2.3rem;}
.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(152px, 1fr));
}
.member-info h4 {
    font-size: 1rem;
}
.member-info {
    padding: 0.8rem 0.6rem 0.8rem;
    height: 120px;
}
.service-title {
    font-size: 1.7rem;
}
.project-item h3 {
    font-size: 1.6rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin: 0.7rem 0;
}
.pricing-card {
    padding: 2rem 1.7rem;
}
}
@media only screen and (max-width: 992px){
    h2 {
    font-size: 2rem;
}
#hero-video{width: 100%;}
.hero-content h1 {
    font-size: 3.6rem;
}
.about-text h2, .service-card i {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.about-container {
    gap: 2rem;
}
.serviceSec .service-card {
    padding: 1rem;
}
.service-card h3 {
    font-size: 1rem;
}
.filter-btn {
    background: none;
    border: 1px solid var(--grey-text);
    color: var(--grey-text);
    padding: 8px 20px;
    margin: 5px 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 12px;
}
.filter-btn{margin-top: 5px;}
.filter-btn {
    padding: 12px 24px;
}
.advantage-item i{font-size: 2rem;}
.advantage-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.pricing-card {
    padding: 1.4rem 1.2rem;
}
section {
    padding: 4rem 0;
}
.pricing-grid, .approach-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 100%;
    align-items: stretch;
}
.pricing-card {
    padding: 1.4rem 1.2rem;
    width: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.contact-info a {
    align-items: start;
}
footer {
    padding: 1rem 0;
}
.footer-container {
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.contact-container {
    grid-template-columns: 2fr 2fr;
    gap: 2rem;
}
.page-title {
    font-size: 2.2rem;
}
.story-section, .contact-section,.service-detail-section, .process-section , .video-types-section, .featured-projects-section, .approach-section, .tech-stack-section, .services-section, .case-studies-section, .cta-section, .mission-vision-section{
    padding: 50px 0;
}
.section-title {
    font-size: 2rem;
}
.timeline-content {
    padding: 15px 20px;
}
.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.team-member {
    width: calc(100% / 3 - 11px);
}
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.project-item h3 {
    font-size: 1.4rem;
}
.project-content {
    padding: 1.5rem;
}
.Newsletter {
    padding: 4rem 0;
}
.service-card {
    width: calc(100% / 2 - 16px);
}.case-studies-section .case-study-grid {
    grid-template-columns: 1fr 1fr;
}
.case-studies-section .case-study-card {
    flex-flow: column;
    text-align: center;
}.cta-section h2 {
    font-size: 2rem;
}
}
@media only screen and (max-width: 767px) {
    .hero-content h1 {
    font-size: 3rem;
    line-height: 1.4;
}
.page-title {
    font-size: 1.8rem;
    line-height: 1.5;
}
.page-header {
    padding: 105px 0 50px 0;
}
.page-subtitle {
    font-size: 1rem;
}
.container, #main-header .container {
    width: 96%;
}
#hero {
    height: 75vh;
}
.about-container {
    grid-template-columns: 1fr;
}
.services-grid {
    gap: 1.5rem;
}
.serviceSec .service-card {
    width: calc(100% /3 - 1rem);
}
.advantage-grid .advantage-item {
    padding: 12px 15px;
    border: 1px solid #32ff7e1c;
}
section {
    padding: 3.5rem 0;
}
.portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
section#testimonials{padding: 3rem 0;}

h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
}
#mid-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.contact-container {
    grid-template-columns: 2fr;
}
.contact-form{order: 2;}
.contact-info{order: 1;}
.footer-container {
    gap: 20px;
}
.timeline::after {
    top: 20px;
    bottom: 25%;
}
.section-title {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
}
.serviceBannerPart {
    height: 60vh;
}
.service-detail-section .service-layout{gap: 2rem; text-align: center;}
.service-description .service-title{text-align: center;}
.service-list li {
    padding-left: 20px;
    display: inline-flex;
    margin-left: 10px;
}
.service-image {
    max-width: 350px;
    margin: 0 auto;
}
.process-step{padding:1rem}
.step-icon {
    font-size: 2.5rem;
}
.process-step h3, .pricing-card h3,.project-content h4,.service-card h3 {
    font-size: 1.2rem;
}
.types-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.Newsletter {
    padding: 3rem 0;
}
.approach-icon {
    font-size: 2.2rem;
    margin-bottom: 0;
}
.tech-item {
    border-radius: 10px;
}
 .service-card i{margin-bottom: 0;}
 .service-card {
    text-align: center;
}
.case-study-card {
    padding: 1.2rem;
}
.case-study-content h4 {
    font-size: 1.4rem;
}

}
@media only screen and (max-width: 599px) {
    .navbar{width: 100% !important;}
    .navbar ul{display: none !important;}
.responsive_btn {
    display: block;
    margin-left: 20px;
    padding: 10px;
    border-radius: 4px;
    background: #32ff7e;
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0;
    margin: auto;
}
.responsive .responsive_nav .navbar ul{display: block !important; width: 100%;};
.footer-container {
    gap: 15px;
}
.hero-content h1 {
    font-size: 2.5rem;
}
.serviceSec .service-card {
    width: calc(100% /2 - 1rem);
}
.advantage-grid {
    grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
    gap: 1rem;
}
.advantage-item h3 {
    font-size: 18px;
}
.testimonial-card p {
    font-size: 1rem;
}
.pricing-card, .service-card {
    width: 80%;
}
#mid-cta h3 {
    font-size: 1.4rem;
}
.contact-info i {
    font-size: 25px;
}
.contact-form h2{margin-bottom: 2rem;}
.timeline::after {
    bottom: 27%;
}
section#testimonials .section-title{margin-bottom: 40px;}
.team-member {
    width: calc(100% / 2 - 11px);
}
.case-studies-section .case-study-grid {
    grid-template-columns: 1fr;
}
.page-title {
    font-size: 1.6rem;
}
.about-text h2, .service-card i {
    font-size: 2.2rem;
}
.cta-section h2 {
    font-size: 1.6rem;
}
}
@media only screen and (max-width: 479px) {
    .pricing-card, .service-card {
        width: 90%;
    }
    .service-icon {
    margin-bottom: 1rem;
}
.result-number {
    font-size: 2.5rem;
}
}
/*=================== Responsive CSS ===================*/
