

/* --- Base Reset and Variables --- */
:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #BC002D;
    --menu-width: 19rem;
    --sticky-top: 5rem; /* Header height */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Background Setup --- */
.waving-background {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2; 
    background: linear-gradient(to right, white 20%, #bc002d 50%, white 80%);
    background-size: 300% 100%; 
    animation: wave 8s ease-in-out infinite;
    opacity: 0.9; 
}

@keyframes wave {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


/* --- Navigation Bar --- */
.main-header {
    background-color: transparent;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--sticky-top); 
    padding: 0 1.5rem;
}

.nav-logo img {
  height: 100px;
}


@media (max-width: 768px) {
  .nav-logo img {
  height: 50px;
}
}



.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* --- "Hire Us" Button Styling --- */
.btn-hire-us {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    border-radius: 40px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-hire-us:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-hire-us .arrow-right {
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

/* --- Hamburger Menu Icon --- */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--primary-color); 
    cursor: pointer;
    padding: 10px;
    border-radius: 30px;
}

.hamburger-menu .bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

/* --- Side Menu --- */
.side-menu {
    position: fixed;
    top: 1rem; 
    right: 1rem;
    width: var(--menu-width);
    height: auto;
    max-height: 0;
    overflow: hidden;
    
    background-color: var(--secondary-color);
    color: var(--primary-color);
    z-index: 1100;
    
    transform: translateX(100%);
    transition: transform 0.4s ease-out, max-height 0.4s ease-out;
    
    padding: 0 1.5rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    border-radius: 40px;
}

.side-menu.is-open {
    transform: translateX(0);
    max-height: 90vh; 
    padding: 1.5rem;
    overflow-y: auto;
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0;
    line-height: 1;
}

.menu-items {
    margin-top: 1rem;
    line-height: 1;
}

.menu-items li {
    padding: 0.5rem 0;
    font-size: 1.4rem;     
    font-weight: 500;
}

/* --- Submenu Styling --- */
.has-submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.has-submenu .arrow-right {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.has-submenu.submenu-open .arrow-right {
    transform: rotate(45deg);
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.submenu li {
    margin-top: 8px;
    padding: 0.25rem 0;
    border-bottom: none;
    font-size: 1rem;
}

.has-submenu.submenu-open .submenu {
    max-height: 200px;
}

/* --- "Start your project" Button Styling --- */
.btn-start-project {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    transition: border-color 0.3s ease;
    border-radius: 100px;
}

.btn-start-project .arrow-right {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    border: 2px solid transparent; 
    padding: 0 1rem;
    line-height: 1;
    border-radius: 100px;
    transition: border 0.3s ease, transform 0.3s ease-out;
}

.btn-start-project:hover {
    border-color: transparent; 
}

.btn-start-project .btn-text {
    display: inline-block;
    transition: transform 0.3s ease-out;
}

.btn-start-project:hover .btn-text,
.btn-start-project:hover .arrow-right {
    transform: translateX(5px);
}

.btn-start-project:hover .arrow-right {
    border: 2px solid var(--primary-color);  
}

/* --- Hero Content Styling (Centered & Stacked) --- */

/* ADDED: Initial state for the hero animation */
.hero-stagger-item {
    opacity: 0;
    transform: translateY(20px);
}


.hero-content {
    min-height: 80vh; 
    padding-top: 25rem; 
    padding-bottom: 25rem;
    
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    
    display: flex;
    flex-direction: column; 
    
    align-items: center; 
    text-align: center; 
    
    z-index: 5;
    position: relative;
    color: var(--primary-color);
    
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Styling for the large, stacked title */
.hero-title h1 {
    font-size: 15vw; 
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Neue Montreal', Helvetica, Arial, sans-serif;
}

.hero-title .line-2 {
    font-size: 8vw; 
    font-weight: 500;
    text-transform: lowercase;
    margin-left: 0;
}

/* Styling for the side paragraph */
.hero-text {
    margin-top: 3rem; 
    max-width: 400px; 
    font-size: 1.1rem;
    line-height: 1.6;
    
}

/* --- Scroll Pin Wrapper (New) --- */
.scroll-pin-wrapper {
    position: relative;
    max-width: 2000px;
    margin: 0 auto;
    z-index: 10;
}

/* --- Services Hero Section Styling --- */
.services-hero {
    padding: 3rem 1.5rem; 
    display: flex;
    justify-content: space-between; 
    align-items: flex-end; 
    position: relative; 
    z-index: 5;
    color: var(--primary-color);
    width: 100%;
}

/* Styling for the large, stacked title */
.services-heading-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.services-heading-wrapper h2 {
    font-size: clamp(3rem,10.6vw,10rem); 
    font-weight: 500;
    line-height: 0.9; 
    margin: 0;
    text-transform: uppercase;
    font-family: 'Neue Montreal', Helvetica, Arial, sans-serif;
}

.services-heading-wrapper .services-line-1 {
    font-size:clamp(3rem,10.6vw,10rem); 
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Neue Montreal', Helvetica, Arial, sans-serif;
}

/* Styling for the SVG Arrow */
.services-arrow-container {
    width: 60px;  
    height: 60px;
    margin-left: 20px;  
    transform: translateY(-10px);  
}

.services-arrow-svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--accent-color); 
}

/* --- Service Panels (ScrollTrigger Pinning Content) --- */

.service-panels-container {
    position: relative; 
    max-width: 2000px; 
    margin: 0 auto;    
    z-index: 10;
    /* Height remains 100vh less the header */
    height: calc(100vh - var(--sticky-top)); 
    top: 0; 
}

.service-panel {
    /* Panels are positioned absolutely within the panels container to stack them */
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 80%; 
    border-radius: 40px; /* Added border-radius */
    
    /* Panel Layout */
    display: flex;
    justify-content: space-between;
    align-items: stretch; 
    padding: 1rem 2em;
    gap: 4rem;
    
    /* Initial state: Managed by GSAP */
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    
    background-color: var(--secondary-color); 
}

.service-panel[data-panel-index="0"] {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: auto;
}

.service-content-left {
    flex: 1;
    max-width: 50%;
    padding-right: 2rem;
    height: 100%; /* <-- NEW */
    display: flex;
    flex-direction: column;
    justify-content: center; /* <-- NEW */
}


.service-image-right img,
.service-image-right video { /* <-- Added 'video' selector here */
  width: 100%;
    height: auto;
    /* NEW: This is the primary fix. Ensures the media never exceeds the container's height. */
    max-height: 100%; 
    border-top-right-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.service-image-right {
    flex: 1;
    max-width: 50%;
    height: 100%; /* <-- NEW */
    display: flex; /* <-- NEW */
    align-items: center; /* Center media vertically inside its half */
    justify-content: center;
   
}

.service-image-right img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
}

.service-title {
    font-family: 'Neue Montreal', Helvetica, Arial, sans-serif;
     font-size: clamp(2.5rem, min(7.1vw, 10vh), 7.5rem); 
    font-weight: 500;
    color: var(--primary-color); /* Using the accent color for prominence */
   
    line-height: 1;
    letter-spacing: calc(-20em / 1000);
    margin: 0 0 .54rem;
    margin-bottom: 2rem;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Neue Montreal', Helvetica, Arial, sans-serif;
    
}

.service-list li {
    
      font-weight: 500;
    cursor: pointer; /* Indicates it's interactive */
    /* Added padding and rounded corners for a nice background effect */
    padding: 0.25rem 0.75rem; 
    border-radius: 9999px; /* Fully rounded pill shape */
    border: 1px solid transparent; /* Keeps layout consistent on hover */
    /* Add transition for a smooth color change */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;

}

.service-list li:hover {
    /* Change background to red accent color on hover */
    background-color: var(--accent-color);
    /* Change text color to white on hover */
    color: var(--secondary-color); 
    border-color: var(--accent-color);
}




.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.btn-find-out {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    transition: border-color 0.3s ease;
    border-radius: 100px;
    width: 300px;
}

.btn-start-project {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    transition: border-color 0.3s ease;
    border-radius: 100px;
}

.btn-find-out:hover .arrow-right {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    border: 2px solid transparent; 
    padding: 0 1rem;
    line-height: 1;
    border-radius: 100px;
    transition: border 0.3s ease, transform 0.3s ease-out;
}

.btn-find-out:hover {
    border-color: transparent; 
}

.btn-find-out .btn-text {
    display: inline-block;
    transition: transform 0.3s ease-out;
}

.btn-find-out:hover .btn-text,
.btn-find-out:hover .arrow-right {
    transform: translateX(5px);
}

.btn-find-out:hover .arrow-right {
    border: 2px solid var(--primary-color);  
}







/* --- Responsiveness (Mobile adjustments) --- */
@media (max-width: 900px) {
    
    .scroll-pin-wrapper {
        max-width: 100%;
        margin: 0;
    }
    
    /* Revert containers to natural flow for mobile */
    .service-panels-container {
        position: relative; 
        height: auto !important; 
        top: 0;
        padding-top: 5rem;
        padding-bottom: 5rem;
        max-width: 100%; 
        margin: 0;
    }
    
    .service-panel {
        position: relative; 
        height: auto;
        opacity: 1; 
        transform: translateY(0);
        pointer-events: auto;
        flex-direction: column;
        gap: 2rem;
        padding: 20px;
        margin-bottom: 4rem; 
        background-color: white; 
    }
    
    .service-content-left,
    .service-image-right {
        max-width: 100%;
        padding:20px 10px;
    }
    
    .service-title {
        font-size: 2rem;
    }

    /* Keep services hero visible but flowing on mobile */
    .services-hero {
        opacity: 1;
        height: auto;
        padding: 3rem 1.5rem;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    /* Hero Section Mobile Overrides */
    .hero-content { 
        min-height: auto; 
        padding-top: 20rem; 
        padding-bottom: 15rem;
    }
    .hero-title h1 { font-size: 12vw; }
    .hero-title .line-2 { font-size: 6vw; }
    .hero-text { width: 100%; margin-top: 2rem; }
    
    /* Services Hero Mobile Overrides */
    .services-heading-wrapper h2 { font-size: 12vw; }
    .services-heading-wrapper .services-line-1 { font-size: 6vw; }
    
    /* Side Menu Mobile Overrides */
    .btn-hire-us {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .side-menu {
        margin-top: 50px;
    }

    .service-panel {
        background-color: white;
        padding: 20px;
    }

    .service-panels-container {
        margin-top: -50px;
    }
}

















 
 /* Section Styling */
#brand-led-section {
    padding-top: 5rem;    /* py-20 */
    padding-bottom: 5rem; /* py-20 */
    max-width: 125rem; /* container mx-auto */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;   /* px-4 */
    padding-right: 1rem;  /* px-4 */
}

/* Media Query for Medium (md) devices and up (768px+) */
@media (min-width: 768px) {
    #brand-led-section {
        padding-top: 8rem;    /* md:py-32 */
        padding-bottom: 8rem; /* md:py-32 */
        padding-left: 2rem;   /* md:px-8 */
        padding-right: 2rem;  /* md:px-8 */
    }
}

/* Title Container */
.title-container {
    text-align: center;
    margin-bottom: 4rem; /* mb-16 */
}

.main-title {
    font-family: 'Neue Montreal', Helvetica, Arial, sans-serif;
    font-size: clamp(2.5rem,7.1vw,7.5rem);
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: calc(-20em / 1000);
}

.subtitle {
    font-family: 'Neue Montreal', Helvetica, Arial, sans-serif;
    font-size: clamp(2.5rem,7.1vw,7.5rem);
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: calc(-20em / 1000);
}

/* Media Query for Medium (md) devices and up (768px+) */
@media (min-width: 768px) {
    .main-title {
        font-size: clamp(2.5rem,7.1vw,7.5rem)
    }
}

/* Feature Items Wrapper */
.feature-wrapper {
    
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid #e5e7eb; /* border-t border-gray-200 */
}

/* Feature Item Container */
.feature-item-container {
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1; 
}

.feature-content {
    display: flex;
    flex-direction: column; /* flex-col */
    padding-top: 2.5rem;    /* py-10 */
    padding-bottom: 2.5rem; /* py-10 */
}

@media (min-width: 768px) {
    .feature-content {
        flex-direction: row; /* md:flex-row */
        padding-top: 4rem;    /* md:py-16 */
        padding-bottom: 4rem; /* md:py-16 */
    }
}

/* Left Side (Title) */
.left-side {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 500;    /* font-extrabold */
    transition: color 300ms;
}

@media (min-width: 768px) {
    .left-side {
        width: 66.666667% ; /* md:w-1/3 */
        font-size: 2.25rem; /* md:text-4xl */
    }
}

/* Right Side (Body Text) */
.right-side {
    margin-top: 1rem; /* mt-4 */
}

@media (min-width: 768px) {
    .right-side {
        width: 33.333333%; /* md:w-2/3 */
        margin-top: 0;   /* md:mt-0 */
        padding-left: 4rem; /* md:pl-16 */

    }
    
}

.right-side p {
        font-family: 'Neue Montreal', Helvetica, Arial, sans-serif;
    font-size: clamp(1.5rem,2.1vw,1.5rem);
}

/* Hover effects */
.left-side-title {
    color: #d1d5db; /* Default light gray */
    font-family: 'Neue Montreal', Helvetica, Arial, sans-serif;
    font-size: clamp(2.5rem,5.1vw,5.5rem);
}

.feature-item-container:hover .left-side-title {
    color: #000; /* Dark text on hover */
}

.right-side-text {
    color: transparent; /* Default transparent */
    transition: color 300ms;
    
}

.feature-item-container:hover .right-side-text {
    color: #000; /* Gray text on hover */
}

/* Custom spacing class for mobile */
@media (max-width: 768px) {
    .espacio {
        margin-bottom: 350px; /* 150px */
    }

            
@media (min-width: 768px) {
        .feature-image-ghost {
            
            width: auto;
            height: 150px;
            
            }
        }

    .right-side p {
        font-family: 'Neue Montreal', Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.25;
    transition: opacity .5s;
}
        
}

/* Image Ghost Styling - CRITICAL FOR MOVEMENT & POSITIONING */
.feature-image-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 300px;
    border-radius: 8px;
    pointer-events: none; /* Allows mouse events to pass through to the container */
    will-change: transform, opacity; 
    z-index: -1; 
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25); 
    
    /* This makes the center of the image follow the cursor */
    transform: translate(-50%, -50%); 
}

























