/********** Template CSS **********/

/*** Modern Typography System ***/
:root {
    --font-display: 'Space Grotesk', 'Outfit', 'Inter', sans-serif;
    --font-heading: 'Outfit', 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', 'Space Grotesk', 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --navbar-height: 80px;
}

/* Global Typography */
* {
    font-family: var(--font-body);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.3px;
    color: #ffffff;
}

/* Heading Styles - Modern & Futuristic */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: none;
    margin-bottom: 20px;
    line-height: 1.2;
    word-spacing: -2px;
}

h1 {
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

h2 {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

h3 {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: -0.8px;
}

h4 {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 600;
    letter-spacing: -0.5px;
}

h5 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: uppercase;
}

/* Paragraph Styles */
p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.85);
}

p.lead {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.9);
}

p.small {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1px;
    color: rgba(255, 255, 255, 0.7);
}

/* Links */
a {
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

a:hover {
    color: var(--bs-primary);
}

/* Code/Mono */
code, pre, kbd, var {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 400;
}

/* Text Utilities */
.text-uppercase {
    letter-spacing: 1px;
    font-weight: 600;
}

.text-light {
    font-weight: 300;
    letter-spacing: 0.5px;
}

.text-bold {
    font-weight: 700;
    letter-spacing: -0.3px;
}

.text-display {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -1px;
}

.text-italic {
    font-style: italic;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner - Modern Loader ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: #0a0a0a;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-grow {
    width: 4rem !important;
    height: 4rem !important;
    animation: spinner-spin 1.5s linear infinite;
}

@keyframes spinner-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(0.9); }
    100% { transform: rotate(360deg) scale(1); }
}



/*** Button ***/
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    padding: 12px 32px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-square {
    width: 38px;
    height: 38px;
    padding: 0;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
    padding: 0;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    padding: 0;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
    border-radius: 50%;
}

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: .5s;
    min-height: var(--navbar-height);
    height: var(--navbar-height);
    background: rgba(20, 20, 30, 0.55) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    transition: background 0.4s, box-shadow 0.4s;
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }

    .navbar-collapse {
        position: relative !important;
        background: transparent !important;
        z-index: auto !important;
        max-height: none !important;
        overflow: visible !important;
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-collapse .navbar-nav {
        margin-top: 0 !important;
        border-top: none !important;
        flex-direction: row;
    }

    .navbar-collapse .pulse-btn {
        width: auto !important;
        margin-top: 0 !important;
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: calc(var(--navbar-height) / 2.2) 0;
    color: var(--bs-white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

/* Default navbar-collapse (can be overridden by media queries) */
.navbar-collapse {
    position: relative;
    background: transparent;
}

@media (max-width: 991.98px) {

    .navbar {
        min-height: var(--navbar-height);
        height: var(--navbar-height);
    }
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 16px 0;
        font-size: 15px;
        text-align: left;
        font-family: var(--font-body);
        font-weight: 500;
        letter-spacing: 0.5px;
    }
    .navbar .navbar-nav {
        margin-top: 0;
        border-top: none;
    }
    .navbar-collapse {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(20, 20, 30, 0.55);
        z-index: 9998;
        backdrop-filter: blur(16px) saturate(180%);
        -webkit-backdrop-filter: blur(16px) saturate(180%);
        border-bottom: 1.5px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 4px 32px rgba(0,0,0,0.10);
        overflow-y: auto;
        overflow-x: hidden;
        max-height: calc(100vh - var(--navbar-height));
        padding: 0 24px;
        transition: background 0.4s, box-shadow 0.4s;
    }
    .navbar-collapse .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    .navbar-collapse .pulse-btn {
        margin-top: 2rem;
        width: 100%;
        font-size: 16px;
        padding: 16px 0;
    }
    .navbar-toggler {
        border: none;
        outline: none;
        transition: all 0.3s ease;
        z-index: 9999;
        position: relative;
        background: transparent;
        box-shadow: none;
    }

    /* Hamburger Button Styling */
    .navbar-toggler {
        border: none;
        outline: none;
        transition: all 0.3s ease;
        z-index: 9999;
        position: relative;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 15, 130, 0.25);
        outline: none;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 28px;
        height: 28px;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 15, 130, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M5 5l20 20M25 5L5 25'/%3e%3c/svg%3e");
    }

    /* Enquiry Button Mobile Styling */
    .pulse-btn {
        width: 100%;
        margin-top: 1rem;
        padding: 12px 20px !important;
        font-size: 16px !important;
        border-radius: 8px;
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/*** Animated Hero Section (No Carousel) ***/
.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
    margin-top: var(--navbar-height);
}

.hero-slide {
    position: relative;
    background: #0a0a0a;
    min-height: calc(100vh - var(--navbar-height));
    overflow: hidden;
}

.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #0a0a0a 0%, #1a1a1a 25%, #0F0F2E 50%, #1a0033 75%, #0a0a0a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

.hero-animated-bg-2 {
    background: linear-gradient(-45deg, #0a0a0a 0%, #2a0845 25%, #1a1a3a 50%, #0F0F2E 75%, #0a0a0a 100%);
    animation: gradientShift2 18s ease infinite;
}

/* Animated gradient circles/blobs */
.hero-animated-bg::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 15, 130, 0.3) 0%, rgba(255, 15, 130, 0) 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-animated-bg::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.2) 0%, rgba(0, 150, 255, 0) 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 25s ease-in-out infinite 2s;
}

