/* Normal */
@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/segoeuithis.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/segoeuithibd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/segoeuithisi.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

/* Bold Italic */
@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/segoeuithisz.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1;
    overflow-x: hidden;
}

/* Layout components */
.section-wrapper {
    width: 100%;
}


.device-mockup video {
    margin: 0 auto;
    width: 100%;
}
.content-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.hero-section {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 1) 100%);
    padding: 100px 0px 0px 0px;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* One-column hero section styles */
.hero-section.one-column {
    min-height: 250px;
    height: auto;
    background-image: url('../images/dj_hero_3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section.one-column .hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
    justify-content: center;
    padding: 0 0 40px 0;
    height: auto;
    min-height: 250px;
}

.hero-section.one-column .hero-overlay::before,
.hero-section.one-column .hero-overlay::after {
    display: none;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(1px);
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
    pointer-events: none;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}

.hero-section.one-column .hero-title {
    font-size: 42px;
}



.cta-content-container {
    display: grid;
    grid-template-columns: 100%;
}

.cta-content-container .left-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-content-container .right-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-content-container .right-container .app-badges {
    margin: 0;
}

div.cta-background {
    border: 3px solid #fff;
    border-radius: 15px;
}

.cta-overlay {
    background-color: rgb(0 0 0 / 67%);
    width: 100%;
    height: 100%;
    padding: 62px 32px;
    border-radius: 15px;
}

.cta-content-container h2.cta-title {
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 100%;
}

.cta-content-container p.cta-description {
    text-align: left;
    padding: 12px 0px;
    max-width: 330px;
}

.cta-content-container  a.btn.btn-primary {
    background-color: #00A1FF;
}
/* Navigation */
.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 96px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10015;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    padding: 16px 28px;
    box-shadow: 0px 1.19px 3.58px 0px #00000040;
    transition: all 0.3s ease, transform 0.3s ease;
}

.nav-header nav {
    position: relative;
}

.logo {
    width: 120px;
    height: auto;
    max-height: 39px;
}

.nav-menu {
    display: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.8);
}

