/* Custom CSS for dreampcbuildanditsolutionsinc */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');

/* Body and layout adjustments */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #090909;
    padding-top: 76px; /* Account for fixed navbar */
}

/* Navigation Styles */
.navbar {
    background-color: #090909 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff !important;
    text-decoration: none;
    transition: none;
    transform: none;
}

    .navbar-brand:hover {
        color: #0d6efd !important;
    }

/* Updated brand logo styles for actual image */
.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    /* Remove the background color and other box styling */
    background: none;
    display: block; /* Changed from flex to block for img elements */
    /* Remove any animations */
    transition: none;
    transform: none;
    animation: none;
}

    /* Optional: Add subtle hover effect for the logo */
    .brand-logo:hover {
        opacity: 0.8;
        transition: opacity 0.2s ease;
    }

.brand-text {
    font-weight: 600;
    letter-spacing: -0.5px;
    transition: none;
    transform: none;
    animation: none;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

    .navbar-nav .nav-link:hover {
        background-color: rgba(13, 110, 253, 0.1);
        color: #0d6efd !important;
        transform: translateY(-1px);
    }

    .navbar-nav .nav-link.active {
        background-color: #0d6efd;
        color: #fff !important;
    }

/* HERO SECTION STYLES */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-logo {
    width: 170%;
    height: 50%;
    margin-bottom: 10rem;
    margin-left: 2rem;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3));
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.manual-titleposition {
    position: absolute;
    bottom: 20rem;
    right: 5rem;
    z-index: 3;
    margin: 0;
    font-size: 13rem !important; /* force it to override any other styles */
    line-height: 1;
}