/* Animated grid overlay */
.hero-animated-bg {
    background-image: 
        linear-gradient(rgba(255, 15, 130, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 15, 130, 0.05) 1px, transparent 1px),
        linear-gradient(45deg, #0a0a0a 0%, #1a1a1a 25%, #0F0F2E 50%, #1a0033 75%, #0a0a0a 100%);
    background-size: 50px 50px, 50px 50px, 400% 400%;
    background-position: 0 0, 0 0, 0% 0%;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%, 0% 50%;
    }
    50% {
        background-position: 100% 50%, 100% 50%;
    }
    100% {
        background-position: 0% 50%, 0% 50%;
    }
}

@keyframes gradientShift2 {
    0% {
        background-position: 100% 50%, 100% 50%;
    }
    50% {
        background-position: 0% 50%, 0% 50%;
    }
    100% {
        background-position: 100% 50%, 100% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(-20px, -50px);
    }
    75% {
        transform: translate(-30px, 20px);
    }
}

/*** Hero Content ***/
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 80px 20px 20px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 80px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    max-width: 800px;
}

/*** Header ***/
/* Carousel styles removed — hero uses animated backgrounds now. */

/* Logo sizing via class (avoid inline fixed heights in HTML) */
.navbar-brand .logo-img {
    height: 80px;
    max-height: 80px;
}

/* Footer logo sizing (avoid inline fixed heights in HTML) */
.footer .logo-img-footer {
    height: 60px;
    max-height: 60px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    /* mobile hero sizing */
    .hero-section,
    .hero-slide {
        min-height: calc(100vh - var(--navbar-height));
        margin-top: var(--navbar-height);
        padding: 0 10px;
        align-items: flex-start;
        justify-content: center;
    }
    .hero-content {
        padding-top: 32px;
        padding-bottom: 32px;
        width: 100%;
        text-align: center;
    }
}

.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid rgba(255, 15, 130, 0.3);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: -1px;
    border-bottom: 2px solid var(--bs-primary);
    display: inline-block;
    padding-bottom: 10px;
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3rem solid rgba(0, 0, 0, .5);
    border-radius: 300px;
    z-index: 1;
}

.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(to right, var(--bs-secondary), var(--bs-dark));
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to left, var(--bs-secondary), var(--bs-dark));
}

@media (max-width: 767.98px) {

    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}

/* Service Text List Styling */
.service-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

/* Left-aligned service bullets */
.service-item.service-item-left .service-text ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--bs-light);
    font-weight: 500;
}

.service-item.service-item-left .service-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--bs-primary);
    font-weight: bold;
}

/* Right-aligned service bullets */
.service-item.service-item-right .service-text ul li {
    padding: 8px 0;
    padding-right: 25px;
    position: relative;
    color: var(--bs-light);
    font-weight: 500;
    text-align: right;
}

.service-item.service-item-right .service-text ul li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--bs-primary);
    font-weight: bold;
}


/* About Section Styling */
.about-features {
    background: rgba(255, 15, 130, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #FF0F82;
}

.about-feature-item {
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateX(10px);
}

.about-feature-item:hover .feature-icon {
    background: rgba(255, 15, 130, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
    transition: all 0.3s ease;
}

#about img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 15, 130, 0.3) !important;
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -1000px 0;
    }
}

.footer {
    background-image: url(../img/bgfooter.png);
    background-position: 0px 0px;
    background-repeat: repeat-x;
    animation: footerAnimatedBg 50s linear infinite;
}


/* Our Work */

.team-item {
    text-align: center;
}

.team-body {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Ensures all images align evenly */
.team-body img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

/* Align text and spacing */
.team-after {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: #f8f8f8;
}

.team-name h5 {
    margin-top: 15px;
}



/* Footer */

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-icons span {
    position: absolute;
    display: inline-block;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.06);
    animation: floatUp 12s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(1);
        opacity: 0;
    }

    30% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

/* Enquiry button */
.pulse-btn {
    animation: pulse 1.5s infinite;
    transition: 0.3s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(144, 10, 79, 0.6);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 20px 15px rgba(0, 123, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}


/* Our Work */

.team-item {
    padding: 15px;
    /* space around each card */
    border-radius: 20px;
    background: #111;
    transition: 0.3s ease-in-out;
}

.team-item:hover {
    transform: translateY(-8px);
}

.team-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
}

/* Spacing between title & items */
#work .title {
    margin-bottom: 40px;
}

/* Responsive Layout Tweaks */
@media (max-width: 992px) {
    .team-item img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .team-item {
        padding: 10px;
    }

    .team-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .team-item img {
        height: 180px;
    }
}


