/* ============================
   SPLASH SCREEN
   ============================ */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

html.hide-splash .splash-screen {
    display: none !important;
}

.splash-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    animation: splashAnim 2s ease forwards;
}

@keyframes splashAnim {
    0% {
        filter: grayscale(100%);
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        filter: grayscale(100%);
        transform: scale(1);
        opacity: 1;
    }
    70% {
        filter: grayscale(0%);
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        filter: grayscale(0%);
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================
   IMAGE FADE-IN ON LOAD
   ============================ */
.app img {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.app img.loaded {
    opacity: 1;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background-color: #fff;
}

.app {
    width: 100%;
    min-height: 100vh;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #2596be; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #e61a19; }

/* ============================
   TYPOGRAPHY
   ============================ */
.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.section-para {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
}

.text-white { color: #fff; }
.text-black { color: #000; }

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #4d339e;
    color: #fff;
}

.btn-primary:hover {
    background-color: #e61a19;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 26, 25, 0.4);
}

/* ============================
   HEADER
   ============================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e61a19;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #e61a19;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 60;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 1rem 20px 2rem;
    border-top: 1px solid #eee;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #e61a19;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.hero-video-bg iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.4)
    );
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.3)
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-slide.active .hero-heading {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================
   ABOUT SECTIONS
   ============================ */
.about-section {
    padding: 0;
}

.about-red {
    background-color: rgb(229, 20, 21);
}

.about-orange {
    background-color: rgb(252, 164, 1);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.about-grid-reverse {
    direction: ltr;
}

.about-grid-reverse .about-text {
    order: 1;
}

.about-grid-reverse .about-image {
    order: 2;
}

.about-image {
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

/* ============================
   SERVICES SECTION
   ============================ */
.services-section {
    background-color: rgb(254, 254, 0);
    padding: 100px 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-title {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.service-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-bg {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.65);
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 2;
    color: #fff;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translate(-50%, -70%);
}

.service-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    text-align: center;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.service-card:hover .service-name {
    transform: translateY(0);
}

/* ============================
   PORTFOLIO SECTION
   ============================ */
.portfolio-section {
    background-color: #fff;
    padding: 100px 0;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-title {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-card {
    cursor: pointer;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(230, 26, 25, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.video-card:hover .play-btn {
    background: rgba(230, 26, 25, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 101;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #e61a19;
}

.modal-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.modal-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================
   GALLERY SECTION
   ============================ */
.gallery-section {
    background-color: rgb(119, 191, 18);
    padding: 100px 0;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ============================
   CREATIVE VISUAL GALLERY
   ============================ */
.visual-gallery-section {
    background-color: rgb(119, 191, 18);
    padding: 80px 0 0;
}

.visual-gallery-section .portfolio-title {
    color: #fff;
}

.visual-gallery-section .section-para {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Featured Image */
.gallery-feature {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.gallery-feature img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-feature:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-feature:hover .gallery-overlay,
.gallery-grid-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* 4-Image Grid */
.gallery-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-grid-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.gallery-grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.08);
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .visual-gallery-section {
        padding: 60px 0 0;
    }
    .gallery-feature img {
        height: 300px;
    }
    .gallery-grid-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid-4 {
        grid-template-columns: 1fr;
    }
    .gallery-feature img {
        height: 220px;
    }
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    background-color: rgb(119, 191, 18);
    padding: 100px 0;
    text-align: center;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-heading {
    margin-bottom: 2rem;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background-color: rgb(113, 52, 156);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-address {
    font-size: 0.85rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #e61a19;
    border-color: #e61a19;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ============================
   ANIMATIONS (scroll reveal)
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header */
    .nav-desktop {
        display: none;
    }
    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-heading {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-grid-reverse .about-text {
        order: 2;
    }
    .about-grid-reverse .about-image {
        order: 1;
    }
    .about-image {
        height: 300px;
    }
    .about-text {
        padding: 2rem 1.5rem;
    }

    /* Services */
    .services-section {
        padding: 60px 0;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-name {
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.3);
        font-size: 0.8rem;
    }

    /* Portfolio */
    .portfolio-section {
        padding: 60px 0;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery */
    .gallery-section {
        padding: 60px 0;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 250px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .hero-heading {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .about-text {
        padding: 1.5rem 1rem;
    }
    .section-heading {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================
   PAGE TITLE BAR
   ============================ */
.page-title-bar {
    height: 150px;
    background-color: #e61a19;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px; /* clears fixed header */
    width: 100%;
}

.page-title-bar h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================
   PAGE HERO (Inner Pages)
   ============================ */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.page-hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #fff;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

.page-hero-sub {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

/* ============================
   ABOUT PAGE - Content
   ============================ */
.page-content-section {
    padding: 80px 0;
    background: #fff;
}

.page-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.about-content-image {
    border-radius: 0.5rem;
    overflow: hidden;
}

.about-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.5s ease;
}

.about-content-image:hover img {
    transform: scale(1.05);
}

/* ============================
   VALUES SECTION
   ============================ */
.values-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.values-title {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 2.5rem;
    color: #e61a19;
    margin-bottom: 1.5rem;
}

.value-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.value-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ============================
   SERVICE DETAIL SECTIONS
   ============================ */
.service-detail-section {
    padding: 0;
}

.svc-red { background-color: rgb(229, 20, 21); }
.svc-white { background-color: #fff; }
.svc-yellow { background-color: rgb(252, 164, 1); }
.svc-purple { background-color: rgb(113, 52, 156); }
.svc-bright-yellow { background-color: rgb(254, 254, 0); }
.svc-blue { background-color: #2596be; }
.svc-green { background-color: rgb(119, 191, 18); }

/* ============================
   CLIENTS SECTION
   ============================ */
.clients-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.clients-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.clients-sub {
    text-align: center;
    margin-bottom: 3rem;
    color: #555;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.client-logo-card {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 16/10;
}

.client-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.contact-info .section-heading {
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e61a19, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.contact-detail-item h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-item a,
.contact-detail-item p {
    color: #555;
    font-size: 0.95rem;
}

.contact-detail-item a:hover {
    color: #e61a19;
}

.contact-offices {
    margin-top: 2.5rem;
}

.offices-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.office-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 0.5rem;
}

.office-icon {
    color: #e61a19;
    font-size: 1.2rem;
    margin-top: 2px;
}

.office-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.office-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* ============================
   CONTACT FORM
   ============================ */
.contact-form-wrapper {
    background: #f8f8f8;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e61a19;
    box-shadow: 0 0 0 3px rgba(230, 26, 25, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit {
    display: inline-block;
    padding: 14px 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #e61a19, #c41210);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #c41210, #a00e0c);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 26, 25, 0.3);
}

/* ============================
   RESPONSIVE - Inner Pages
   ============================ */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 300px;
    }
    .page-hero-heading {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }
    .about-content-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 40vh;
        min-height: 250px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================
   TEAM SECTION (About Page)
   ============================ */
.team-section {
    background-color: rgb(113, 52, 156);
    padding: 80px 0;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.team-sub {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-size: 1.2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(5px);
}

.team-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
}

.team-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.team-role {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================
   SERVICE ICON BLOCKS (Services Page)
   ============================ */
.svc-icon-block {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #fff;
}

.svc-icon-dark {
    background: rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
}

.svc-tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* ============================
   RESPONSIVE - Team & Service Icons
   ============================ */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .team-card {
        padding: 1.5rem 1rem;
    }
    .team-section {
        padding: 60px 0;
    }
}

/* ============================
   FOOTER TAGLINE
   ============================ */
.footer-tagline {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0 0;
}

.footer-tagline li {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ============================
   FOOTER CREDIT
   ============================ */
.footer-credit {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    opacity: 0.7;
}

.footer-credit a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ============================
   GO TO TOP BUTTON
   ============================ */
.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E51415, #FCA401);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

.go-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .go-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ============================
   IFRAME VIDEO CARDS (Portfolio)
   ============================ */
.portfolio-grid-iframe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-iframe-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
    display: block;
    text-decoration: none;
    color: inherit;
}

.video-iframe-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    border-color: #E51415;
}

.video-iframe-wrap {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .portfolio-grid-iframe {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .portfolio-grid-iframe {
        grid-template-columns: 1fr;
    }
}

/* YouTube Thumbnail + Play Button */
.yt-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    opacity: 1 !important;
}

.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(229, 20, 21, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.yt-play-btn i {
    color: #fff;
    font-size: 1.4rem;
    margin-left: 4px;
}

.video-iframe-card:hover .yt-play-btn {
    background: rgba(229, 20, 21, 1);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 25px rgba(229, 20, 21, 0.5);
}

/* ============================
   WORK PAGE STYLES
   ============================ */

/* Client Intro */
.work-clients-intro {
    background: #f0f0f0;
    padding: 80px 0 40px;
    margin-top: 70px;
}

.work-intro-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Client Logos Grid */
.work-clients-grid-section {
    background: #f0f0f0;
    padding: 40px 0 80px;
}

.work-clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.work-client-card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.work-client-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.work-client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.work-client-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.3;
}

/* About Sections (shared: about.html + work.html) */
.about-section {
    padding: 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-grid-reverse .about-image {
    order: 2;
}

.about-grid-reverse .about-text {
    order: 1;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.about-tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-italic {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.85;
}

/* About Section Color Variants */
.about-red {
    background: rgb(229, 20, 21);
}

.about-orange {
    background: rgb(252, 164, 1);
}

.about-dark-navy {
    background-color: #1a1a2e;
}

.about-dark-navy .section-para {
    color: rgba(255, 255, 255, 0.85);
}

.about-dark-navy .about-italic {
    color: rgba(255, 255, 255, 0.8);
}

/* Work Portfolio Coming Soon */
.work-portfolio-coming {
    background: #f0f0f0;
    padding: 100px 0;
    text-align: center;
}

.work-portfolio-title {
    text-align: center;
    margin-bottom: 1rem;
}

.work-coming-soon {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: #888;
    text-align: center;
}

/* Work Page Responsive */
@media (max-width: 1024px) {
    .work-clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .work-clients-intro {
        padding: 60px 0 30px;
    }
    .work-clients-grid-section {
        padding: 30px 0 60px;
    }
    .work-clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .work-client-logo {
        height: 70px;
    }
    .work-client-logo img {
        max-height: 55px;
    }
    .work-client-name {
        font-size: 0.65rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-grid-reverse .about-image {
        order: 0;
    }
    .about-grid-reverse .about-text {
        order: 0;
    }
    .about-text {
        padding: 2.5rem;
    }
    .work-portfolio-coming {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .work-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .work-client-card {
        padding: 1rem 0.5rem 0.75rem;
    }
    .work-intro-text {
        font-size: 1rem;
    }
}