.nav-link.active {
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-buttons .btn-primary.btn-small {
    border: 0px none #ffffff !important;
    padding: 0px 0px !important;
    color: #ffffff !important;
}

.nav-buttons .btn-primary.btn-small:hover {
    border: 0px none #ffffff !important;
    padding: 0px 0px !important;
    color: #fc561e !important;
    background-color: transparent;
}

.btn {
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 3px solid #ffffff;
}

.btn-primary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary {
    background-color: #fc561e;
    color: #ffffff;
}

.btn-small {
    padding: 10px 16px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary:hover {
    background-color: #fc561e;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #e04a1a;
}

.btn-pricing {
    background-color: transparent !important;
    color: #fc561e !important;
    border: 2px solid #fc561e !important;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
    margin: 18px 0;
}

.btn-pricing:hover {
    background-color: #fc561e;
    color: #ffffff;
    transform: scale(1.05);
}

.btn-pricing-filled {
    background-color: #fc561e !important;
    color: #ffffff !important;
    border: 2px solid #fc561e !important;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
    margin: 18px 0;
}

.btn-pricing-filled:hover {
    background-color: #e04a1a;
    color: #ffffff;
    transform: scale(1.05);
}

.pricing-card-popular {
    border: 2px solid #fc561e !important;
    box-shadow: 0px 8px 24px rgba(252, 86, 30, 0.2) !important;
    position: relative;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fc561e;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Hero Animations */
.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 5;
    animation: heroFadeIn 1.5s ease-out forwards;
}

@keyframes heroFadeIn {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}



@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typewriterFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn.btn-secondary {
    opacity: 0;
    transform: translateY(30px);
    animation: buttonSlideUp 0.8s ease-out 2s forwards;
}

@keyframes buttonSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-badges {
    opacity: 0;
    transform: translateY(30px);
    animation: badgesSlideUp 0.8s ease-out 2.4s forwards;
}

@keyframes badgesSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-badge {
    opacity: 0;
    transform: translateY(20px);
}

.app-badge:nth-child(1) {
    animation: badgeStagger 0.6s ease-out 2.6s forwards;
}

.app-badge:nth-child(2) {
    animation: badgeStagger 0.6s ease-out 2.8s forwards;
}

.app-badge:nth-child(3) {
    animation: badgeStagger 0.6s ease-out 3s forwards;
}

.app-badge:nth-child(4) {
    animation: badgeStagger 0.6s ease-out 3.2s forwards;
}

@keyframes badgeStagger {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography */
.hero-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: contentFadeIn 1s ease-out 1s forwards;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: typewriterFade 2s ease-out 1.2s forwards;
}

.hero-title .highlight {
    background: linear-gradient(185deg, #fc561e 0%, #dc491d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: contentFadeIn 1s ease-out 1.6s forwards;
}

.hero-description .bold {
    font-weight: 700;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 26px;
}

.testimonials-left-content .section-title {
    text-align: left;
}

.section-title .highlight {
    background: linear-gradient(185deg, #fc561e 0%, #c3380e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
    margin-bottom: 32px;
}

.testimonials-left-content .section-description {
    text-align: left;
}

/* App Store Badges */
.app-badges-container {
    position: relative;
    margin-top: 30px;

}

.app-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.app-badge {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.app-badge:hover {
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    padding: 0px 0;
    background-color: #000000;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    margin-bottom: 110px;
    opacity: 0;
    animation: statsGridFadeIn 1s ease-out 1s forwards;
}

@keyframes statsGridFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.stat-number {
    font-size: 32px;
    font-weight: 600;
    color: #fc561e;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Feature Sections */
.feature-section {
    padding: 60px 0;
    text-align: center;
}

.feature-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 58px auto 0;
    border-radius: 12px;
}

.device-mockup {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.feature-section.match-moment img.feature-image {
    max-width: 100%;
}

.device-frame {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.device-screen {
    position: absolute;
    top: 8%;
    left: 8%;
    width: 84%;
    height: 84%;
    border-radius: 8px;
    background-color: #000000;
}

/* Gallery Container */
.gallery-container {
    width: 100%;
    overflow: visible;
    margin: 60px 0;
}

.gallery-scroll {
    display: flex;
    animation: scrollLeft 60s linear infinite;
    gap: 32px;
}

.gallery-card {
    flex: 0 0 420px;
    width: 320px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    98% {
        opacity: 1;
    }
    100% {
        transform: translateX(-330%);
        opacity: 0;
    }
}

.gallery-bg{
   
    background-image: url('../images/gallery_bg.jpg');
    background-size: cover;
    background-position: center;
}
.gallery-bg-overlay{
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.6) 50%, #000000 100%);

}
.phone-features-left{
    position: absolute; 
    left: -100px; 
    bottom: 10%; 
    display: flex; 
    flex-direction: column; 
    gap: 10px;
}

.phone-features-right{
    position: absolute; 
    right: -120px; 
    top: 15%; 
    display: flex; 
    flex-direction: column; 
    gap: 10px;
}
.gallery-card .gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.gallery-card .gallery-label {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .gallery-scroll {
        animation-duration: 40s;
    }
}

@media (max-width: 768px) {
    .gallery-card {
        flex: 0 0 280px;
        width: 280px;
        padding: 12px;
    }
    
    .gallery-card .gallery-image {
        height: 180px;
    }
    
    /* App badges 2x2 grid layout for mobile */
    .app-badges {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 10px;
        justify-items: center;
        align-items: center;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .app-badge {
        width: 220px;
        max-width: 220px;
        height: auto;
    }
}

@media (max-width: 480px) {

.device-mockup {
    text-align: center;
    overflow: hidden;
}

.device-mockup video {
    width: 170% !important;
    margin: 0px auto;
    display: block;
    transform: translateX(-20.59%);
}

.feature-section.stay-in-the-zone .phone-section {
    text-align: center;
    overflow: hidden;
}

.feature-section.stay-in-the-zone .phone-section video {
    width: 118% !important;
    margin: 0 auto;
    display: block;
    transform: translateX(-7.63%);
}


    .gallery-card {
        flex: 0 0 250px;
        width: 250px;
        padding: 10px;
    }

    section.hero-section:not(.one-column), div.hero-overlay:not(.hero-section.one-column .hero-overlay) {
    min-height: 1000px !important;
}
    
    section.hero-section.one-column, section.hero-section.one-column div.hero-overlay {
        min-height: 250px !important;
        height: auto !important;
    }
    
    .gallery-card .gallery-image {
        height: 160px;
    }
    
    .gallery-card .gallery-label {
        font-size: 14px;
    }
    
    /* Additional mobile contact form adjustments */
    .contact-form {
        padding: 0 8px;
    }
    
    .form-input, .form-textarea {
        font-size: 16px;
        padding: 16px 12px;
    }
    
    .form-header {
        margin-bottom: 20px;
    }
    
    .form-title {
        font-size: 18px !important;
    }
    
    .form-subtitle {
        font-size: 24px !important;
    }
} 
img.service-logo.paypal, img.service-logo.visa {
    padding: 1.5px;
    background: white;
    border-radius: 5px;
}
/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

section.hero-section:not(.one-column),  div.hero-overlay:not(.hero-section.one-column .hero-overlay) {
    min-height: 700px;
}

section.hero-section.one-column, section.hero-section.one-column div.hero-overlay {
    min-height: 250px;
    height: auto;
}

.feature-section.merch-store .phone-section {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 70px;
    background-image: url("../images/Ellipse-17.png");
     background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.service-category {
    text-align: center;
    margin-bottom: 42px;
}
img.service-logo.social-media-icons {
    height: auto;
}

img.service-logo.phone {
    height: auto;
    transform: none !important;
    max-width: 100%;
}

img.service-logo.youtube {
    height: 25px;
}

img.service-logo.tidal {
    height: 20px;
}
.service-title {
    font-size: 32px;
    font-weight: 700;
    color: #fc561e;
    margin-top: 32px;
    margin-bottom: 20px;
    text-shadow: 0px 4px 12px rgba(30, 215, 96, 0.1);
}


.pricing-grid {
    background-image: url(../images/ellipse-bg.png);
    background-size: contain;
    background-position: center;
}

.service-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}

.service-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.service-logo:hover {
    transform: scale(1.1);
}

/* Phone Mockup */
.phone-section {
    position: relative;
    margin: 26px 0;
    text-align: center;
}

.phone-mockup {
    position: relative;
    display: inline-block;
    max-width: 400px;
}

.phone-frame {
    width: 100%;
    height: auto;
}

.phone-features {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.feature-icon {
    width: 26px;
    height: 26px;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    text-align: center;
}

.pricing-toggle {
    display: inline-flex;
    background-color: #fc561e;
    border-radius: 25px;
    padding: 4px;
    margin: 30px 0 60px;
    align-items: center;
    gap: 0;
    width: auto;
    max-width: 100%;
}

.toggle-option {
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pricing-card .plan-name, .pricing-card .plan-price, .pricing-card .plan-description {
    text-align: left;
}

.pricing-card .plan-description {
 margin-top: 15px;
}

.pricing-card .plan-features > p {
    margin-bottom: 10px;
}
.faq-answer {
    text-align: left;
}
.toggle-option.active {
    background-color: #ffffff;
    color: #000000;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #111111;
    color: #ffffff;
    border-radius: 20px;
    padding: 34px 26px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.plan-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-period {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 18px;
}

.plan-description {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #888;
}

.plan-features {
    text-align: left;
    margin: 18px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.5;
}

.feature-icon-check {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    padding: 110px 0;
    text-align: center;
}

/* Two-column FAQ Content Styling */
.two-column .content-container {
    padding-top: 0px;
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.two-column .faq-sidebar {
    background-color: #111111;
    color: #ffffff;
    padding: 30px 25px;
    margin-top: 40px;
    border-radius: 20px;
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.two-column .faq-sidebar h5 {
 
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
}

.two-column .faq-sidebar a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.4;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.two-column .faq-sidebar a:hover {
    color: #fc561e;
}

.two-column .faq-sidebar a:last-child {
    border-bottom: none;
}

.two-column .faq-content {
    background-color: #000000;
    color: #ffffff;
    padding: 0px 40px;
    border-radius: 20px;
    flex: 1;
    text-align: left;
}

.two-column .faq-content h1 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.two-column .faq-content h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    font-family: 'Poppins', sans-serif;
}

.two-column .faq-content p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.two-column .faq-content p b {
    color: #ffffff;
    font-weight: 700;
}

.two-column .faq-content a {
    color: #3a86ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.two-column .faq-content a:hover {
    color: #fc561e;
    text-decoration: underline;
}

.two-column .faq-content section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(252, 86, 30, 0.2);
}

.two-column .faq-content section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-list {
    max-width: 1000px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: #111111;
    color: #ffffff;
    border-radius: 20px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item.active {
        background-color: #eeeeee;
    color: #111111;
    border: 2px solid #fc561e;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    padding: 26px 32px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}
.feature-section.stay-in-the-zone .phone-section {
    width: 100%;
    max-width: 100%;
    position: static;
    display: block;
}
.testimonial-card.slick-slide {
    margin: 0px 10px;
}

.feature-section.stay-in-the-zone .phone-section video {
    width: 110%;
    margin: 0 auto;
    display: block;
    transform: translateX(-5%);
}
.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.050);
}

.faq-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 32px;
    font-size: 16px;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 26px;
}


/* Testimonials */
.testimonials-section {
    background: #000000;
    padding: 0px 0;
    overflow: visible;
}

.testimonials-photos-stars-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonials-star-rating {
    display: flex;
    gap: 3px;
    align-items: center;
}

.star-icon {
    color: #ffd700;
    font-size: 24px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.testimonials-main-layout {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.testimonials-left-content {
    flex: 1;
    max-width: 50%;
    position: relative;
    overflow: visible;
}

.testimonial-photos-grid {
    position: relative;
}

.testimonials-right-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 400px;
}

.testimonials-cta {
    background: #ff6b35;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.testimonials-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.testimonial-photos-grid {
    display: flex;
    align-items: center;
    margin: 8px 0;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.testimonial-photo-item {
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    overflow: visible;
    transition: all 0.3s ease;
    width: 64px;
    height: 64px;
    border: 2px solid #ffffff;
    margin-left: -12px;
    z-index: 2;
}

.testimonial-photo-item:first-child {
    margin-left: 0;
}

.testimonial-photo-item:nth-child(2) {
    z-index: 3;
}

.testimonial-photo-item:nth-child(3) {
    z-index: 4;
}

.testimonial-photo-item:nth-child(4) {
    z-index: 5;
}

.testimonial-photo-item:hover {
    z-index: 20;
    transform: scale(1.1);
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-hover-content {
    position: absolute;
    bottom: 70px;
    left: -20px;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    text-align: left;
    pointer-events: none;
    display: none;
}

.testimonial-photo-item:hover .testimonial-hover-content {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(5px);
}

.testimonial-hover-content h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.testimonial-hover-content p {
    color: #b0b0b0;
    font-size: 12px;
    margin: 0 0 8px 0;
}

.testimonial-hover-content .testimonial-text {
    color: #e0e0e0;
    font-size: 11px;
    line-height: 1.4;
    margin: 8px 0 0 0;
    font-style: italic;
}

.rating {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
}

.star {
    width: 10px;
    height: 10px;
    background: #ff6b35;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.trusted-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
}

.trusted-text {
    font-size: 17px;
    font-weight: 700;
    
    color: #ffffff;
    margin: 0;
}

.trust-badges {
    display: flex;
    gap: 20px;
}

.trust-badge {
    width: 42px;
    height: 42px;
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
    .testimonials-main-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .testimonials-left-content {
        max-width: 100%;
    }
    
    .testimonials-right-content {
        min-height: auto;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .testimonial-photo-item {
        width: 56px;
        height: 56px;
        margin-left: -10px;
    }
    
    .testimonials-cta {
        padding: 14px 28px;
        font-size: 14px;
    }
}


@media (max-width: 480px) {

.cta-content-container a.btn.btn-primary {
    width: 100% !important;
}

a.btn.btn-secondary {
    width: 100% !important;
}
.testimonials-right-content {
        width: 100%;
    }    

a.btn.btn-primary.testimonials-cta {

width: 100% !important;
}
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-main-layout {
        gap: 30px;
    }
    
    .testimonial-photos-grid {
        margin: 30px 0;
        justify-content: center;
    }
    
    .testimonial-photo-item {
        width: 48px;
        height: 48px;
        margin-left: -8px;
    }
    
    .trusted-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    
}

.testimonial-card {
    background-color: #ffffff;
    color: #000000;
    border-radius: 26px;
    padding: 20px 16px;
    text-align: left;
}

.testimonial-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 82px;
    height: 82px;
    border-radius: 40px;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fc561e;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: #696969;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.3;
    color: #9a9898;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}


.testimonials-header{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.testimonials-intro {
    width: 30%;
}

.testimonials-intro h2 {
    text-align: left;
    margin-bottom: 20px;
}

.testimonials-intro p {
    text-align: left;
}

.testimonials-grid {
  width: 65%;
}


/* Styling the slick carousel buttons */
.slick-prev, .slick-next {
  background-color:transparent;  /* Semi-transparent background */
  border: none;
  font-size: 20px;  /* Adjust size of text/icon */
  padding: 10px;  /* Padding inside the buttons */
  width: 45px;  /* Button width */
  height: 45px;  /* Button height */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;  /* Make sure buttons are on top */
}

.slick-prev {
  right: 60px;  /* Position Previous button on the left */
}

.slick-next {
  right: 0px;  /* Position Next button on the right */
}

.slick-prev:before, .slick-next:before {
  content: '';  /* Remove default arrow */
}

.slick-prev:after, .slick-next:after {
  content: '←';  /* Previous button left arrow */
  font-size: 25px; /* Adjust arrow size */
}

.slick-next:after {
  content: '→';  /* Next button right arrow */
}

.slick-prev, .slick-next {
  position: absolute;
  bottom: -85px;  /* Position buttons at the bottom */
  z-index: 1000;  /* Ensure buttons stay on top */
  content-visibility: hidden;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.6) 50%, #000000 100%);
    padding: 118px 0;
    text-align: center;
    position: relative;
}

.cta-background {
    width: 100%;
    height: 100%;
    background-image: url('../images/img_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-logo {
    width: 300px;
    height: auto;
    margin-bottom: 24px;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 56px;
}

.footer-content {
    display: flex;
    gap: 40px;
    margin-bottom: 142px;
}

.service-category-container.first .service-category {
    margin-bottom: 100px;
}

.footer-brand {
    margin-bottom: 20px;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    width: 150px;
    height: auto;
}

.footer-links {
    display: flex;
    grid-template-columns: 1fr;
    gap: 40px;
    flex-grow: 1;

}

.contact-form {
    flex: 1.5;
}

.contact-form .form-row {
    flex-grow: 1;
}

.contact-form .form-row input {
    flex: 1;
}

.contact-form button.btn {
    max-width: 200px;
    align-self: end;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fc561e;
   margin-top: 22px;
    margin-bottom: 22px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fc561e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    grid-template-columns: 1fr;
    gap: 12px;
}

.form-input {
    padding: 14px 12px;
    border: 1px solid #eceef0;
    border-radius: 8px;
    background-color: #f8f9fa;
    color: #4f5a68;
    font-size: 16px;
}

.form-textarea {
    padding: 22px 12px;
    border: 1px solid #eceef0;
    border-radius: 8px;
    background-color: #f8f9fa;
    color: #4f5a68;
    font-size: 16px;
    min-height: 120px;
    resize: vertical;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 20px;
    color: #ffffff;
}

/* Sparkle Effects */
.app-badges {
    position: relative;
}

.sparkles {
    position: absolute;
    bottom: -83px;
    left: 0;
    width: 100%;
    height: 140px;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.sparkles::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 620px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(135, 206, 235, 0.8) 20%, rgba(255, 105, 180, 0.8) 50%, rgba(135, 206, 235, 0.8) 80%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0 0 8px rgba(135, 206, 235, 0.6), 0 0 16px rgba(255, 105, 180, 0.4);
    border-radius: 1px;
}

.sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    animation: sparkleFloat 3s infinite ease-in-out;
    opacity: 0;
    box-shadow: 0 0 4px #ffffff, 0 0 8px rgba(255, 255, 255, 0.6);
}

.sparkle.blue {
    background: rgba(135, 206, 235, 0.9);
    box-shadow: 0 0 4px rgba(135, 206, 235, 0.8), 0 0 8px rgba(135, 206, 235, 0.6);
}

.sparkle.pink {
    background: rgba(255, 105, 180, 0.9);
    box-shadow: 0 0 4px rgba(255, 105, 180, 0.8), 0 0 8px rgba(255, 105, 180, 0.6);
}

/* Edge sparkles */
.sparkle:nth-child(1) { left: 10%; top: 50px; animation-delay: 0s; animation-duration: 4s; width: 1px; height: 1px; }
.sparkle:nth-child(2) { left: 20%; top: 60px; animation-delay: 0.5s; animation-duration: 4.5s; width: 2px; height: 2px; }
.sparkle:nth-child(3) { left: 80%; top: 55px; animation-delay: 1s; animation-duration: 4.2s; width: 1px; height: 1px; }
.sparkle:nth-child(4) { left: 90%; top: 65px; animation-delay: 1.5s; animation-duration: 4.8s; width: 2px; height: 2px; }
.sparkle:nth-child(5) { left: 15%; top: 70px; animation-delay: 2s; animation-duration: 4.3s; width: 1px; height: 1px; }
.sparkle:nth-child(6) { left: 85%; top: 75px; animation-delay: 2.5s; animation-duration: 4.6s; width: 2px; height: 2px; }

/* Middle concentrated sparkles */
.sparkle:nth-child(7) { left: 35%; top: 50px; animation-delay: 0.2s; animation-duration: 5s; width: 2px; height: 2px; }
.sparkle:nth-child(8) { left: 40%; top: 58px; animation-delay: 0.7s; animation-duration: 5.5s; width: 3px; height: 3px; }
.sparkle:nth-child(9) { left: 45%; top: 53px; animation-delay: 1.2s; animation-duration: 5.2s; width: 2px; height: 2px; }
.sparkle:nth-child(10) { left: 50%; top: 62px; animation-delay: 1.7s; animation-duration: 5.8s; width: 3px; height: 3px; }
.sparkle:nth-child(11) { left: 55%; top: 56px; animation-delay: 2.2s; animation-duration: 5.3s; width: 2px; height: 2px; }
.sparkle:nth-child(12) { left: 60%; top: 65px; animation-delay: 2.7s; animation-duration: 5.6s; width: 3px; height: 3px; }
.sparkle:nth-child(13) { left: 65%; top: 52px; animation-delay: 0.3s; animation-duration: 5.1s; width: 2px; height: 2px; }
.sparkle:nth-child(14) { left: 42%; top: 68px; animation-delay: 0.8s; animation-duration: 5.4s; width: 1px; height: 1px; }
.sparkle:nth-child(15) { left: 48%; top: 60px; animation-delay: 1.3s; animation-duration: 5.7s; width: 3px; height: 3px; }
.sparkle:nth-child(16) { left: 52%; top: 70px; animation-delay: 1.8s; animation-duration: 5.2s; width: 2px; height: 2px; }
.sparkle:nth-child(17) { left: 58%; top: 54px; animation-delay: 2.3s; animation-duration: 5.5s; width: 1px; height: 1px; }
.sparkle:nth-child(18) { left: 38%; top: 64px; animation-delay: 2.8s; animation-duration: 5.8s; width: 2px; height: 2px; }
.sparkle:nth-child(19) { left: 62%; top: 72px; animation-delay: 0.4s; animation-duration: 5.3s; width: 3px; height: 3px; }
.sparkle:nth-child(20) { left: 46%; top: 66px; animation-delay: 0.9s; animation-duration: 5.6s; width: 1px; height: 1px; }
.sparkle:nth-child(21) { left: 54%; top: 58px; animation-delay: 1.4s; animation-duration: 5.1s; width: 2px; height: 2px; }
.sparkle:nth-child(22) { left: 44%; top: 74px; animation-delay: 1.9s; animation-duration: 5.4s; width: 3px; height: 3px; }
.sparkle:nth-child(23) { left: 56%; top: 68px; animation-delay: 2.4s; animation-duration: 5.7s; width: 2px; height: 2px; }
.sparkle:nth-child(24) { left: 49%; top: 55px; animation-delay: 0.1s; animation-duration: 5.9s; width: 1px; height: 1px; }
.sparkle:nth-child(25) { left: 51%; top: 76px; animation-delay: 0.6s; animation-duration: 5.2s; width: 2px; height: 2px; }
.sparkle:nth-child(26) { left: 47%; top: 62px; animation-delay: 1.1s; animation-duration: 5.5s; width: 3px; height: 3px; }
.sparkle:nth-child(27) { left: 53%; top: 71px; animation-delay: 1.6s; animation-duration: 5.8s; width: 2px; height: 2px; }
.sparkle:nth-child(28) { left: 41%; top: 57px; animation-delay: 2.1s; animation-duration: 5.3s; width: 1px; height: 1px; }
.sparkle:nth-child(29) { left: 59%; top: 78px; animation-delay: 2.6s; animation-duration: 5.6s; width: 2px; height: 2px; }
.sparkle:nth-child(30) { left: 43%; top: 61px; animation-delay: 0.25s; animation-duration: 5.4s; width: 3px; height: 3px; }

/* Additional sparkles 31-60 */
.sparkle:nth-child(31) { left: 37%; top: 59px; animation-delay: 0.35s; animation-duration: 4.8s; width: 1px; height: 1px; }
.sparkle:nth-child(32) { left: 63%; top: 67px; animation-delay: 0.85s; animation-duration: 5.2s; width: 2px; height: 2px; }
.sparkle:nth-child(33) { left: 45%; top: 63px; animation-delay: 1.35s; animation-duration: 5.6s; width: 3px; height: 3px; }
.sparkle:nth-child(34) { left: 55%; top: 51px; animation-delay: 1.85s; animation-duration: 4.9s; width: 1px; height: 1px; }
.sparkle:nth-child(35) { left: 39%; top: 73px; animation-delay: 2.35s; animation-duration: 5.3s; width: 2px; height: 2px; }
.sparkle:nth-child(36) { left: 61%; top: 61px; animation-delay: 0.45s; animation-duration: 5.7s; width: 3px; height: 3px; }
.sparkle:nth-child(37) { left: 33%; top: 56px; animation-delay: 0.95s; animation-duration: 4.7s; width: 1px; height: 1px; }
.sparkle:nth-child(38) { left: 67%; top: 69px; animation-delay: 1.45s; animation-duration: 5.1s; width: 2px; height: 2px; }
.sparkle:nth-child(39) { left: 41%; top: 65px; animation-delay: 1.95s; animation-duration: 5.5s; width: 3px; height: 3px; }
.sparkle:nth-child(40) { left: 59%; top: 53px; animation-delay: 2.45s; animation-duration: 4.6s; width: 1px; height: 1px; }
.sparkle:nth-child(41) { left: 47%; top: 77px; animation-delay: 0.55s; animation-duration: 5.0s; width: 2px; height: 2px; }
.sparkle:nth-child(42) { left: 53%; top: 59px; animation-delay: 1.05s; animation-duration: 5.4s; width: 3px; height: 3px; }
.sparkle:nth-child(43) { left: 36%; top: 71px; animation-delay: 1.55s; animation-duration: 4.8s; width: 1px; height: 1px; }
.sparkle:nth-child(44) { left: 64%; top: 57px; animation-delay: 2.05s; animation-duration: 5.2s; width: 2px; height: 2px; }
.sparkle:nth-child(45) { left: 50%; top: 75px; animation-delay: 2.55s; animation-duration: 5.6s; width: 3px; height: 3px; }
.sparkle:nth-child(46) { left: 44%; top: 54px; animation-delay: 0.65s; animation-duration: 4.9s; width: 1px; height: 1px; }
.sparkle:nth-child(47) { left: 56%; top: 66px; animation-delay: 1.15s; animation-duration: 5.3s; width: 2px; height: 2px; }
.sparkle:nth-child(48) { left: 40%; top: 79px; animation-delay: 1.65s; animation-duration: 5.7s; width: 3px; height: 3px; }
.sparkle:nth-child(49) { left: 60%; top: 62px; animation-delay: 2.15s; animation-duration: 4.7s; width: 1px; height: 1px; }
.sparkle:nth-child(50) { left: 48%; top: 52px; animation-delay: 2.65s; animation-duration: 5.1s; width: 2px; height: 2px; }
.sparkle:nth-child(51) { left: 52%; top: 74px; animation-delay: 0.75s; animation-duration: 5.5s; width: 3px; height: 3px; }
.sparkle:nth-child(52) { left: 34%; top: 64px; animation-delay: 1.25s; animation-duration: 4.6s; width: 1px; height: 1px; }
.sparkle:nth-child(53) { left: 66%; top: 58px; animation-delay: 1.75s; animation-duration: 5.0s; width: 2px; height: 2px; }
.sparkle:nth-child(54) { left: 42%; top: 76px; animation-delay: 2.25s; animation-duration: 5.4s; width: 3px; height: 3px; }
.sparkle:nth-child(55) { left: 58%; top: 55px; animation-delay: 2.75s; animation-duration: 4.8s; width: 1px; height: 1px; }
.sparkle:nth-child(56) { left: 46%; top: 68px; animation-delay: 0.15s; animation-duration: 5.2s; width: 2px; height: 2px; }
.sparkle:nth-child(57) { left: 54%; top: 80px; animation-delay: 0.65s; animation-duration: 5.6s; width: 3px; height: 3px; }
.sparkle:nth-child(58) { left: 38%; top: 60px; animation-delay: 1.15s; animation-duration: 4.9s; width: 1px; height: 1px; }
.sparkle:nth-child(59) { left: 62%; top: 72px; animation-delay: 1.65s; animation-duration: 5.3s; width: 2px; height: 2px; }
.sparkle:nth-child(60) { left: 49%; top: 56px; animation-delay: 2.15s; animation-duration: 5.7s; width: 3px; height: 3px; }

@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(0px) scale(0);
    }
    15% {
        opacity: 1;
        transform: translateY(10px) scale(1);
    }
    85% {
        opacity: 0.8;
        transform: translateY(80px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(120px) scale(0);
    }
}

.btn {
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    position: relative;
}

/* Interactive states */
.interactive:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.card-hover:hover {
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}
.feature-section a.btn.btn-secondary {
    display: block;
    width: 195px;
    margin: 0 auto;
}

p.section-description {margin: 0 auto;margin-bottom: 32px;}

p.hero-description {
    max-width: 897px;
    margin: 0 auto;
    margin-bottom: 32px;
}

.hero-content {
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: contentFadeIn 1s ease-out 0.8s forwards;
}

.hero-content a.btn.btn-secondary {
    margin: 0 auto;
    display: block;
    width: 195px;
}

.testimonials-section h2.section-title {
    font-size: 32px;
}

.testimonials-section   p.section-description {
    font-size: 20px;
    margin-bottom: 12px;
}

section.section-wrapper.testimonials-section {
    padding: 50px 0px;
}


div.footer-brand > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* div.footer-brand .footer-logo {
    width: 243px;
    height: auto;
} */

/* Responsive media queries */
@media (min-width: 640px) {
    .content-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .section-description {
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }


    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 24px;
    }
    
    .gallery-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
 
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1025px) {
    .content-container {
        padding-left: 32px;
        padding-right: 32px;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .hero-title {
        font-size: 58px;
    }
    
    .hero-description {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 54px;
    }
    
    .section-description {
        font-size: 22px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .phone-features {
        left: -100px;
    }
}

@media (min-width: 1024px) {
    .content-container {
        padding-left: 48px;
        padding-right: 48px;
        padding-top: 100px;
    }

    .section-wrapper .content-container{
    padding-top: 0px;
}
    
    .logo {
        width: 212px;
    }
   
    .footer-links {
        grid-template-columns: 25% 25% 50%;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .nav-link {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 68px;
    }
    
    .hero-description {
        font-size: 25px;
    }
    
    .section-title {
        font-size: 62px;
    }
    
    .section-description {
        font-size: 25px;
    }

        .cta-content-container {
        grid-template-columns: 60% 40%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .stat-number {
        font-size: 43px;
    }
    
    .stat-label {
        font-size: 30px;
    }
    
    .gallery-row {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .phone-features {
        left: -150px;
    }
}

@media (min-width: 1280px) {
    .app-badge {
        width: 162px;
    }
}

@media (min-width: 1536px) {
    .content-container {
        padding-left: 64px;
        padding-right: 64px;
    }
}
.footer-column {
    /* padding-top: 60px; */
    position: relative;
    flex: 1;
}


h3.form-title {
    text-align: center;
}

h2.form-subtitle {
    text-align: center;
}

.form-header {
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    
    /* Fix one-column hero vertical centering on smaller screens */
    .hero-section.one-column .hero-overlay {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 120px 0 40px 0;
    }
    
    .service-category-container.first .service-category {
        margin-bottom: 42px;
    }

    .feature-section.merch-store .phone-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .phone-features-left,
    .phone-features-right {
        position: static;
        margin-top: 10px;
        width: 165px;
        align-items: flex-start;
    }

    .testimonials-header {
        flex-direction: column;
    }

    .testimonials-intro {
        width: 100% !important;
    }

    .testimonials-intro > * {
        text-align: center !important;
    }

    .testimonials-grid {
        width: 100%;
    }
    
    /* Two-column FAQ responsive layout */
    .two-column .content-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .two-column .faq-sidebar {
        width: 100%;
        position: static;
        max-height: none;
        order: -1;
    }
    
    .two-column .faq-content {
        padding: 0px 20px;
    }

    .cta-content-container h2.cta-title {
        font-size: 42px;
        text-align: center;
        width: 100%;
    }

    .cta-content-container p.cta-description {
        max-width: 100%;
        text-align: center;
    }

    .cta-content-container .left-container {
        align-items: center;
        gap: 10px;
        margin-bottom: 32px;
    }
    .footer-column {
        padding: 0;
    }

    .footer-brand {
          margin-bottom: 32px;
        position: static;
        width: 100%;
        display: block;
        text-align: center;
      
    }

    .footer-links {
        gap: 32px;
        text-align: center;
    }

    .contact-form button {
        justify-self: center !important;
    }

    .gallery-label {
        position: absolute;
        bottom: 3.5px;
        left: 3.5px;
        right: 3.5px;
        background-color: rgba(0, 0, 0, 0.8);
        color: #ffffff;
        padding: 18px 24px;
        font-size: 15px;
        font-weight: 700;
        text-align: center;
        border-radius: 0 0 50px 50px;
    }



    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        width: 100%;
        display: block;
        position: static;
        margin-bottom: 32px;
    }

    img.footer-logo {}

    div.footer-brand img.footer-logo {
        margin: 0 auto;
    }

    .footer-column {
        padding: 0px;
    }

    .contact-form {
        width: 100%;
    }

    .form-header {
        margin-bottom: 12px;
    }
    
    /* Mobile contact form fixes */
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-input {
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-textarea {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Stats section mobile layout - 2 columns with last item centered */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }
    
    .stat-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }
    
    /* Footer links typography adjustments for mobile */
    .footer-links h4 {
        font-size: 32px;
    }
    
    .footer-links a {
        font-size: 20px;
    }
    
    /* Footer padding for mobile menu breakpoint */
    .footer {
        padding: 0px;
    }
    
    .footer-content {
        margin-bottom: 32px;
    }
    
    .contact-form button.btn {
        width: 100%;
        max-width: 100%;
    }
    
    /* Prevent horizontal scrolling on mobile */
    body {
        overflow-x: hidden;
    }
    
    html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Sidebar */
.mobile-nav-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10012;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-sidebar.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.mobile-logo {
    width: 120px;
    height: auto;
}

.mobile-nav-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-menu {
    padding: 20px;
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #fc561e;
}

.mobile-nav-link.active {
    color: #fc561e;
    font-weight: 700;
}

.mobile-login-btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

/* Mobile Dropdown */
.mobile-nav-dropdown {
    border-bottom: 1px solid #333;
}

.mobile-nav-dropdown .dropdown-toggle {
    border-bottom: none;
    position: relative;
}

.mobile-nav-dropdown .dropdown-toggle::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.mobile-nav-dropdown.active .dropdown-toggle::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m18 15-6-6-6 6'/%3e%3c/svg%3e");
    transform: translateY(-50%);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.mobile-nav-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
}

.mobile-dropdown-link {
    display: block;
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #444;
    transition: color 0.3s ease;
}

.mobile-dropdown-link:hover {
    color: #fc561e;
}

.mobile-signup-btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    background-color: #fc561e;
    border-color: #fc561e;
}

.mobile-signup-btn:hover {
    background-color: #e04a1a;
    border-color: #e04a1a;
}


/* Left Sign Up Form  */
.signup-left .section-description{
max-width: 100%;
}

/* Desktop Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px 12px 12px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0;
    padding: 8px 0;
}

.nav-dropdown:hover .dropdown-toggle {
    position: relative;
}

.nav-dropdown:hover .dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    width: fit-content;
    max-width: calc(100% - 22px); /* Account for arrow space */
}

.nav-dropdown:hover .dropdown-toggle::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m18 15-6-6-6 6'/%3e%3c/svg%3e");
    transform: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 8px;
    position: relative;
}



.dropdown-link:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: rgba(255, 255, 255, 0.8);
}

.dropdown-link:hover::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    width: fit-content;
    max-width: calc(100% - 40px);
}

/* Hide hamburger on larger screens */
@media (min-width: 1025px) {
    .hamburger-menu {
        display: none;
    }
}

/* Responsive nav-link font size */
@media (max-width: 1200px) {
    .nav-link {
        font-size: 14px;
    }
    .nav-menu {
        gap: 4px;
    }
}

/* Mobile Navigation Positioning */
@media (max-width: 1024px) {
    .nav-buttons {
        display: flex;
        gap: 8px;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-buttons .btn {
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .hamburger-menu {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.scroll-animate.fade-in {
    transform: translateY(30px);
}

.scroll-animate.slide-left {
    transform: translateX(-50px);
}

.scroll-animate.slide-right {
    transform: translateX(50px);
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}