/* Testimonial Card */
.testimonial-card {
    background: linear-gradient(145deg, #1A1A1A, #0F0F0F);
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(255, 15, 130, 0.2);
    box-shadow: 0 0 25px rgba(255, 15, 130, 0.1);
    transition: 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(255, 15, 130, 0.4);
    border-color: #FF0F82;
}

/* Text */
.testimonial-text {
    font-size: 16px;
    color: #EAEAEA;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #FF0F82;
}

.client-info h5 {
    color: #ffffff;
    margin-bottom: 3px;
    font-size: 18px;
}

.client-info small {
    color: #FF0F82;
}


/* Testimonial Card */
.testimonial-card {
    background: linear-gradient(145deg, #1A1A1A, #0F0F0F);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 15, 130, 0.3);
    box-shadow: 0 0 25px rgba(255, 15, 130, 0.15);
    transition: 0.3s ease;
    height: 100%;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(255, 15, 130, 0.4);
    border-color: #FF0F82;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 16px;
    color: #E8E8E8;
    margin-bottom: 28px;
    line-height: 1.8;
}

/* Client Info */
.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-info h5 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 4px;
}

.client-info small {
    color: #FF0F82;
    font-size: 14px;
}

/* ===== FAQ Advanced Animations ===== */
.faq-accordion {
    animation: slideInUp 0.6s ease-out;
}

.faq-card {
    border: 2px solid rgba(255, 15, 130, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent !important;
}

.faq-card .card-header {
    background: rgba(15, 15, 15, 0.5) !important;
}

.faq-card:hover {
    border-color: #FF0F82 !important;
    box-shadow: 0 8px 24px rgba(255, 15, 130, 0.25) !important;
    transform: translateX(8px);
    background: rgba(20, 20, 20, 0.3) !important;
}

.faq-toggle {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    user-select: none;
    color: rgba(255, 255, 255, 0.95);
}

.faq-toggle:hover {
    color: #ff6b9d !important;
    text-shadow: 0 0 8px rgba(255, 15, 130, 0.3);
}

.faq-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.faq-card[aria-expanded="true"] .faq-icon,
.faq-toggle[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: #FF0F82;
}

.faq-body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.2px;
    animation: slideDown 0.4s ease-out;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: block;
    padding: 20px;
    color: rgba(255, 255, 255, 0.85);
}

/* FAQ Collapse Animation - Specific to FAQ items only */
.faq-accordion .collapse {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
}

.faq-accordion .collapse:not(.show) {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 !important;
}

.faq-accordion .collapse.show {
    max-height: 1500px;
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Professional Section Animations ===== */

/* Services Section Animation */
.service-item {
    animation: fadeInLeft 0.6s ease-out;
}

.service-item:nth-child(even) {
    animation: fadeInRight 0.6s ease-out;
}

.service-text,
.service-img {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-item:hover .service-text {
    transform: translateX(10px);
}

.service-item:hover .service-img {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1.1);
}

/* About Section Animation */
.about-features {
    animation: zoomIn 0.6s ease-out;
}

.about-feature-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-feature-item:hover {
    transform: translateY(-8px) scale(1.02);
}

.feature-icon {
    transition: all 0.4s ease;
}

.about-feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(-10deg);
    background: rgba(255, 15, 130, 0.2) !important;
}

/* Portfolio/Work Section Animation */
.team-item {
    animation: bounceIn 0.6s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 15, 130, 0.3);
}

.team-after {
    animation: slideUp 0.4s ease-out;
}

/* Footer Animation */
.footer {
    animation: fadeIn 0.8s ease-out;
}

.footer-section {
    transition: all 0.4s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
}

.footer a {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer a:hover {
    transform: translateX(8px) scale(1.05);
}

/* ===== Advanced Keyframe Animations ===== */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== Scroll Animations Enhancement ===== */
.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Button Animations ===== */
.pulse-btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pulse-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 15, 130, 0.4);
}

.pulse-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Whatsapp button */


.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 1.7s infinite;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 32px;
    height: 32px;
    filter: invert(0);
    /* pure black icon */
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 18px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* FAQ Styles */
.cursor-pointer {
    cursor: pointer;
    transition: all 0.3s ease;
}

.cursor-pointer:hover {
    color: #FF0F82 !important;
    transform: translateX(5px);
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 0 20px rgba(255, 15, 130, 0.3) !important;
    transform: translateY(-5px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, #FF0F82, #ff6b6b);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 15, 130, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 100px;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 15, 130, 0.6);
    background: linear-gradient(135deg, #ff6b6b, #FF0F82);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Professional Footer Styling */
.footer {
    position: relative;
    overflow: hidden;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #FF0F82 !important;
    text-decoration: none;
    transform: translateX(5px);
    display: inline-block;
}

.footer ul li a:hover {
    padding-left: 10px;
}

.btn-lg-square:hover {
    background-color: #FF0F82 !important;
    border-color: #FF0F82 !important;
    color: white !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 15, 130, 0.3);
}

@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }

    .footer h6 {
        margin-top: 1.5rem !important;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}