.manual-subtitleposition {
    position: absolute;
    bottom: 10.5rem;
    left: 4rem;
    margin: 0;
    font-size: 8rem !important; /* force it to override any other styles */
    line-height: 1;
    white-space: nowrap;
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 100;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-family: 'Lexend', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #b3b3b3;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    font-family: 'Lexend', sans-serif;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .hero-btn-primary:hover {
        background: #ffffff;
        color: #090909;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    }

.hero-btn-secondary {
    font-family: 'Lexend', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .hero-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    }

.manual-descriptionposition {
    position: absolute;
    bottom: 0.5rem; /* Adjust as needed */
    left: 4.5rem; /* Align with subtitle */
    font-size: 1.75rem;
    max-width: 700px;
    color: #b3b3b3;
    z-index: 3;
}

.manual-buttonposition {
    position: absolute;
    top: -1rem; /* Just above bottom padding */
    left: 4.5rem;
    z-index: 3;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    /* Universal responsive fix for smaller screens */

    .hero-section {
        padding: 2rem 1rem !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        padding-top: 1rem;
        width: 100%;
    }

    .hero-logo {
        width: 80% !important;
        height: auto !important;
        margin: 0 auto 2rem auto !important;
        display: block !important;
    }

    .manual-titleposition,
    .manual-subtitleposition,
    .manual-descriptionposition,
    .manual-buttonposition {
        position: static !important;
        margin: 1.5rem auto !important;
        text-align: center;
        width: 90% !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .manual-titleposition {
        font-size: clamp(2.5rem, 9vw, 5rem) !important;
        line-height: 1.1;
    }

    .manual-subtitleposition {
        font-size: clamp(2rem, 7vw, 4rem) !important;
        line-height: 1.2;
        white-space: normal !important;
    }

    .manual-descriptionposition {
        font-size: clamp(1rem, 3vw, 1.2rem) !important;
        line-height: 1.6;
    }

    .manual-buttonposition {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 90% !important;
        justify-content: center;
    }
}


/* PROJECTS SECTION STYLES */
.projects-section {
    background-color: #090909;
    padding: 80px 0;
    color: #ffffff;
}

.projects-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.projects-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.projects-description {
    font-family: 'Lexend', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #b3b3b3;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.projects-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    text-align: center;
}

/* PROJECTS SECTION STYLES */
.projects-section {
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

    .projects-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }

    .projects-section > .container {
        position: relative;
        z-index: 1;
    }

.projects-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.projects-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.projects-description {
    font-family: 'Lexend', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #b3b3b3;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.projects-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    text-align: center;
}

/* Project Cards */
.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 250px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card-large {
    height: 300px;
}

.project-card-small {
    height: 250px;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-bg {
    transform: scale(1.05);
}

.project-card-bg-pc {
    background-image: url('/images/dpc-pcbuilds.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .project-card-bg-pc::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 150, 136, 0.6) 0%, rgba(0, 188, 212, 0.4) 100%);
        background-blend-mode: overlay;
    }

.project-card-bg-fdas {
    background-image: url('/images/dpc-fdas.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .project-card-bg-fdas::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 87, 34, 0.6) 0%, rgba(255, 152, 0, 0.4) 100%);
        background-blend-mode: overlay;
    }

.project-card-bg-cctv {
    background-image: url('/images/dpc-cctv.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .project-card-bg-cctv::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(63, 81, 181, 0.6) 0%, rgba(121, 134, 203, 0.4) 100%);
        background-blend-mode: overlay;
    }

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    z-index: 2;
}

.project-card-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.project-card-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover .project-card-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-card-icon i {
    color: #ffffff;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .projects-title,
    .projects-subtitle {
        font-size: 2.5rem;
    }

    .projects-description {
        font-size: 1rem;
    }

    .project-card-large {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }

    .projects-title,
    .projects-subtitle {
        font-size: 2rem;
    }

    .projects-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .project-card,
    .project-card-large,
    .project-card-small {
        height: 200px;
    }

    .project-card-title {
        font-size: 1.1rem;
    }

    .project-card-overlay {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .projects-title,
    .projects-subtitle {
        font-size: 1.8rem;
    }

    .project-card-title {
        font-size: 1rem;
    }

    .project-card-icon {
        width: 35px;
        height: 35px;
    }

        .project-card-icon i {
            font-size: 0.9rem;
        }
}

.projects-header {
    position: relative;
    padding: 60px 0;
    margin-bottom: 60px;
    margin-left: -15px;
    margin-right: -15px;
    overflow: visible;
    background-image: url('/images/dpc-project-img.png');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

    .projects-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 135deg, rgba(139, 69, 19, 0.85) 0%, rgba(75, 0, 130, 0.80) 25%, rgba(147, 0, 211, 0.75) 50%, rgba(255, 20, 147, 0.70) 75%, rgba(255, 0, 255, 0.65) 100% );
        z-index: 1;
    }

    .projects-header::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(147, 0, 211, 0.4) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.2) 0%, transparent 60%);
        z-index: 2;
    }

.projects-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.projects-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.projects-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.projects-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.projects-section-title {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Responsive Design for Header */
@media (max-width: 992px) {
    .projects-header {
        padding: 50px 0;
        margin-bottom: 50px;
        margin-left: -15px;
        margin-right: -15px;
        background-attachment: scroll;
    }

    .projects-title,
    .projects-subtitle {
        font-size: 2.8rem;
    }

    .projects-description {
        font-size: 1.1rem;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .projects-header {
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .projects-title,
    .projects-subtitle {
        font-size: 2.2rem;
    }

    .projects-description {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .projects-header {
        padding: 30px 0;
        border-radius: 12px;
    }

    .projects-title,
    .projects-subtitle {
        font-size: 1.8rem;
    }

    .projects-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .projects-section-title {
        font-size: 1.3rem;
    }
}

/* Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.projects-subtitle {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* === FINAL OVERRIDE for .projects-section-title === */
.projects-section-title {
    font-size: 10rem;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    opacity: 1;
}

@media (max-width: 992px) {
    .projects-section-title {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .projects-section-title {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .projects-section-title {
        font-size: 2.8rem;
    }
}

/* Logo Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design for Hero Section */
@media (max-width: 992px) {
    .hero-title,
    .hero-subtitle {
        font-size: 3.5rem;
    }

    .hero-logo {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-bottom: 2rem;
        margin-left: 2rem;
        filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3));
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
        background-color: black;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-logo {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-bottom: 2rem;
        margin-left: 2rem;
        filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3));
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title,
    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .hero-description {
        font-size: 0.9rem;
    }
}

/* Main content area */
.main-content {
    min-height: calc(100vh - 140px);
    padding: 2rem 0;
}

/* Container adjustments */
.container {
    max-width: 1200px;
}

/* Remove default margins from headings */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

/* Button styles */
.btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
    }

/* Card styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

/* Footer styles */
footer {
    background-color: #090909 !important;
    margin-top: auto;
}

    footer a {
        transition: color 0.3s ease;
    }

        footer a:hover {
            color: #0d6efd !important;
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1rem;
    }

    .brand-text {
        display: none;
    }

    .brand-logo {
        width: 32px;
        height: 32px;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }

    body {
        padding-top: 70px;
    }
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Utility classes */
.text-gradient {
    background: linear-gradient(45deg, #0d6efd, #6610f2);
    -webkit-text-fill-color: transparent;
}

.shadow-custom {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Focus states for accessibility */
.nav-link:focus,
.btn:focus {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* Contact Hero Section */
.contact-hero {
    min-height: 100vh;
    background: #090909;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .contact-hero .container {
        position: relative;
        z-index: 2;
    }

/* Hero Title */
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sync-text {
    background: linear-gradient(45deg, #FF6666, #FF894C, #90FF55, #7B94F6, #FF77F1);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: 'Lexend', sans-serif;
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form Container */
.contact-form-container {
    background: #090909;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #FDFDFD;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 102, 102, 0.3), 0 0 40px rgba(255, 137, 76, 0.2), 0 0 60px rgba(144, 255, 85, 0.2), 0 0 80px rgba(123, 148, 246, 0.2), 0 0 100px rgba(255, 119, 241, 0.2);
}

    .contact-form-container::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #FF6666, #FF894C, #90FF55, #7B94F6, #FF77F1);
        background-size: 300% 300%;
        border-radius: 20px;
        z-index: -1;
        animation: gradientShift 3s ease-in-out infinite;
    }

    .contact-form-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #090909;
        border-radius: 18px;
        z-index: -1;
    }

/* Form Inputs */
.contact-input,
.contact-textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    padding: 15px 20px;
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .contact-input:focus,
    .contact-textarea:focus {
        background: rgba(255, 255, 255, 0.05);
        border-color: #4ecdc4;
        box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
        color: #ffffff;
    }

    .contact-input::placeholder,
    .contact-textarea::placeholder {
        color: rgba(255, 255, 255, 0.6);
        font-family: 'Lexend', sans-serif;
    }

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.contact-submit-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    padding: 15px 40px;
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

    .contact-submit-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #4ecdc4;
        color: #4ecdc4;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
    }

    .contact-submit-btn:active {
        transform: translateY(0);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .contact-input,
    .contact-textarea {
        padding: 12px 15px;
    }

    .contact-submit-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 25px 15px;
    }
}


/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: nowrap;
}

/* Individual Social Icon Styling */
.social-icon {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

    /* Hover state for the container */
    .social-icon:hover {
        transform: translateY(-8px) scale(1.1);
    }

    /* Icon image styling */
    .social-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: all 0.3s ease;
        filter: brightness(0.9);
    }

    /* Image hover effect - Glowing lines/outlines */
    .social-icon:hover img {
        filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px #FF6666) drop-shadow(0 0 12px #FF894C) drop-shadow(0 0 16px #90FF55) drop-shadow(0 0 20px #7B94F6) drop-shadow(0 0 24px #FF77F1);
        animation: glowPulse 2s ease-in-out infinite;
    }

/* Pulsing glow animation */
@keyframes glowPulse {
    0%, 100% {
        filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px #FF6666) drop-shadow(0 0 12px #FF894C) drop-shadow(0 0 16px #90FF55) drop-shadow(0 0 20px #7B94F6) drop-shadow(0 0 24px #FF77F1);
    }

    50% {
        filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 12px #FF6666) drop-shadow(0 0 16px #FF894C) drop-shadow(0 0 20px #90FF55) drop-shadow(0 0 24px #7B94F6) drop-shadow(0 0 28px #FF77F1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .social-icons {
        gap: 15px;
        padding: 15px;
        flex-wrap: wrap;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 10px;
        padding: 10px;
        flex-wrap: wrap;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }
}

/* Address styling with Lexend font */
address {
    font-family: 'Lexend', sans-serif;
    color: white;
    font-size: 0.875rem; /* small font size */
    margin-bottom: 1rem; /* mb-3 equivalent */
    font-style: normal; /* Remove default italic styling from address element */
    line-height: 1.5;
}

/* Alternative class-based approach if you prefer */
.address-lexend {
    font-family: 'Lexend', sans-serif;
    color: white;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-style: normal;
    line-height: 1.5;
}

/* Menu and Help Center Section Headers */
.col-md-2 h6 {
    font-family: 'Lexend', sans-serif;
    color: #555555;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Menu and Help Center Lists */
.col-md-2 ul {
    font-family: 'Lexend', sans-serif;
    list-style: none;
    padding: 0;
    margin: 0;
}

    /* Menu and Help Center List Items */
    .col-md-2 ul li {
        font-family: 'Lexend', sans-serif;
        margin-bottom: 0.5rem;
        color: white;
    }

        /* Menu and Help Center Links */
        .col-md-2 ul li a {
            font-family: 'Lexend', sans-serif;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 400;
            font-size: 0.9rem;
            line-height: 1.5;
        }

            /* Hover effects for links */
            .col-md-2 ul li a:hover {
                color: #f8f9fa;
                opacity: 0.8;
                transform: translateX(5px);
            }

/* Alternative more specific selectors if needed */
.menu-section h6,
.help-center-section h6 {
    font-family: 'Lexend', sans-serif;
    color: #555555;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.menu-section ul,
.help-center-section ul {
    font-family: 'Lexend', sans-serif;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .menu-section ul li,
    .help-center-section ul li {
        font-family: 'Lexend', sans-serif;
        margin-bottom: 0.5rem;
        color: white;
    }

        .menu-section ul li a,
        .help-center-section ul li a {
            font-family: 'Lexend', sans-serif;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 400;
            font-size: 0.9rem;
            line-height: 1.5;
        }

            .menu-section ul li a:hover,
            .help-center-section ul li a:hover {
                color: #f8f9fa;
                opacity: 0.8;
                transform: translateX(5px);
            }

/* General footer section styling with Lexend */
.footer-section {
    font-family: 'Lexend', sans-serif;
}

    .footer-section h6 {
        font-family: 'Lexend', sans-serif;
        color: #555555;
        margin-bottom: 1rem;
        font-weight: 600;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .footer-section ul {
        font-family: 'Lexend', sans-serif;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-section ul li {
            font-family: 'Lexend', sans-serif;
            margin-bottom: 0.5rem;
            color: white;
        }

            .footer-section ul li a {
                font-family: 'Lexend', sans-serif;
                color: white;
                text-decoration: none;
                transition: all 0.3s ease;
                font-weight: 400;
                font-size: 0.9rem;
                line-height: 1.5;
            }

                .footer-section ul li a:hover {
                    color: #f8f9fa;
                    opacity: 0.8;
                    transform: translateX(5px);
                }


/* COMPANY OFFER SECTION STYLES */
.offers-section {
    background-color: #090909;
    padding: 80px 0;
    color: #ffffff;
}


.offers-firsttitle {
    font-family: 'Lexend', sans-serif;
    font-size: 3rem;
    font-weight: 200;
    color: #ffffff;
    margin-bottom: 0;
}


.offers-secondpctitle {
    background: linear-gradient(to right, #a7363c, #671C68, #7B54B1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-top: -0.5rem;
}

.offers-secondcctvtitle {
    background: linear-gradient(to right, #5CE1FF, #5CFFB8, #56D86A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-top: -0.5rem;
}

.offers-secondfdastitle {
    background: linear-gradient(to right, #FF6666, #C34814, #F3A335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-top: -0.5rem;
}

.offers-seconddoorlocktitle {
    background: linear-gradient(to right, #BA1022, #EC0120, #FD6A59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-top: -0.5rem;
}

/* COMPANY OFFER SECTION STYLES - PHILIPPINE MAP */

/* Map Wrapper */
.map-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    width: 100%;
    overflow-x: hidden;
}

/* Container that scales and centers */
.map-scaler {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Inner that is scaled smaller to fit everything */
.map-scaler-inner {
    position: relative;
    width: 300px;
    height: 523px;
    transform: scale(calc(min(100vw, 1400px) / 1400)); /* Shrinks more than before */
    transform-origin: top center;
}

/* Absolute container for map elements */
.map-container {
    position: absolute;
    width: 300px;
    height: 523px;
    top: 0;
    left: 0;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.label {
    position: absolute;
    color: white;
    text-align: center;
}

.label-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.label-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.count-count {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
}

.count-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 1;
}

.pc-icon {
    width: 94px;
    height: auto;
}

.left-label {
    top: 50%;
    left: -250px;
    transform: translateY(-50%);
}

.right-label.top {
    top: 60px;
    right: -250px;
}

.right-label.bottom {
    bottom: 100px;
    right: -350px;
}

.line-image {
    position: absolute;
    width: 160px;
    height: auto;
    transform: translateY(-100%);
    transform-origin: bottom left;
}

/* Responsive fallback (optional) */
@media (max-width: 600px) {
    .left-label,
    .right-label.top,
    .right-label.bottom {
        position: static;
        text-align: center;
        margin-top: 1rem;
        transform: none;
    }

    .label-content {
        justify-content: center;
    }

    .line-image {
        display: none;
    }
}

.gradientpccolor-button {
    background: linear-gradient(135deg, #AC3838 0%, #671C68 25%, #7B54B1 75%, #000000 100%);
}

.gradientcctvcolor-button {
    background: linear-gradient(135deg, #5CE1FF 0%, #5CFFB8 25%, #56D86A 75%, #000000 100%);
}

.gradientfdascolor-button {
    background: linear-gradient(135deg, #FF6666 0%, #C34814 25%, #F3A335 75%, #000000 100%);
}

.gradientdoorlockcolor-button {
    background: linear-gradient(135deg, #BA1022 0%, #EC0120 25%, #FD6A59 75%, #000000 100%);
}

.gradient-button {
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(172, 56, 56, 0.3);
    outline: none;
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0 auto;
}

    .gradient-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(172, 56, 56, 0.4);
    }

    .gradient-button:active {
        transform: translateY(0);
    }


/*GRADIENT LOOP*/
/* GRADIENT LOOP WITH SHADOW */
@keyframes gradientCycle {
    0% {
        filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3)) hue-rotate(0deg);
    }

    50% {
        filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3)) hue-rotate(180deg);
    }

    100% {
        filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3)) hue-rotate(360deg);
    }
}

.glow-gradient {
    border: none;
    border-radius: 0;
    animation: gradientCycle 6s linear infinite;
    transition: all 0.3s ease-in-out;
}

/* And MANY MORE SECTION STYLES */
.andmanymore-section {
    background-color: #090909;
    padding: 80px 0;
    color: #ffffff;
}

.andmanymore-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 500;
    margin-top: -0.5rem;
    color: #ffffff;
}

.andmanymore-paragraph p {
    font-family: 'Lexend', sans-serif;
    font-size: 1.9rem;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 2rem;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
}
/* Responsive tweak */
@media (max-width: 768px) {
    .andmanymore-paragraph p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

/* Stats container styling */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
    margin-top: 3rem;
    text-align: center; /* optional, for fallback */
}

/* Each stat item */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 150px;
}

    /* Icon image */
    .stat-item img {
        width: 107px;
        height: 107px;
        margin-bottom: 1rem;
    }

/* Number styling */
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

/* Label styling */
.stat-label {
    font-family: 'Lexend', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 400;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .andmanymore-title {
        font-size: 3rem;
    }

    .stat-item {
        max-width: 120px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .stat-item img {
        width: 40px;
        height: 40px;
    }
}


/* Company Strength CSS */
.company-strength {
    background-color: #090909;
}

.title-strength {
    color: #FFF;
    font-size: 40px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.card-title {
    color: #FFF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
}

.card-str1.card, .card-str2.card, .card-str3.card {
    border: 1px solid;
    cursor: default;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

    .card-str1.card:hover {
        border: 3px solid;
        border-image: linear-gradient(to right, #7BF2FF, #4CA8FF, #2332D7) 1;
    }

    .card-str2.card:hover {
        border: 3px solid;
        border-image: linear-gradient(to right, #8409B4, #BD0595, #BD052D) 1;
    }

    .card-str3.card:hover {
        border: 3px solid;
        border-image: linear-gradient(to right, #F3F93B, #A3F93B, #51F93B) 1;
    }

        .card-str1.card:hover::before,
        .card-str2.card:hover::before,
        .card-str3.card:hover::before {
            content: "";
            position: absolute;
            top: 12px;
            right: -13px;
            width: 10px;
            height: 100%;
            background: #FDFDFD;
            z-index: 2;
        }

        .card-str1.card:hover::after,
        .card-str2.card:hover::after,
        .card-str3.card:hover::after {
            content: "";
            position: absolute;
            left: 20px;
            right: -10px;
            bottom: -12px;
            height: 10px;
            background: #FDFDFD;
            z-index: 2;
        }
/*Brands Animation CSS*/
.brands-animation {
    background-color: #090909;
}

.title-brands {
    color: #FFF;
    font-size: 40px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.brand-slider {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
    margin: 50px auto;
}

.brand-slider-track {
    display: flex;
    width: 200%;
    height: 100%;
    animation: slideLeft 20s linear infinite;
}

    .brand-slider-track > div {
        width: 50%;
        height: 100%;
        position: relative;
    }

    .brand-slider-track img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s ease;
    }

.brandgroup-default {
    opacity: 1;
    z-index: 1;
}

.brandgroup-hover {
    opacity: 0;
    z-index: 2;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*Customer Reviews*/
.reviews {
    position: relative;
    background-color: transparent;
    border: none;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
    z-index: 0;
}

    .reviews::after {
        content: "";
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 120%;
        height: 80%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.7) 100%), radial-gradient(circle at center, #A04AB3 0%, #660B23 40%, #1F0206 65%, transparent 100%);
        filter: blur(50px);
        /*  border-radius: 20%;*/
        z-index: 0;
        pointer-events: none;
    }

.title-reviews {
    color: #ffffff;
    font-size: 40px;
    font-weight: lighter;
    font-family: 'Lexend', sans-serif;
    z-index: 1;
}

.client-says {
    color: #FFF;
    font-weight: 100;
    font-family: 'Lexend', sans-serif;
}

.client-name {
    color: #AEAEAE;
    font-weight: 100;
    font-family: 'Lexend', sans-serif;
}

.card-reviews {
    background: rgba(9, 9, 9, 0.6);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.star-rating, .card-details {
    position: relative;
    top: -30px;
}

.review-img {
    width: 120px;
    height: 120px;
    top: -50px;
    position: relative;
    z-index: 2;
}

#reviewsCarousel {
    z-index: 1;
}

.carousel-control-prev, .carousel-control-next {
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

@media (min-width: 300px) and (max-width: 1280px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: auto;
        padding: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-control-prev {
        left: -20px;
    }

    .carousel-control-next {
        right: -20px;
    }
}

/*Contact Form*/
.contactForm {
    position: relative;
    background-color: #090909;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

    .contactForm::after {
        content: "";
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 120%;
        height: 200px;
        background: linear-gradient( 90deg, #FF6666 0%, #FF894C 48.53%, #90FF55 74.04%, #7B94F6 93.15%, #FF77F1 104.06% );
        filter: blur(80px);
        border-radius: 50%;
        z-index: 0;
    }

.title-contactForm {
    color: #FFF;
    font-size: 52px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
}

.title-contactDes {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
}

.title-contactSync {
    font-size: 52px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    background: linear-gradient(90deg, #FF6666 0%, #FF894C 48.53%, #90FF55 74.04%, #7B94F6 93.15%, #FF77F1 104.06%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

.card-contactForm.card {
    border: 2px solid;
    border-color: #FDFDFD;
    border-radius: 10px;
    background: #090909;
    transform: none !important;
    transition: none !important;
    z-index: 1;
}

/* About Section Styles */
.about-section {
    background: #090909;
    color: #eee;
    min-height: 80vh;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.about-video {
    max-width: 100%;
    height: 450px;
    object-fit: cover;
    background: #222;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 400px;
    margin-top: -2rem;
}


.about-label {
    font-family: 'Lexend', sans-serif;
    font-weight: 200;
    font-size: 24px;
    line-height: 1;
    color: #AEAEAE;
    transform: translate(-400px, -75px);
    text-align: left;
}

.about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    color: #FFFFFF;
    transform: translate(-175px, -60px);
}

.about-lead {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    color: inherit;
    margin-bottom: 1rem;
    transform: translate(-90px, -50px);
}

.about-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1;
    color: #bbb;
    margin-bottom: 1.5rem;
    transform: translate(-105px, -30px);
}

.about-btn {
    color: #d9d9d9;
    font-weight: 600;
    border-radius: 0;
    font-family: 'Lexend', sans-serif;
    transform: translate(-355px, 30px);
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .about-video {
        margin: 0 auto 1rem;
    }

    .about-title {
        font-size: 36px;
    }

    .about-lead,
    .about-desc {
        font-size: 18px;
    }

    .about-btn {
        font-size: 1rem;
        width: 100%;
    }
}


/* Team Section Styles */
.team-section {
    background-color: #111;
    color: #fff;
    padding-top: 3rem;
    padding-bottom: 0;
    margin-bottom: 0;
}

.team-intro {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.team-intro-icon {
    height: 0.8em;
    margin-left: -0.3em;
    position: relative;
    top: -0.4em;
}

.team-desc {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
}

.team-category {
    font-family: 'Lexend', sans-serif;
    font-weight: 100;
    font-size: 22vw;
    line-height: 1;
    text-align: center;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    margin-top: 12rem;
    padding: 0;
    display: block;
    width: 100%;
    word-break: break-word;
    transform: translateY(-120px);
}

/* Keyframes for smooth gradient shifting */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shared styling for all category titles */
.leaders-category,
.marketing-category,
.technicians-category,
.developers-category {
    font-family: 'Lexend', sans-serif;
    font-weight: 100;
    line-height: 1;
    text-align: center;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    overflow: hidden;
    background-image: linear-gradient(90deg, #74FEBD, #2FA2B7, #4B18E3, #FDFDFD);
    background-size: 400% 100%;
    background-repeat: no-repeat;
    animation: gradientShift 4s linear infinite;
}

.leaders-category {
    margin-top: 13rem;
    transform: translateY(-125px);
    font-size: 320px;
    animation-delay: 0s;
}

.marketing-category {
    margin-top: -3rem;
    transform: translateY(-157px);
    font-size: 235px;
    animation-delay: 0.5s;
}

.technicians-category {
    margin-top: -1rem;
    transform: translateY(-175px);
    font-size: 195px;
    animation-delay: 1s;
}

.developers-category {
    margin-top: -3rem;
    transform: translateY(-170px);
    font-size: 210px;
    animation-delay: 1.5s;
}

.leaders-group,
.marketing-group,
.technicians-group,
.developers-group {
    margin-bottom: 3rem;
}

.team-wrapper {
    margin-top: -120px;
    padding-bottom: 200px;
    position: relative;
}

.team-img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    margin-bottom: 1rem;
    margin-right: 0;
    transform: translateY(-245px);
}

.team-name {
    font-family: 'Lexend', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
    transform: translateY(-230px);
    text-align: center;
    white-space: nowrap;
}

.team-role {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
    transform: translateY(-215px);
    text-align: center;
}

.row.justify-content-center > [class*="col-"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 50px;
}

    .row.justify-content-center > [class*="col-"]:first-child {
        margin-left: 0;
    }

@media (max-width: 768px) {
    .team-category,
    .leaders-category,
    .marketing-category,
    .technicians-category,
    .developers-category {
        font-size: 12vw;
        margin-top: 2rem;
        transform: translateY(0);
    }

    .team-img {
        width: 120px;
        height: 120px;
        transform: none;
    }

    .team-name,
    .team-role {
        transform: none;
        font-size: 18px;
    }

    .row.justify-content-center > [class*="col-"] {
        margin-left: 0;
    }
}


/* Join Team Section  */
.join-team-section {
    background: linear-gradient(90deg, #7B9FFF 0%, #E17BCF 100%);
    padding: 4rem 1rem;
    color: #fff;
    margin-top: -25em;
    text-align: center;
}

.join-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    line-height: 1;
    color: #FDFDFD;
    margin-bottom: 1.5rem;
}

.join-btn {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1;
    color: #FDFDFD;
    border: 2px solid #fff;
    border-radius: 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    transition: all 0.3s ease;
    padding: 0.75em 2em;
    background: transparent;
    margin-top: 3em;
}

    .join-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.join-arrow-img {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
    margin-left: 0.3em;
}

@media (max-width: 768px) {
    .join-team-section {
        margin-top: -13rem;
    }
}