#our-work-section {
    /* Applied background and text color directly to the section container */
    background-color: #000;
    color: #ffffff;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    
    padding: 5rem 1rem;

    margin-left: auto; 
    margin-right: auto; 
    border-radius: 0.75rem; /* Added for visual separation */
}

@media (min-width: 768px) {
    #our-work-section {
        padding: 8rem 2rem;
    }
}

.intro-wrapper {
    margin-bottom: 5rem;
    margin-left: 10%;
    margin-right: 10%;
}

@media (min-width: 1024px) {
    .intro-wrapper {
        display: flex;
        gap: 3rem; 
    }
    .lg-half-width {
        width: 50%;
    }
}

.project-grid-main {
    display: grid;
    gap: 2rem;
    margin-left: 10%;
    margin-right: 10%;
}

.project-grid-sub {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .project-grid-sub {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    
}

@media (max-width: 769px) {
        .project-grid-main {
    display: grid;
    gap: 2rem;
    margin-left: 2%;
    margin-right: 2%;
}
}
    

.button-wrapper {
    text-align: center;
    margin-top: 5rem;
}

/* ---------------------------------------------------- */
/* Title and Typography Styles */
/* ---------------------------------------------------- */

.work-title-container {
    display: flex;
    flex-direction: column;
}

.work-title {
    font-size: clamp(2.5rem, 7.1vw, 7.5rem);
    font-weight: 500;
    color: #ffffff; /* Hardcoded white */
    line-height: 1;
    letter-spacing: -0.02em; 
    white-space: nowrap;
    color: #ccc; /* Text Gray 400 for 'OUR' */
}

.work-title-main {
    color: #ffffff; /* Hardcoded white for 'WORK' */
}

.sub-heading {
    font-size: clamp(1.75rem, 5vw, 5.25rem); 
    font-weight: 500;
    line-height: 1.1;
    margin-top: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.work-paragraph {
    max-width: 600px;
    font-size: 1.125rem; 
    line-height: 1.6;
    color: #d1d5db; /* Text Gray 300 */
}

/* ---------------------------------------------------- */
/* Portfolio Grid Item Styles */
/* ---------------------------------------------------- */

.project-card {
    background-color: #333;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; 
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.project-footer {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
}

.project-link {
    font-weight: 600;
    font-size: 1.125rem;
}

.project-year {
    font-size: 0.875rem;
    color: #ccc;
}

/* ---------------------------------------------------- */
/* Button Style */
/* ---------------------------------------------------- */
.view-project-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: black;
    color: white;
    border: 1px solid white;
    border-radius: 9999px; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-project-button:hover {
    background-color: white;
    color: black;
}








        

.dynamic-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2; 
pointer-events: none; 
}

/* ---------------------------------------------------- */
/* Gradient Blob Styling (High Visibility) */
/* ---------------------------------------------------- */
.blob {
position: absolute;
/* Full opacity for maximum impact */
opacity: 1.0; 
border-radius: 50%; 
/* Larger blur for wider diffusion */
filter: blur(150px); 
/* Quick but smooth movement */
transition: transform 0.1s ease-out; 
}

/* Deep Blue Blob */
.blob-1 {
width: 700px; 
height: 700px;
top: 5%;
left: 5%;
/* More saturated blue */
background: radial-gradient(circle, rgba(60, 140, 255, 1) 0%, transparent 60%); 
}

/* Vibrant Magenta/Pink Blob */
.blob-2 {
width: 900px; 
height: 900px;
bottom: 0%;
right: 10%;
/* More saturated magenta */
background: radial-gradient(circle, rgba(255, 60, 200, 1) 0%, transparent 60%); 
}

/* ---------------------------------------------------- */
/* Example Content Wrapper */
/* ---------------------------------------------------- */
.content-wrapper {
position: relative;
z-index: 10;
background-color: white;
padding: 4rem;
border-radius: 1.5rem;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05); /* Very strong shadow */
max-width: 90%;
text-align: center;
}




/* ======================================================= */
/* 1. STYLES FOR TESTIMONIAL CAROUSEL (.mySwiper) */
/* ======================================================= */

/* Scoped Swiper Container Styles */
.mySwiper {
background-color: #000!important;
width: 100%;
padding-top: 50px;
padding-bottom: 50px;
background-color: transparent; /* Changed from black to transparent for better layout integration */
}

/* Scoped Swiper Slide Styles (Horizontal/Coverflow) */
.mySwiper .swiper-slide {

background-position: center;
background-size: cover;
width: 300px;
height: 450px; /* Adjusted height for better card fit */
/* Ensure the slide content is centered */
display: flex;
justify-content: center;
align-items: center;
}

/* Testimonial Card Styling (Already unique, but good to keep here) */
.testimonial-card {

width: 100%;
height: 100%;
padding: 30px;
box-sizing: border-box;
color: #333;
border-radius: 16px;
display: flex;
flex-direction: column;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}

.mySwiper .swiper-slide-active .testimonial-card {
transform: scale(1.05); /* slightly enlarge active card */
}

.company-name {
font-size: 1.8em;
margin-bottom: 10px;
color: #1a1a1a;
font-weight: 700;
}

.comment {
font-size: 1.1em;
line-height: 1.6;
margin-bottom: 20px;
flex-grow: 1;
font-style: italic;
}

.person-name {
font-size: 1em;
color: #555;
margin-top: auto;
line-height: 1.4;
}

.person-name strong {
color: #1a1a1a;
}

/* Scoped Swiper Pagination Styling (The dots at the bottom) */
/* If both sliders use the generic .swiper-pagination, they will conflict. 
We must scope this too! */
.mySwiper .swiper-pagination-bullet {
background: #ccc;
opacity: 0.7;
}

.mySwiper .swiper-pagination-bullet-active {
background: #fff;
opacity: 1;
}


/* footer */



.footer {
font-family: 'Poppins', sans-serif;
background-color: #000;
padding-top: 150px;
padding-bottom: 50px;
}


.footer-container {
max-width: 2000px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 3rem;

}

.footer-logo img{
    height: 150px;
    margin-bottom: 50px;
}

.footer-socials a,
.footer-links a {
color: #fff;
text-decoration: none;
font-size: 2rem;
margin-right: 1.5rem;
display: inline-block;
margin-bottom: .5rem;
}
.footer-socials a:hover,
.footer-links a:hover {
opacity: 0.6;
}


.footer-email {
font-size: 4.8rem;
margin: 0;
line-height: 1.2;
text-align: right;
color: #fff;

}



.footer-copy {
margin-top: 1rem;
text-align: right;
opacity: 0.6;
font-size: 0.9rem;
color: #fff;
}


.footer-socials a:hover, .footer-links a:hover { opacity: 0.8; }
.footer-socials a, .footer-links a { position: relative; }
.footer-socials a::after, .footer-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: #fff; transition: width 0.3s ease; }
.footer-socials a:hover::after, .footer-links a:hover::after { width: 100%; }


/* RESPONSIVE */
@media (max-width: 900px) {
.footer-container {
flex-direction: column;
text-align: left;
}
.footer-email {
text-align: left;
font-size: 2.2rem;
margin-top: 2rem;
}
.footer-copy {
text-align: left;
}
}


@media (max-width: 600px) {
.footer {
font-family: 'Poppins', sans-serif;
background-color: #000;
padding-left: 20px;
padding-right: 20px;
}
.footer-email {
font-size: 1.8rem;
}
.footer-logo {
font-size: 1.6rem;
}
}