﻿
/*-----------------------------------------------
Template Name: adetc - Film & Video Production HTML Bootstrap Template
Author:  https://themeforest.net/user/fox_creation
Description: adetc is a modern and elegant HTML5 Bootstrap template designed for Film & Video Production Studios. This creative template is perfect for any business or service related to film studios, video production, videography, filmmaking, movie creation, film agencies, video editing, production houses, creative studios, short films, cinematic projects, video portfolios, and all other Film & Video Production websites. It provides a clean layout, professional design, and smooth user experience to help showcase your visual projects in the best way possible.

Version: 1.0.0
-----------------------------------------------*/

/*--------------------------------------------------------------
# MAIN STYLESHEET – TABLE OF CONTENTS
--------------------------------------------------------------*/

/* 01. Import Vendor
/* 02. Global Settings
/* 03. Keyframes Animation
/* 04. Base Style
/* 05. Base Section
/* 06. Base Container
/* 07. Font & Color Styles
/* 08. Button Styles
/* 09. Card Styles
/* 10. Image Styles
/* 11. Header Styles
/* 12. Sidebar Styles
/* 13. Form Styles
/* 14. Banner Styles
/* 15. Heading Style
/* 16. Breadcrumb Styles
/* 17. About Style
/* 18. Achievement Style
/* 19. Project Styles
/* 20. Project Detail Style
/* 21. Video Modal Styles
/* 22. Core Service Styles
/* 23. Service Style
/* 24. Service Detail Style
/* 25. Icon Styles
/* 26. Custom List Style
/* 27. Trust Us Style
/* 28. Testimonial Styles
/* 29. Pricing Style
/* 30. Contact CTA Styles
/* 31. Team Style
/* 32. Partners Styles
/* 33. Notfound Page Style
/* 34. FAQs Style
/* 35. Blog Styles
/* 36. Blog Post Styles
/* 37. Contact Style
/* 38. Maps Style
/* 39. Footer Style
/* 40. Accordion Styles
        40.1 Service Accordion
        40.2 FAQ Accordion
/* 41. Spacing Styles
        41.1 Flexbox Spacing
        42.2 Grid Spacing
--------------------------------------------------------------*/

/* 01. Import Vendor */
/* Vendor + font stylesheets are loaded as parallel <link>s in app/layout.jsx
   (was a render-blocking serial @import chain here). Keep them in sync. */

/* 02. Global Settings */

:root{
    --primary: #FFFFFF;
    --secondary: #FFFFFF;
    --text-color: #000000;
    --accent-color: #1E73EB;
    --accent-color-2: #1E73EB;
    --accent-color-3: #F2F2F2;
    --accent-color-4: #02010100;
    --accent-color-5: #FFFFFF;
    --accent-color-6: #CCCCCC;
    --accent-color-7: #E0E0E0;
    --accent-color-8: #FFFFFF75;
    --accent-video-modal: #00000073;
    --accent-sidebar-overlay: #00000080;
    --font-family-1: "Anton", sans-serif;
    --font-family-2: "Poppins", sans-serif;
}

/* 03. Keyframes Animation */


@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(var(--value))
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        transform-origin: center;
        border-width: 13px;
    }
}

@keyframes fade-in-left {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes circle-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

/* 04. Base Style */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: var(--font-family-2);
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--secondary);
}

h1{
    font-size: 115px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1em;
}

h2{
    font-size: 80px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1em;
}

h3{
    font-size: 48px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
}

h4{
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
}
h5{
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
}
h6{
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--font-family-1);
    margin-bottom: 0;
}

p{
    font-family: var(--font-family-2);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
}

button, a{
    font-family: var(--font-family-1);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 1px;
    text-decoration: none;
}

ul{
    list-style: none;
}

/* 05. Base Section */

.section{
    padding: 120px 20px 120px 20px;
}

.section-banner-home{
    padding: 0px;
    position: relative;
    overflow: hidden;
}

.section-core-service{
    padding: 120px 20px 120px 20px;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.section-small{
    padding: 0px 0px 0px 0px;
}

.section-footer{
    padding: 120px 20px 20px 20px;
    background-color: var(--accent-color);
    color: var(--primary);
}

/* 06. Base Container */

.hero-container{
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* 07. Font & Color Styles */

.font-family-1{
    font-family: var(--font-family-1);
}

.font-family-2{
    font-family: var(--font-family-2);
}

.accent-color{
    color: var(--accent-color);
}

.bg-accent-color{
    background-color: var(--accent-color);
}

.bg-accent-color-5{
    background-color: var(--accent-color-5);
}

/* 08. Button Styles */

.btn{
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    font-family: var(--font-family-1);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    border-radius: 0px;
    padding: 17px 34px 17px 34px;
    transition: all 300ms;
}

.btn-accent{
    background-color: var(--accent-color);
    color: var(--primary);
}

.btn-accent:hover{
    background-color: var(--accent-color-2);
}

.btn-accent-primary{
    background-color: var(--secondary);
    color: var(--accent-color);
}

.btn-accent-primary:hover{
    background-color: var(--accent-color);
    color: var(--secondary);
}

.btn-service-detail-cta{
    width: 70px;
    min-height: 70px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--secondary);
    transform: rotateZ(-45deg);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: center;
    transition: all 300ms
}

.btn-service-detail-cta:hover{
    background-color: var(--secondary);
    color: var(--accent-color);
    transform: rotate(0deg);
}

.btn-pricing{
    justify-content: center;
}

/* 09. Card Styles */

.card{
    border: none;
    border-radius: 0px;
}

.card-core-service{
    width: 48.5%;
    display: flex;
    flex-direction: column;
    gap: 50px 50px;
    padding: 30px 30px 30px 30px;
    background-color: var(--accent-color-3);
    color: var(--text-color);
}

.card-core-service.highlight-core{
    background-color: var(--accent-color);
}

.card-core-service:nth-child(even){
    margin-bottom: -46px;
    background-color: var(--accent-color);
}

/*==========================
 OUR WAY OF WORK
==========================*/

.work-card{
    background-color: var(--accent-color-3);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 30px 30px 30px 30px;
    width: auto;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.work-number{
    position:absolute;
    top:-35px;
    left:20px;
    font-size:150px;
    font-weight:900;
    color:rgba(0,0,0,.05);
    line-height:1;
    pointer-events:none;
    user-select:none;
}

.work-content{
    position:relative;
    z-index:2;
}

.work-content h4{
    font-size:30px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:18px;
}

.work-content p{
    font-size:18px;
    color:#555;
    line-height:1.8;
}

.card-trust-us{
    background-color: var(--accent-color-3);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 30px 30px 30px 30px;
    width: auto;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-trust-us .card-number-wrapper{
    display: flex;
    flex-direction: row;
    position: absolute;
    top: -30px;
    left: -45px;
    width: 220px;
    transform: rotateZ(90deg);
}

.card-trust-us .card-number{
    font-family: var(--font-family-1);
    font-size: 200px;
    line-height: 1em;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: var(--accent-color-3);
    stroke: var(--accent-color-3);
    color: black;
}

.card-trust-us.trust-us-hover .trust-us-hover-image{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 400ms ease;
}

.card-trust-us.trust-us-hover .trust-us-icon,
.card-trust-us.trust-us-hover .d-flex.flex-column.gspace-2{
    position: relative;
    z-index: 2;
    transition: opacity 300ms ease;
}

.card-trust-us.trust-us-hover .card-number-wrapper{
    z-index: 2;
    transition: opacity 300ms ease;
}

.card-trust-us.trust-us-hover:hover .card-number-wrapper{
    opacity: 0;
}

.card-trust-us.trust-us-hover:hover .trust-us-hover-image{
    opacity: 1;
}

.card-trust-us.trust-us-hover:hover .trust-us-icon{
    opacity: 0;
}

.card-trust-us.trust-us-hover:hover h4,
.card-trust-us.trust-us-hover:hover p,
.card-trust-us.trust-us-hover:hover .card-number,
.card-trust-us.trust-us-hover:hover .trust-us-stat,
.card-trust-us.trust-us-hover:hover .trust-us-suffix,
.card-trust-us.trust-us-hover:hover .trust-us-cta a,
.card-trust-us.trust-us-hover:hover .trust-us-cta i{
    color: #ffffff;
}

.card-trust-us.trust-us-hover .card-number{
    -webkit-text-stroke-color: var(--accent-color-3);
    stroke: var(--accent-color-3);
}

.card-pricing{
    background-color: var(--accent-color-5);
    color: var(--text-color);
    padding: 30px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
}

.card-testimonial{
    background-color: var(--accent-color-3);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 30px 30px 30px;
}

.card-testimonial .testimonial-designation{
    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--accent-color);
    margin: 0px;
}

.card-testimonial > p{
    height: 231px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.card-post-quote{
    background-color: var(--accent-color-3);
    color: var(--text-color);
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 50px 50px 50px 50px;
}

.card-blog{
    background-color: var(--accent-color-3);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 0px;
    position: relative;
    overflow: hidden;
}

.card-blog:hover .blog-image img{
    transform: scale(1.05) rotate(2deg);
    opacity: 0.8;
}

.card-blog-content{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 30px 30px 30px;
}

.blog-content-container .card-blog{
    height: 590px;
}

.blog-content-container .blog-image{
    height: 230px;
    flex-shrink: 0;
}

.blog-content-container .blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content-container .card-blog-content{
    height: 360px;
    overflow: hidden;
}

.card-blog .blog-title{
    color: var(--text-color);
    font-family: var(--font-family-1);
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: normal;
    transition: all 300ms;
    height: 116px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-blog .card-blog-content p{
    height: 87px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-blog .blog-title:hover{
    color: var(--accent-color);
}

.card-blog-post{
    background-color: var(--accent-color-5);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    padding: 30px 30px 30px 30px;
}

.card-service-detail-include{
    background-color: var(--accent-color-3);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    justify-content: center;
    padding: 30px 30px 30px 30px;
    width: auto;
    height: 100%;
}

.card-service-detail-include.cta-card{
    background-color: var(--accent-color);
}

.card-project-detail{
    background-color: var(--accent-color-5);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    padding: 30px 30px 30px 30px;
}

.card-contact-form{
    display: flex;
    flex-direction: column;
    gap: 30px 30px;
    background-color: var(--accent-color-5);
    color: var(--text-color);
    padding: 40px 40px 40px 40px;
}

/* 10. Image Styles */

.image-container{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}
.image-container img{
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.team-image img{
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: top center;
}

.service-detail-image{
    height: 100%;
    min-height: 380px;
}
.service-detail-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.core-service-image{
    width: 40%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.testimonial-image{
    display: block;
    width: 60px;
    min-height: auto;
    border: 3px solid var(--accent-color);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.partner-image{
    max-width: 100%;
    height: auto;
    opacity: 1;
    transition: all 300ms;
}

.trusted-client-logo{
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 1;
    flex: 0 0 auto;
}

.blog-image img{
    opacity: 1;
    transition: all 300ms;
}

.post-image img{
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.partner-image:hover{
    opacity: 1;
}

.swiperpartner .swiper-slide{
    position: relative;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiperpartner .swiper-slide img.partner-image{
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.swiperpartner .swiper-slide::before{
    content: none;
}

.swiperpartner.partner-marquee{
    overflow: hidden;
}

.swiperpartner.partner-marquee .swiper-wrapper{
    display: flex;
    align-items: center;
    width: max-content;
    animation: partnerMarquee 45s linear infinite;
}

.swiperpartner.partner-marquee .swiper-slide{
    flex: 0 0 auto;
    width: 156px;
    margin-right: 60px;
}

.partners-container:hover .swiperpartner.partner-marquee .swiper-wrapper{
    animation-play-state: paused;
}

.swiperpartner.partner-marquee .swiper-slide:nth-child(1),
.swiperpartner.partner-marquee .swiper-slide:nth-child(7){ --partner-color: #7A5AF5; --partner-logo: url("../images/Client-6.png"); }
.swiperpartner.partner-marquee .swiper-slide:nth-child(2),
.swiperpartner.partner-marquee .swiper-slide:nth-child(8){ --partner-color: #E8466E; --partner-logo: url("../images/Client-7.png"); }
.swiperpartner.partner-marquee .swiper-slide:nth-child(3),
.swiperpartner.partner-marquee .swiper-slide:nth-child(9){ --partner-color: #2CB67D; --partner-logo: url("../images/Client-5.png"); }
.swiperpartner.partner-marquee .swiper-slide:nth-child(4),
.swiperpartner.partner-marquee .swiper-slide:nth-child(10){ --partner-color: #1E73EB; --partner-logo: url("../images/Client-1.png"); }
.swiperpartner.partner-marquee .swiper-slide:nth-child(5),
.swiperpartner.partner-marquee .swiper-slide:nth-child(11){ --partner-color: #E85C2A; --partner-logo: url("../images/Client-2.png"); }
.swiperpartner.partner-marquee .swiper-slide:nth-child(6),
.swiperpartner.partner-marquee .swiper-slide:nth-child(12){ --partner-color: #7A5AF5; --partner-logo: url("../images/Client-6.png"); }

@keyframes partnerMarquee{
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.service-detail-ideal-img img{
    width: 100%;
    height: 335px;
    object-fit: cover;
    object-position: center;
}

/* 11. Header Styles */

.navbar-container {
    padding: 0px 20px 0px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 10;
}

.navbar{
    background-color: transparent;
    border-radius: 20px 20px 20px 20px;
    position: relative;
    padding: 0px;
    z-index: 1;
}

.navbar-nav-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* padding: 8px 20px ; */
}

.navbar-nav{
    flex-wrap: wrap;
    justify-content: center;
}

.navbar .logo-container{
    width: 18%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbar .logo-container img {
    height: 100px;      /* Adjust: 40px, 45px, 50px */
    width: auto;
    display: block;
}

.navbar .nav-link-container{
    width: 64%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-link{
    font-family: var(--font-family-2);
    font-size: 18px;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--primary);
    padding: 15px 15px 15px 15px;
}

.nav-link:hover{
    color: var(--accent-color);
}

.nav-link:focus,
.nav-link.active,
.navbar-nav .nav-link.show{
    color: var(--accent-color-2) !important;
}

.dropdown-menu {
    background-color: var(--accent-color-3);
    color: var(--text-color);
    border-radius: 0;
    border: none;
    padding: 0;
    overflow: hidden;
    margin-top: 1.125em !important;
    border-radius: 0px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
    box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
}

.dropdown-item{
    font-family: var(--font-family-2);
    font-size: 18px;
    font-weight: 00;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--text-color);
    transition: all 300ms;
    padding: 15px 15px 15px 15px;
}

.dropdown-item:hover,
.dropdown-item.active{
    background-color: var(--accent-color-3);
    color: var(--accent-color);
}

.dropdown-toggle::after {
    display: none !important;
}

.navbar-cta-container{
    width: 18%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.nav-btn{
    display: none;
    padding: 16px 16px;
    background-color: var(--accent-color);
    color: var(--primary);
    box-shadow: none;
    transition: all 300ms ease;
    border: none;
    border-radius: 0px 0px 0px 0px;
    box-shadow: none;
    font-size: 18px;
}

.nav-btn:hover{
    background-color: var(--accent-color);
    color: var(--secondary);
}

/* 12. Sidebar Styles */

.sidebar-overlay{
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: var(--accent-sidebar-overlay);
    transition: left 0.4s ease-in-out;
    z-index: 10;
}

.sidebar-overlay.active{
    left: 0;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--secondary);
    color: var(--text-color);
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    max-height: 100vh;
    padding: 0px 16px 0px 5px;
}

.sidebar.active{
    transform: translateX(300px);
}

.sidebar-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 20px 20px;
}

.sidebar-header .logo {
    width: 75%;
}

.close-btn {
    display: inline-block;
    justify-content: center;
    background-color: var(--accent-color);
    border-radius: 8px 8px 8px 8px;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    font-family: var(--font-family-2);
    font-size: 16px;
    cursor: pointer;
    padding: 8px 18px;
    transition: all 300ms;
    border: none;
    outline: none;
}

.close-btn:hover{
    background-color: var(--accent-color);
    color: var(--secondary);
}

.menu {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.menu li {
    padding: 10px 15px 10px 15px;
}

.menu a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    border-radius: 5px;
    transition: 0.3s;
    font-family: var(--font-family-2);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 0px;
}

.menu a:hover,
.menu a.active,
.menu a:focus {
    color: var(--accent-color);
}

.sidebar-dropdown .dropdown-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sidebar-dropdown-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 1rem;
    cursor: pointer;
    padding: 3px 15px;
    transition: transform 0.3s ease;

}
.sidebar-dropdown-btn:hover {
    color: var(--text-color);
}

.sidebar-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding-top: 0;
    padding-bottom: 0;
}

.sidebar-dropdown-menu.active {
    max-height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}
.below-dropdown {
    transition: margin-top 0.1s ease-in-out;
    margin-top: 0px;
}

.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 5px;
}

/* 13. Form Styles */

.form{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
}

.form input,
.form select,
.form textarea{
    font-family: var(--font-family-2);
    font-weight: 500;
    line-height: 1.5em;
    padding: 20px 0px 20px 0px;
    background-color: transparent;
    color: var(--text-color);
    outline: none;
    border: none;
    border-bottom: 1px solid var(--accent-color-3);
    width: 100%;
    transition: all 300ms;
}

.form input:focus,
.form textarea:focus{
    border-bottom: 1px solid var(--accent-color);
}

.form input:autofill,
.form textarea:autofill{
    background-color: transparent;
    color: var(--text-color);
    transition: background-color 5000s ease-in-out;
    -webkit-text-fill-color: gray;
    font-family: var(--font-family-2);
}

.form input::placeholder,
.form textarea::placeholder{
    color: var(--text-color);
}

.form .dropdown-container {
    position: relative;
    width: 100%;
}

.form .dropdown-select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--accent-color-3);
    border-radius: 0px 0px;
    color: var(--text-color);
    outline: none;
    padding: 20px 0px 20px 0px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px 20px;
    z-index: 2;
}

.form .dropdown-select i{
    color: var(--accent-color);
}

.form .dropdown-select:focus{
    border-bottom: 1px solid  var(--accent-color);
}

.form .dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: transparent;
    color: var(--text-color);
    border: none;
    border-radius: 0;
    z-index: 10;
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
}

.form .dropdown-container.active .dropdown-list {
    display: block;
}

.form .dropdown-option {
    background-color: var(--accent-color-3);
    padding: 20px 20px 20px 20px;
    border-radius: 0px 0px 0px 0px;
    border: none;
    border-bottom: 1px solid var(--accent-color-3);
    color: var(--text-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    transition: background-color 0.2s, color 0.2s;
}

.form .dropdown-option:hover {
    color: var(--accent-color);
}

.form .dropdown-option.selected {
    color: var(--accent-color);
    font-weight: 600;
}

.form .selected-text {
    color: var(--text-color);
    transition: color 0.2s ease;
}

.form .selected-text.has-value {
    color: var(--text-color);
}

#newsletter-form{
    display: flex;
    flex-direction: row;
    gap: 0px 0px;
    align-items: flex-end;
    flex-wrap: nowrap;
    width: 100%;
}

#newsletter-form input{
    font-family: var(--font-family-1);
    font-size: 16px;
    border: none;
    border-bottom: 1px solid var(--primary);
    outline: none;
    background-color: transparent;
    color: gray;
    padding: 10px 0px 0px 0px;
    width: 65%;
}

#newsletter-form input::placeholder{
    font-family: var(--font-family-1);
    font-size: 20px;
    font-weight:300;
    line-height: 1.2em;
    text-transform: lowercase;
    color: #ffffff;
}

#newsletter-form button{
    width: 35%;
    flex-wrap: nowrap;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.alert {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
    border-radius: 6px;
    margin-bottom: 15px;
  }

.success {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--secondary);
    color: var(--text-color);
}

.success span,
.success p{
    color: var(--text-color);
}
  
.error {
    display: flex;
    flex-direction: column;
    gap: 1em;
    background-color: var(--secondary);
    color: var(--text-color);
}

.error span,
.error p{
    color: var(--text-color);
}
  
.check-icon,
.cross-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.hidden{
    display: none;
}

/* 14. Banner Styles */

.banner-home-video{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    min-height: 100vh;
    padding: 120px 20px 0px 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.banner-home-video::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image: radial-gradient(at top left, #12121259 0%, #121212 100%);
    z-index: 1;
}

.banner-home-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding-bottom: 80px;
    color: var(--primary);
}

#banner-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.02);
    pointer-events: none;
    width: 150%;
    height: 150%;
    z-index: 0;
    object-fit: cover;
    border: 0;
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.service-content-banner{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.service-content-banner::before{
    content: '';
    position: absolute;
    background-color: transparent;
    background-image: radial-gradient(at top center, var(--accent-color) 0%, var(--accent-color-4) 31%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.22;
    z-index: -1;
}

.contact-cta-banner{
    background-color: var(--accent-color);
    color: var(--primary);
    padding: 80px 80px 80px 80px;
    border-radius: 100px 0px 100px 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0px 0px;
    align-items: flex-start;
    overflow: hidden;
    z-index: 0;
}

.home-spacer{
    width: 230px;
    border: 23px solid var(--accent-color);
    border-radius: 35px 0px 35px 0px;
}

.home-title-container{
    display: flex;
    flex-direction: column;
    width: 67%;
    text-align: start;
    align-items: start;
    height: 100%;
}

.home-spacer .spacer-inner{
    height: 50px;
}

.home-avatar-container{
    width: 30%;
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    text-align: start;
    align-items: start;
    gap: 20px 20px;
}

.home-avatar-container p{
    color: var(--primary);
}

.banner-avatar {
    display: inline-block;
    vertical-align: middle;
    background-color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-color);
}
.banner-avatar:not(:nth-child(1)){
    margin-left: -15px;
}

.banner-avatar-top{
    object-position: 50% 20%;
}

.home-divider{
    width: 100%;
    border-bottom: 3px solid var(--primary);
}

.banner-inner {
    position: relative;
    padding: 180px 20px 120px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: #121212;
    min-height: 60vh;
}

.banner-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(100%) contrast(124%) saturate(0%) blur(0px) hue-rotate(0deg);
    mix-blend-mode: overlay;
    opacity: 1;
    z-index: 0;
}

.banner-notfound{
    min-height: 100vh;
}

.banner-inner.about-banner::before{
    background-image: url('../images/young-black-woman-singing-while-being-with-her-fri-BTKH8T6.jpg');
}

.banner-inner.service-banner::before{
    background-image: url('../images/cameraman-filming-music-video-CD7JKUM.jpg');
}

.banner-inner.service-detail-banner::before{
    background-image: url('../images/cameraman-operating-equipment-in-studio-T3LZ2B2.jpg');
}

.banner-inner.pricing-banner::before{
    background-image: url('../images/operator-setting-his-camera-before-shooting-PURRF9Y.jpg');
}

.banner-inner.project-banner::before{
    background-image: url('../images/film-industry-7ZLFY7L.jpg');
}

.banner-inner.project-detail-banner::before{
    background-image: url('../images/male-video-editor-working-on-his-personal-computer-HQHD8ZL.jpg');
}

.banner-inner.team-banner::before{
    background-image: url('../images/photographer-capture-the-essence-of-the-opening-ce-TU8TLN7.jpg');
}

.banner-inner.testimonial-banner::before{
    background-image: url('../images/photographers-setting-cameras-before-shooting-65ME2DS.jpg');
}

.banner-inner.blog-banner::before{
    background-image: url('../images/two-confident-coworkers-indian-bearded-businessman-QHK94WX.jpg');
}

.banner-inner.single-post-banner::before{
    background-image: url('../images/video-production-backstage-behind-the-scenes-of-cr-L3RXVKA.jpg');
}

.banner-inner.notfound-banner::before{
    background-image: url('../images/video-production-backstage-behind-the-scenes-of-cr-L3RXVKA.jpg');
}

.banner-inner.contact-banner::before{
    background-image: url('../images/woman-operating-video-camera-in-neon-lights-NNLG5VA.jpg');
}

.banner-inner-container{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    z-index: 1;
}

/* Keyword landing pages use an <h1> banner title; match the theme's h2 display size. */
.banner-inner-container h1{
    font-size: 80px;
}

.cta-highlight-banner{
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-highlight-banner::before{
    content: '';
    position: absolute;
    background-color: var(--secondary);
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.65;
    z-index: 0;
}

.cta-highlight-video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 150%;
    height: 150%;
    z-index: -1;
    object-fit: cover;
    border: 0;
}

.cta-highlight-content{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    justify-content: flex-start;
    align-items: start;
    text-align: start;
    width: 40%;
    z-index: 2;
}

/* 15. Heading Style */

.heading-container{
    display: flex;
    flex-direction: row;
    padding-left: 20px;
    border-left: 5px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.heading-highlight{
    color: var(--accent-color);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--accent-color);
}

.service-detail-content-container .heading-container h2{
    font-size: 62px;
    font-weight: 500;
    line-height: 1.08em;
    max-width: 100%;
    text-align: left;
}

.service-detail-content-container .service-title-heading h2{
    font-size: 62px;
    font-weight: 500;
    line-height: 1.08em;
}

/* 16. Bread Crumbstyles */

.breadcrumb{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.breadcrumb-item{
    font-family: var(--font-family-2);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.5em;
    color: var(--accent-color);
    margin: 0 !important;
    padding: 0 !important;
}

.breadcrumb-icon{
    font-family: var(--font-family-1);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--primary);
}

.breadcrumb-item.current{
    color: var(--primary);
}

/* 17. About Style */

.about-tagline{
    color: var(--text-color);
    font-family: var(--font-family-2);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    width: 51%;
}

.about-circle-logo-container {
    max-width: 50%;
    display: flex;
    justify-content: start;
    align-items: end;
    overflow: visible;
    position: relative;
    z-index: 2;
  }

.about__circle-logo {
    width: 100%;
    height: auto;
    animation: circle-spin 6s linear infinite;
    transform-origin: center center;
    overflow: visible;
}

.about__circle-logo svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.about__circle-logo circle {
    fill: var(--accent-color);
}

.about__circle-logo text {
    font-family: var(--font-family-1);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--text-color);
    fill: var(--primary);
}

.about__circle-logo textPath {
    letter-spacing: 2px;
    dominant-baseline: middle;
}

.about__circle-logo-image {
    transform: none;
    animation: none;
}

/* 18. Achievement Style */

.achievement-container{
    display: flex;
    flex-direction: row;
    gap: 0px 0px;
    width: 100%;
    align-self: stretch;
    padding: 50px 50px 50px 50px;
    border-radius: 50px 0px 50px 0px;
    background-color: var(--accent-color-5);
    color: var(--text-color);
    align-items: center;
    justify-content: space-between;
}

.achievement-content{
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px 20px;
}

.achievement-stat-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px 5px;
}

.achievement-stat{
    color: var(--text-color);
    font-family: var(--font-family-1);
    font-size: 80px;
    font-weight: 400;
    line-height: 1em;
}

.achievement-suffix{
    font-family: var(--font-family-1);
    font-size: 100px;
    font-weight: 400;
    line-height: 0.6em;
    color: var(--accent-color);
}

/* 19. Project Styles */

.project-section-content{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.project-heading-container {
    position: sticky;
    top: 15vh;
    margin-bottom: -100px;
    z-index: 0;
    text-align: center;
    pointer-events: none;
}

.section-project-fade {
    opacity: 0;
    transform: translateY(-30px);
}

.project-content-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 120px;
    overflow: hidden;
    z-index: 2;
}

.project-section-heading{
    font-family: var(--font-family-1);
    font-size: 200px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1em;
    text-align: center;
    color: gray;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.project-section-heading.is-hidden {
    opacity: 0;
    transform: translateY(-10px);
}

.project-video-container{
    background-color: var(--secondary);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 295px;
}

.project-video-container.project-video-container--tall{
    min-height: 500px;
}

.project-video-container--wide{
    width: 100%;
    min-height: 400px;
}

.project-title a{
    color: var(--text-color);
    font-size: 48px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
    transition: all 300ms;
}

.project-title:hover a{
    color: var(--accent-color);
}

.project-category{
    color: var(--text-color);
    font-family: var(--font-family-2);
    font-size: 18px;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    line-height: 1.5em;
    transition: all 300ms;
}

.project-category:hover{
    color: var(--accent-color);
}

.project-video-bg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    pointer-events: none;
    z-index: 1;
    object-fit: cover;
    border: 0;
}

.project-video-bg#video-bg-3 {
    width: 100vw;
    height: 100vw;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
}

/* 20. Project Detail Style */

.project-detail-content-container{
    display: flex;
    flex-direction: column;
    gap: 80px 80px;
    position: relative;
    overflow: hidden;
}

.project-result{
    color: var(--text-color);
    font-family: var(--font-family-1);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5em;
    text-transform: uppercase;
}

.project-result .result-link{
    color: var(--accent-color);
    font-family: var(--font-family-1);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5em;
    text-transform: uppercase;
    transition: color 300ms;
}

.project-result .result-link:hover{
    color: var(--accent-color-2);
}

.project-detail-video-container{
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.project-detail-video-spacer{
    height: 470px;
}

/* 21. Video Modal Styles */

.request-loader {
    position: relative;
    width: auto;
    height: 70px;
    border-radius: 50% !important;
    border: none;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 18px;
    aspect-ratio: 1/1;
    transition: all 300ms ease-in-out;
    z-index: 2;
}

.request-loader.request-loader-btn {
    border-radius: 0px !important;
    aspect-ratio: auto;
    height: auto;
    padding: 17px 34px 17px 34px;
    background-color: var(--accent-color);
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 10px;
}

.request-loader.request-loader-btn::before,
.request-loader.request-loader-btn::after {
    display: none;
}

.request-loader.request-loader-btn:hover {
    background-color: var(--accent-color-2);
    color: var(--primary);
}

.request-loader:hover {
    border: none;
    color: var(--primary);
    background-color: var(--accent-color-2);
}

.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-video-modal);
    z-index: 1050;
    justify-content: center;
    align-items: center;
}

.my-modal {
    background-color: var(--secondary);
    padding: 0;
    border-radius: none;
    position: relative;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
}

.my-modal iframe,
.my-modal video {
    aspect-ratio: 16/9;
    width: 100%;
    height: 80vh;
    object-fit: contain;
    display: block;
}

.my-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: var(--font-size-3xl);
    cursor: pointer;
    font-weight: bold;
    color: var(--accent-color-2);
}

.btn-close {
    position: absolute;
    right: 0px;
    top: 0px;
    background-color: var(--accent-color-2);
    padding: 16px 16px 16px 16px;
    opacity: 1;
    z-index: 2001;
}

.contact-dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-video-modal);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.contact-dialog-overlay.show {
    display: flex;
}

.contact-dialog {
    position: relative;
    background-color: var(--secondary);
    color: var(--text-color);
    padding: 50px 40px 40px 40px;
    border-radius: 10px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-dialog-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: var(--font-size-3xl);
    cursor: pointer;
    font-weight: bold;
    color: var(--accent-color-2);
}

.contact-dialog-icon {
    font-size: 60px;
    line-height: 1;
}

.contact-dialog-icon.success {
    color: #2ecc71;
}

.contact-dialog-icon.error {
    color: #e74c3c;
}

.contact-dialog-title {
    margin: 0;
}

.contact-dialog-message {
    margin: 0;
}

/* 22. Core Service Styles */

.core-service-heading-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 20px;
    overflow: visible;
}

.core-heading-container {
    flex: 0 0 47%;
    max-width: 47%;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    z-index: auto;
  }

.core-service-logo-container {
    flex: 0 0 15%;
    max-width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    position: relative;
    z-index: 2;
  }

.core-service__circle-logo {
    width: 100%;
    height: auto;
    animation: circle-spin 6s linear infinite;
    transform-origin: center center;
    overflow: visible;
}

.core-service__circle-logo svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.core-service__circle-logo circle {
    fill: var(--accent-color);
}

.core-service__circle-logo text {
    font-family: var(--font-family-1);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--text-color);
    fill: var(--primary);
}

.core-service__circle-logo textPath {
    letter-spacing: 2px;
    dominant-baseline: middle;
}

.core-service__circle-logo-image {
    animation: none;
    transform: none;
}

.core-service-heading.heading-fill{
    position: relative;
    color: var(--text-color);
    z-index: 1;
}

.core-service-heading.heading-stroke{
    position: absolute;
    top: 0;
    left: 0;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: var(--text-color);
    stroke: var(--primary);
    color: var(--accent-color-4);
    z-index: 3;
}

.core-service-description{
    width: 47%;
    align-self: center;
    text-align: start;
}

.core-service-card-container{
    display: flex;
    flex-direction: row;
    width: 60%;
    height: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 23px 0px;
    align-items: flex-end;
    align-self: flex-end;
}

/* 23. Service Style */

.service-title-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;      /* Centers horizontally */
    justify-content: center;
    text-align: center;       /* Centers the text */
    width: 100%;
    max-width: 1200px;        /* Optional */
    margin: 0 auto;           /* Centers the container */
    gap: 20px;
}
 .service-title-heading {
    /* width: 29%; */
    align-self: center;
}
.service-title-wrapper .service-title-description {
    /* width: 27%; */
}
.service-title-wrapper .service-title-cta {
    width: 26%;
    display: flex;
    justify-content: flex-end;
}

.service-content-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    min-height: 500px;
    padding: 0px 0px 0px 0px;
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-video-bg{
    width: 150%;
    height: 150%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* disable interaction */
    overflow: hidden;
    z-index: 0;
    object-fit: cover;
    border: 0;
}

.service-video-content{
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    background-color: #FFFFFFB3;
    color: var(--text-color);;
    padding: 30px 30px 30px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-video-content::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: inherit;
    background-color: inherit;
    z-index: -1;
}

.service-description-content{
    width: 56%;
}

.service-tag-container{
    width: 33%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-self: center;
    gap: 5px 5px;
}

.service-tag{
    display: inline-block;
    background-color: var(--accent-color-4);
    color: var(--text-color);
    padding: 5px 10px;
    border: 1px solid var(--accent-color);
    border-radius: 100px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
    line-height: 1em;
    font-family: var(--font-family-2);
}

/* 24. Service Detail Style */

.service-detail-content-container{
    display: flex;
    flex-direction: column;
    gap: 80px 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-detail-video-container{
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-detail-video-spacer{
    height: 470px;
}

.service-detail-showcase-image{
    width: 100%;
    height: 460px;
    overflow: hidden;
}
.service-detail-showcase-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Service Detail Tabs */
.service-detail-tabs{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 2px solid var(--accent-color-3);
    padding-bottom: 0;
}
.service-detail-tab{
    font-family: var(--font-family-1);
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-color);
    background: var(--accent-color-3);
    padding: 13px 28px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all .3s ease;
}
.service-detail-tab:hover{
    color: var(--accent-color);
}
.service-detail-tab.active{
    background: var(--accent-color);
    color: var(--primary);
}

.service-detail-pane{
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 40px 0 10px;
}
.service-detail-pane .tab-pane{
    padding: 20px;
}

/* Alternating image/text rows */
.service-alternating-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.service-title-wrapper-left{
    align-items: flex-start;
    text-align: left;
    margin: 0;
}
.service-title-wrapper-left .service-title-description p{
    text-align: justify;
}
.service-alternating-image{
    width: 100%;
    height: 100%;
    min-height: 320px;
}
.service-alternating-image img{
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}
@media (max-width: 991px){
    .service-alternating-row{
        grid-template-columns: 1fr;
    }
}

/* Stats strip */
.service-detail-stats{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-detail-stat{
    background: var(--accent-color);
    color: var(--primary);
    padding: 30px 20px;
    text-align: center;
}
.service-detail-stat .stat-value{
    font-family: var(--font-family-1);
    font-size: 42px;
    line-height: 1;
    text-transform: uppercase;
}
.service-detail-stat .stat-label{
    margin-top: 8px;
    font-family: var(--font-family-2);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .85;
}
@media (max-width: 767px){
    .service-detail-stats{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Step number badges */
.service-step-number{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-1);
    font-size: 28px;
    color: var(--accent-color);
    background: var(--accent-color-3);
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
}

/* Sidebar */
.service-detail-sidebar{
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.service-sidebar-card{
    background: var(--accent-color-3);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service-sidebar-image{
    height: 220px;
    overflow: hidden;
}
.service-sidebar-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.service-facts{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-facts li{
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-bottom: 1px solid var(--accent-color-6);
    padding-bottom: 12px;
}
.service-facts li:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.service-facts li span{
    font-family: var(--font-family-1);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.service-facts li p{
    margin: 0;
    font-size: 15px;
    color: var(--text-color);
}
.service-sidebar-cta{
    background: var(--text-color);
    color: var(--primary);
}
.service-sidebar-cta h4{
    color: inherit;
}
.service-sidebar-cta p{
    color: inherit;
    opacity: .85;
}

/* Blog detail left sticky sidebar + recent posts */
.blog-detail-sidebar{
    position: sticky;
    top: 20px;
    align-self: flex-start;
}
.blog-recent-widget{
    background: var(--accent-color-3);
    padding: 24px;
}
.blog-recent-widget h4{
    margin-bottom: 18px;
    font-family: var(--font-family-1);
    font-size: 18px;
}
.blog-recent-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.blog-recent-item{
    display: flex;
    gap: 12px;
    align-items: center;
}
.blog-recent-thumb{
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    overflow: hidden;
    border-radius: 6px;
}
.blog-recent-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-recent-meta a{
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.35;
    display: block;
}
.blog-recent-meta .blog-recent-date{
    font-size: 12px;
    color: var(--accent-color);
    margin-top: 4px;
    display: block;
}

/* Blog sidebar extra widgets: search, categories, tags, social, newsletter */
.blog-search-form{
    display: flex;
    gap: 8px;
}
.blog-search-input{
    flex: 1 1 auto;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--accent-color-6);
    background: var(--primary);
    color: var(--text-color);
    border-radius: 4px;
    font-size: 14px;
}
.blog-search-input:focus{
    outline: none;
    border-color: var(--accent-color);
}
.blog-search-btn{
    flex: 0 0 auto;
    padding: 0 14px;
    border: none;
    background: var(--accent-color);
    color: var(--primary);
    border-radius: 4px;
    cursor: pointer;
}
.blog-cat-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-cat-list li a{
    color: var(--text-color);
    font-size: 14px;
    display: flex;
    align-items: center;
}
.blog-cat-list li a::before{
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--accent-color);
}
.blog-cat-list li a:hover{
    color: var(--accent-color);
}
.blog-tag-cloud{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-tag{
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--accent-color-6);
    border-radius: 30px;
    font-size: 13px;
    color: var(--text-color);
}
.blog-tag:hover{
    background: var(--accent-color);
    color: var(--primary);
    border-color: var(--accent-color);
}
.blog-sidebar-social{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4px;
}
.blog-widget-spacer{
    margin-top: 22px;
}
.blog-newsletter-form{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}
.blog-newsletter-input{
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--accent-color-6);
    background: var(--primary);
    color: var(--text-color);
    border-radius: 4px;
    font-size: 14px;
}
.blog-newsletter-input:focus{
    outline: none;
    border-color: var(--accent-color);
}
.blog-newsletter-btn{
    border: none;
    background: var(--accent-color);
    color: var(--primary);
    padding: 10px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}
.blog-newsletter-btn:disabled{
    opacity: .6;
    cursor: default;
}
.blog-newsletter-msg{
    margin: 4px 0 0;
    font-size: 13px;
}
.blog-newsletter-msg.ok{
    color: var(--accent-color);
}
.blog-newsletter-msg.err{
    color: #d9534f;
}

/* Blog detail: author box + related posts + prose styling */
.post-author-box{
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--accent-color-3);
    padding: 20px 24px;
    border-radius: 10px;
}
.post-author-avatar{
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-family-1);
}
.post-author-label{
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 2px;
}
.post-author-info h4{
    margin: 0 0 6px;
    font-family: var(--font-family-1);
}
.post-author-info p{
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
}
.post-related h3{
    margin-bottom: 22px;
    font-family: var(--font-family-1);
}
.post-body{
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}
.post-body p{
    margin-bottom: 1.2em;
}
.post-body h2, .post-body h3, .post-body h4{
    margin: 1.6em 0 .6em;
    font-family: var(--font-family-1);
    line-height: 1.3;
}
.post-body h2{ font-size: 26px; }
.post-body h3{ font-size: 22px; }
.post-body h4{ font-size: 18px; }
.post-body img{
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.2em 0;
}
.post-body a{
    color: var(--accent-color);
    text-decoration: underline;
}
.post-body ul, .post-body ol{
    margin: 0 0 1.2em 1.2em;
    padding: 0;
}
.post-body li{ margin-bottom: .5em; }
.post-body blockquote{
    margin: 1.4em 0;
    padding: 1em 1.4em;
    border-left: 4px solid var(--accent-color);
    background: var(--accent-color-3);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}
.post-body pre, .post-body code{
    background: var(--accent-color-3);
    border-radius: 4px;
}
.post-body code{
    padding: 2px 6px;
    font-size: 14px;
}
.post-body pre{
    padding: 16px;
    overflow: auto;
}
.post-body pre code{
    padding: 0;
    background: none;
}
.post-body table{
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
}
.post-body th, .post-body td{
    border: 1px solid var(--accent-color-6);
    padding: 8px 12px;
}
.related-service-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.related-service-list a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-family-2);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 15px;
    background: var(--primary);
    border: 1px solid var(--accent-color-6);
    transition: all .3s ease;
}
.related-service-list a:hover{
    background: var(--accent-color);
    color: var(--primary);
    border-color: var(--accent-color);
}
@media (max-width: 991px){
    .service-detail-sidebar{
        position: static;
    }
}

.service-detail-cta-container{
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

/* 25. Icon Styles */

.social-icon{
    width: 45px;
    min-height: 45px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary);
    font-size: 16px;
    line-height: 1;
    transition: all 300ms;
}

.social-icon:hover{
    background-color: var(--accent-color-2);
    transform: scale(0.9);
}

.social-icon-post{
    width: 40px;
    min-height: 40px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary);
    font-size: 16px;
    line-height: 1;
    transition: all 300ms;
}

.social-icon-post:hover{
    background-color: var(--accent-color-2);
    transform: scale(0.9);
}

.footer-icon{
    width: 45px;
    min-height: 45px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--secondary);
    font-size: 21px;
    line-height: 1;
    transition: all 300ms;
}

.footer-icon:hover{
    background-color: var(--accent-color-2);
    color: var(--primary);
}

.core-service-icon{
    width: 60px;
    min-height: 60px;
}

.trust-us-icon{
    display: flex;
    flex-direction: row;
    width: 60px;
    min-height: 60px;
    justify-content: center;
    align-self: flex-end;
}

/* 26. Custom List Style */

.pricing-detail-list{
    list-style: none;
    padding-left: 0;
}

.pricing-detail-list li{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    margin-bottom: 10px;
    color: var(--text-color);
    font-family: var(--font-family-2);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.5em;
}

.pricing-detail-list li:last-child{
    margin-bottom: 0px;
}

.pricing-detail-list li::before {
    content: "\f058";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: var(--text-color);
    margin-right: 0.5em;
    font-size: 18px;
    display: inline-block;
}

.dot-list{
    list-style: none;
    padding-left: 0;
}
.dot-list li{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    margin-bottom: 10px;
}

.dot-list li p{
    margin-bottom: 0px;
}

.dot-list li:last-child{
    margin-bottom: 0px;
}

.dot-list li::before {
    content: "\f111";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: var(--accent-color);
    margin-right: 16px;
    font-size: 12px;
    display: inline-block;
}

.service-detail-list{
    list-style: none;
    padding-left: 0;
}

.service-detail-list li{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    margin-bottom: 10px;
    color: var(--text-color);
    font-family: var(--font-family-1);
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.5em;
}

.service-detail-list li:last-child{
    margin-bottom: 0px;
}

.service-detail-list li::before {
    content: "\f058";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: var(--accent-color);
    margin-right: 0.5em;
    font-size: 21px;
    display: inline-block;
}

.chevron-circle-list{
    list-style: none;
    padding-left: 0;
}

.chevron-circle-list li{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    margin-bottom: 10px;
    color: #ffffff;
}

.chevron-circle-list a{
    color: #FFFFFF;
    font-family: var(--font-family-2);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.5em;
}

.chevron-circle-list li:last-child{
    margin-bottom: 0px;
}

.chevron-circle-list li::before {
    content: "\f138";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: #FFFFFF;
    margin-right: 0.5em;
    font-size: 18px;
    display: inline-block;
}

/* 27. Trust Us Style */

.trust-us-cta{
    display: flex;
    flex-direction: row;
    gap: 10px 10px;
    align-items: center;
    transition: all 300ms;
}

.trust-us-cta a,
.trust-us-cta i{
    font-size: 14px;
    color: var(--text-color);
    transition: all 300ms;
}

.trust-us-cta:hover{
    transform: scale(0.9);
}

.trust-us-cta:hover a,
.trust-us-cta:hover i{
    color: var(--accent-color);
}

.trust-us-stat-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px 5px;
}

.trust-us-stat{
    color: var(--text-color);
    font-family: var(--font-family-1);
    font-size: 115px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1em;
}

.trust-us-suffix{
    font-family: var(--font-family-1);
    font-size: 100px;
    font-weight: 400;
    line-height: 0.6em;
    color: var(--accent-color);
}

.trustus-avatar-container{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
}

/* 28. Testimonial Styles */

.testimonial-banner-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 600px;
    align-items: flex-end;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#testimonial-video-background {
    position: absolute;
    background-color: transparent;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vw;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.testimonial-banner-container::before{
    content: "";
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(180deg, var(--accent-color-4) 30%, var(--secondary) 94%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.testimonial-banner-content{
    position: relative;
    z-index: 2;
    text-align: center;
    align-self: flex-end;
    width: 82%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card-container{
    padding: 0px 20px 120px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: var(--secondary);
}

.testimonial-carousel{
    position: relative;
    width: 100%;
}

.testimonial-scroll-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.testimonial-scroll-btn:hover{
    background-color: var(--accent-color);
    color: var(--secondary);
}

.testimonial-scroll-prev{
    left: -60px;
}

.testimonial-scroll-next{
    right: -60px;
}

@media screen and (max-width: 1400px){
    .testimonial-scroll-prev{
        left: 10px;
    }
    .testimonial-scroll-next{
        right: 10px;
    }
}

.testimonial-scroll-row{
    display: flex;
    flex-direction: row;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 4px 4px 20px 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-scroll-row::-webkit-scrollbar{
    display: none;
    height: 0;
}

.testimonial-scroll-row .card-testimonial{
    min-width: 380px;
    width: 380px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    height: 470px;
    overflow: hidden;
}

.testimonial-card-wrapper {
    position: absolute;
    min-height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.testimonial-card-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: none;
    z-index: -1;
}

.testimonial-card-wrapper .spacer{
    height: 50px;
}

.testimonial-icon{
    font-size: 3rem;
    color: var(--accent-color);
}

/* 28. Experience Stat Style */

.experience-stat{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 45px 20px;
    background-color: var(--accent-color-3);
    height: 100%;
    text-align: center;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

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

.experience-stat-number-container{
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.experience-stat-number{
    font-family: var(--font-family-1);
    font-size: 72px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
}

.experience-stat-suffix{
    font-family: var(--font-family-1);
    font-size: 56px;
    font-weight: 400;
    line-height: 1em;
    color: var(--accent-color);
}

.experience-stat h5{
    font-family: var(--font-family-2);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-color);
    margin-bottom: 0;
}

.testimonial-heading{
    font-family: var(--font-family-1);
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
    height: 51px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 29. Pricing Style */

.pricing-content-container{
    display: flex;
    flex-direction: column;
    gap: 80px 0px;
    position: relative;
    overflow: hidden;
}

.pricing-content-title{
    width: 35%;
    position: relative;
    z-index: 1;
}

.heading-highlight-container{
    position: absolute;
    top: 20px;
    right: 120px;
    display: flex;
    flex-direction: column;
    width: 46%;
    z-index: 0;
}

.pricing-heading-highlight{
    font-family: var(--font-family-1);
    font-size: 200px;
    line-height: 1em;
    text-transform: uppercase;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: var(--accent-color-3);
    stroke: var(--accent-color-3);
    color: var(--accent-color-4);
}

.pricing-description{
    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5em;
}

.card-pricing .price{
    color: var(--accent-color);
    font-family: var(--font-family-1);
    font-size: 48px;
    font-weight: 500;
    line-height: 1em;
    text-transform: uppercase;
}

.pricing-divider{
    border-bottom: 1px solid var(--accent-color-7);
}

/* 30. Contact CTA Styles */

.contact-cta-title-container{
    position: relative;
    width: 87%;
    z-index: auto;
}

.contact-cta-text-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -80px;
    margin-bottom: 0px;
    margin-right: 0px;
    margin-left: auto;
    width: 47%;
    align-self: end;
    text-align: start;
    z-index: 3;
}

.contact-cta-title{
    font-size: 115px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1em;
    text-align: start;
}

.contact-cta-title.heading-fill{
    position: relative;
    color: var(--primary);
    z-index: 1;
}

.contact-cta-title.heading-stroke{
    position: absolute;
    top: 0;
    left: 0;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: var(--primary);
    stroke: var(--primary);
    color: var(--accent-color-4);
    z-index: 3;
}

.contact-cta-text-container p{
    color: var(--primary);
}

.contact-cta-image{
    position: absolute;
    left: -50px;
    bottom: 0;
    width: 58%;
    z-index: 2;
}

/* 31. Team Style */

.team-title-container{
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    position: sticky;
    text-align: start;
    top: 20px;
    z-index: 10;
    text-align: start;
    justify-content: start;
    align-items: start;
}

.team-container{
    display: flex;
    flex-direction: column;
    gap: 30px 30px;
}

.team-social-overlay{
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.team-container .team-social-overlay .social-icon{
    width: 50px;
    min-height: 50px;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    background-color: #1877F2;
    color: #fff;
}

.team-container .team-social-overlay .social-icon:first-child{
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.team-container .team-social-overlay .social-icon:last-child{
    background-color: #000;
}

.team-container:hover .team-social-overlay .social-icon{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.team-social-overlay .social-icon:hover{
    background-color: #fff;
    color: #1877F2;
    transform: translateY(0) scale(0.9);
}

.team-social-overlay .social-icon:first-child:hover{
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.team-social-overlay .social-icon:last-child:hover{
    background-color: #fff;
    color: #000;
}

@media (hover: none), (max-width: 991.98px){
    .team-container .team-social-overlay .social-icon{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* 32. Partners Styles */

.partners-container{
    background-color: var(--accent-color-5);
    color: var(--text-color);
    padding: 50px 50px 50px 50px;
    border-radius: 50px 0px 50px 0px;
    display: flex;
    flex-direction: column;
    gap: 50px 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.partnership-title-content{
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.5em;
    text-align: center;
    font-family: var(--font-family-2);
    color: var(--accent-color);
}

.swiperpartner{
    margin: 0px;
}

/* 33. Notfound Page Section */

.banner-notfound-container{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px 20px;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    z-index: 1;
}

.banner-notfound-container .btn{
    align-self: center;
}

.notfound-heading{
    font-family: var(--font-family-1);
    font-size: 200px;
    font-weight: 400;
    line-height: 1em;
    color: var(--accent-color);
}

.notfound-description{
    width: 60%;
}

/* 34. FAQs Style */

.faq-content-wrapper{
    display: grid;
    grid-template-columns: 0.35fr 0.58fr;
    gap: 0px 80px;
    justify-content: space-between;
}

.faq-contact-wrapper{
    display: flex;
    flex-direction: column;
    gap: 80px 80px;
}

.faq-heading-container{
    width: 48%;
    align-self: center;
    text-align: center;
}

/* 35. Blog Styles */

.blog-content-container{
    display: flex;
    flex-direction: column;
    gap: 80px 80px;
}

.blog-content-container .section-title{
    width: 70%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* 36. Blog Post Styles */

@media (min-width: 992px){
    .post-sidebar-sticky{
        position: sticky;
        top: 20px;
    }
}

.post-quote-icon{
    font-size: 115px;
    color: var(--accent-color);
}

.post-quote-text{
    color: var(--text-color);
    font-family: var(--font-family-1);
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
}

.post-quote-author{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
}

.blog-post-divider{
    border-bottom: 1px solid var(--accent-color-3);
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.post-tag-container{
    width: 67%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 10px;
}

.post-tag{
    display: inline-block;
    background-color: var(--accent-color-4);
    color: var(--text-color);
    padding: 5px 10px;
    border: 1px solid var(--accent-color);
    border-radius: 100px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
    line-height: 1em;
    font-family: var(--font-family-2);
}

.recent-blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-blog-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.recent-blog-item img {
    max-width: 100%;
    width: 105px;
    height: auto;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 150/150;
}

.recent-blog-date {
    font-family: var(--font-family-2);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    display: block;
    margin-bottom: 2px;
}

.recent-blog-heading {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    text-transform: capitalize;
    font-family: var(--font-family-2);
}

.recent-blog-item:hover .recent-blog-heading {
    color: var(--accent-color);
    transition: 0.2s ease;
}

.post-meta{
    padding-bottom: 10px;
    border-bottom: 1px solid var(--accent-color-3);
}

.post-meta .meta-data{
    font-family: var(--font-family-2);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
}

.post-inner-image img{
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}

.blog-pagination{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.blog-pagination .page-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 18px;
    background-color: var(--accent-color-3);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    text-decoration: none;
    transition: all 300ms;
}

.blog-pagination .page-btn:hover{
    background-color: var(--accent-color);
    color: #ffffff;
}

.blog-pagination .page-btn.active{
    background-color: var(--accent-color);
    color: #ffffff;
    cursor: default;
    pointer-events: none;
}

.blog-pagination .page-btn.disabled{
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}


/* 37. Contact Style */

.contact-content-wrapper{
    display: flex;
    flex-direction: column;
    gap: 80px 80px;
}

.contact-content-heading{
    font-size: 115px;
    animation: fade-in-left 1s ease-in;
}

.contact-description-container{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: end;
    margin-left: auto;
    width: 60%;
    height: 100%;
}

.contact-info-heading{
    font-family: var(--font-family-2);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
}

/* 38. Maps Style */

.maps{
    max-width: 100%;
    width: 100%;
    line-height: 1;
    height: 400px;
    filter: none;
    overflow: hidden;
}

/* 39. Footer Style */

.footer-container{
    display: flex;
    flex-direction: column;
    gap: 65px 50px;
}

.social-footer-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px 10px;
}

.footer-info-container{
    display: flex;
    flex-direction: column;
    gap: 10px 10px;
    width: 100%;
}

.footer-info{
    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5em;
}

.footer-newsletter-container{
    display: flex;
    flex-direction: column;
    gap: 40px 0px;
    width: 100%;
}

.footer-title-container{
    display: flex;
    flex-direction: column;
    min-height: 150px;
    justify-content: flex-end;
    overflow: hidden;
    border-bottom: 5px solid var(--primary);
    padding: 0px 0px 0px 0px;
}

.footer-title{
    text-align: center;
    font-family: var(--font-family-1);
    font-size: 200px;
    font-weight: 400;
    line-height: 1em;
    margin-bottom: -59px;
    text-transform: uppercase;
}

.footer-newsletter-container .container-title{
    width: 100%;
}

.footer-copyright-container{
    background-color: var(--accent-color-2);
    width: 100%;
    color: var(--primary);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 10px;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 30px 40px;
    border-radius: 40px 0px 40px 0px;
}

.legallink,
.copyright{
    font-family: var(--font-family-2);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5em;
    text-transform: capitalize;
    text-align: start;
    letter-spacing: 0px;
}

/* 39.1 Newsletter Expand Form */

#newsletter-form.footer-newsletter-form{
    position: relative;
    display: block;
    width: 100%;
    max-width: 460px;
    height: 60px;
    margin: 0;
}

#newsletter-form.footer-newsletter-form .newsletter-input{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    opacity: 0;
    border: none;
    border-radius: 2px;
    padding: 0 20px;
    font-family: var(--font-family-2);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    background-color: var(--primary);
    outline: none;
    transition: all 0.4s ease;
    z-index: 1;
}

#newsletter-form.footer-newsletter-form .newsletter-input::placeholder{
    font-family: var(--font-family-2);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.55;
}

#newsletter-form.footer-newsletter-form .btn-accent-primary{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 2px;
    font-family: var(--font-family-2);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1em;
    background-color: var(--secondary);
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 2;
}

#newsletter-form.footer-newsletter-form .btn-accent-primary:hover{
    background-color: var(--accent-color);
    color: var(--secondary);
}

#newsletter-form.footer-newsletter-form.active .newsletter-input{
    width: 60%;
    opacity: 1;
}

#newsletter-form.footer-newsletter-form.active .btn-accent-primary{
    width: 40%;
}

/* 39.2 Footer Polish */

.section-footer h3,
.section-footer h4,
.section-footer h5{
    margin: 0 0 16px 0;
    line-height: 1.3em;
    color: var(--primary);
}

.section-footer h3{
    font-family: var(--font-family-1);
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-footer h4{
    font-family: var(--font-family-1);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-footer h5{
    font-family: var(--font-family-2);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.chevron-circle-list li a{
    transition: all 0.4s ease;
    display: inline-block;
}

.chevron-circle-list li a:hover{
    opacity: 0.75;
    padding-left: 6px;
}

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

.footer-icon:hover{
    transform: translateY(-4px);
}

@media screen and (max-width: 575.98px){
    #newsletter-form.footer-newsletter-form .newsletter-input{
        padding: 0 14px;
        font-size: 14px;
    }
    #newsletter-form.footer-newsletter-form .btn-accent-primary{
        font-size: 14px;
    }
}

/* 39.3 Newsletter Thank You Message */

.newsletter-thank-you{
    font-family: var(--font-family-2);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--primary);
    margin: 0 0 16px 0;
}

@media screen and (max-width: 575.98px){
    .newsletter-thank-you{
        font-size: 13px;
    }
}

/* 40. Accordion Style */

.accordion{
    display: flex;
    flex-direction: column;
    gap: 30px 30px;
}

.accordion .accordion-item {
    background-color: transparent                                                   ;
    border: none;
    outline: none;
    overflow: hidden;
}

.accordion .accordion-item .accordion-header{
    border: none;
    border-bottom: 1px solid var(--accent-color-6);
    position: relative;
    overflow: hidden;
}

.accordion .accordion-item .accordion-body{
    padding: 30px 0px 30px 0px;
}

/* 40.1 Service Accordion */

.accordion .accordion-item .service-accordion-header {
    padding-left: 0;
}

.accordion-item .service-accordion-header .accordion-button {
    justify-content: center;
    text-align: center;
}

.accordion-item .service-accordion-header .accordion-button{
    background-color: transparent;
    border: 0px;
    font-family: var(--font-family-1);
    font-size: 115px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1em;
    box-shadow: none;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: var(--text-color);
    stroke: var(--primary);
    color:#1E73EB;;
    margin-block-end: -30px;
    padding: 0px 0px 0px 0px;
}

.accordion-item .service-accordion-header .accordion-button::after{
    display: none;
}

.accordion-item .service-accordion-header .accordion-button:not(.collapsed){
    color: var(--accent-color-4) !important;
}

/* 40.2. FAQ Accordion */

.accordion-item .faq-accordion-header .accordion-button{
    background-color: transparent;
    color: var(--text-color);
    border: 0px;
    font-family: var(--font-family-1);
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
    box-shadow: none;
    padding: 0px 0px 0px 0px;
    margin-bottom: 10px;
}

.accordion-item .faq-accordion-header .accordion-button::after{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1em 1em;
    padding: 0.7em;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary);
    fill: var(--primary);
    width: 1.5em;
    height: 1.5em;
    content: "";
}
.accordion-item .faq-accordion-header .accordion-button:not(.collapsed)::after{
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-arrow-up" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v10.793l3.146-3.147a.5.5 0 1 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 1 1 .708-.708L7.5 13.293V2.5A.5.5 0 0 1 8 2z"/></svg>');
    fill: var(--primary);
}

/* 41. Spacing Styles */

/* 41.1 Flexbox spacing (gap) */

.gspace-0 { 
    gap: 0px 0px; 
}
.gspace-1 { 
    gap: 10px 10px; 
}
.gspace-2 { 
    gap: 20px 20px; 
}
.gspace-3 { 
    gap: 30px 30px; 
}
.gspace-4 { 
    gap: 40px 40px; 
}
.gspace-5 { 
    gap: 50px 50px; 
}
.gspace-x-0 { 
    column-gap: 0px; 
}
.gspace-x-1 { 
    column-gap: 10px; 
}
.gspace-x-2 { 
    column-gap: 20px; 
}
.gspace-x-3 { 
    column-gap: 30px; 
}
.gspace-x-4 { 
    column-gap: 40px; 
}
.gspace-x-5 { 
    column-gap: 50px; 
}

.gspace-y-0 { 
    row-gap: 0px; 
}
.gspace-y-1 { 
    row-gap: 10px; 
}
.gspace-y-2 { 
    row-gap: 20px; 
}
.gspace-y-3 { 
    row-gap: 30px; 
}
.gspace-y-4 { 
    row-gap: 40px; 
}
.gspace-y-5 { 
    row-gap: 50px; 
}

/* 41.2 Grid spacing (row-gap & column-gap) */

.grid-spacer-0{
    --bs-gutter-x: 0px;
    --bs-gutter-y: 0px
}

.grid-spacer-1{
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}

.grid-spacer-2{
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.grid-spacer-3{
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.grid-spacer-4{
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
}

.grid-spacer-5{
    --bs-gutter-x: 50px;
    --bs-gutter-y: 50px;
}

.grid-spacer-80{
    --bs-gutter-x: 80px;
    --bs-gutter-y: 80px;
}

.grid-spacer-120{
    --bs-gutter-x: 120px;
    --bs-gutter-y: 120px;
}

/* Grid spacing (column-gap) */

.grid-spacer-x-0 {
    --bs-gutter-x: 0px;
}
.grid-spacer-x-2 {
    --bs-gutter-x: 20px;
}
.grid-spacer-x-3 {
    --bs-gutter-x: 30px;
}
.grid-spacer-x-4 {
    --bs-gutter-x: 40px;
}
.grid-spacer-x-5 {
    --bs-gutter-x: 50px;
}
.grid-spacer-x-80 {
    --bs-gutter-x: 80px;
}
.grid-spacer-x-120 {
    --bs-gutter-x: 120px;
}

/* Grid spacing (row-gap) */

.grid-spacer-y-0 {
    --bs-gutter-y: 0px;
}
.grid-spacer-y-1 {
    --bs-gutter-y: 10px;
}
.grid-spacer-y-2 {
    --bs-gutter-y: 20px;
}
.grid-spacer-y-3 {
    --bs-gutter-y: 30px;
}
.grid-spacer-y-4 {
    --bs-gutter-y: 40px;
}
.grid-spacer-y-5 {
    --bs-gutter-y: 50px;
}
.grid-spacer-y-80 {
    --bs-gutter-y: 80px;
}
.grid-spacer-y-120 {
    --bs-gutter-y: 120px;
}
/* Content Justify */
.section p,
.section li p,
main p {
    text-align: justify;
}


/* Blog post: TL;DR, FAQ, tags (added with the SEO editor) */
.post-tldr {
    border-left: 3px solid var(--accent, #fe5100);
    background: rgba(0, 0, 0, 0.03);
    padding: 14px 18px;
    border-radius: 8px;
}
.post-tldr strong {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.7;
}
.post-faq {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 24px;
}
.post-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}
.post-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}
.post-faq-item summary::-webkit-details-marker { display: none; }
.post-faq-item summary::after { content: '+'; float: right; opacity: 0.5; }
.post-faq-item[open] summary::after { content: '\2212'; }
.post-faq-item p { margin-top: 8px; text-align: justify; }
.post-tag {
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
}

/* Page builder blocks (.pb-*) */
.pb-hero {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
.pb-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.pb-hero-inner { position: relative; }
.pb-hero h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; }
.pb-hero p { max-width: 640px; margin: 0 auto 24px; font-size: 18px; }
.pb-btn {
    display: inline-block;
    padding: 12px 26px;
    background: var(--accent, #fe5100);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}
.pb-section-heading { text-align: center; margin-bottom: 32px; font-size: clamp(26px, 4vw, 40px); }
.pb-richtext p { text-align: justify; }
.pb-richtext h2, .pb-richtext h3 { margin: 24px 0 12px; }
.pb-figure img { width: 100%; border-radius: 8px; }
.pb-figure figcaption { text-align: center; font-size: 14px; opacity: 0.7; margin-top: 8px; }
.pb-cards {
    display: grid;
    grid-template-columns: repeat(var(--pb-cols, 3), 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .pb-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pb-cards { grid-template-columns: 1fr; } }
.pb-card { border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; padding: 20px; }
.pb-card img { width: 100%; border-radius: 6px; margin-bottom: 14px; }
.pb-card h3 { margin-bottom: 8px; }
.pb-card-link { color: var(--accent, #fe5100); font-weight: 600; }
.pb-faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); padding: 12px 0; }
.pb-faq-item summary { cursor: pointer; font-weight: 600; list-style: none; }
.pb-faq-item summary::-webkit-details-marker { display: none; }
.pb-faq-item summary::after { content: '+'; float: right; opacity: 0.5; }
.pb-faq-item[open] summary::after { content: '\2212'; }
.pb-faq-item p { margin-top: 8px; text-align: justify; }
.pb-cta { text-align: center; padding: 40px; border-radius: 8px; background: rgba(0,0,0,0.03); }
.pb-cta h2 { margin-bottom: 12px; }
.pb-cta p { max-width: 600px; margin: 0 auto 20px; }

/* Page builder — phase 1 blocks (stats, testimonials, team, logos) */
.pb-section-sub { text-align: center; color: #6b6b73; margin: -18px 0 28px; }
.pb-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    text-align: center;
}
.pb-stat-value { font-size: clamp(32px, 5vw, 52px); font-weight: 700; line-height: 1; }
.pb-stat-label { margin-top: 8px; color: #6b6b73; font-size: 15px; }
.pb-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.pb-testimonial { border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; padding: 22px; margin: 0; }
.pb-testimonial blockquote { margin: 0 0 16px; font-size: 16px; line-height: 1.6; }
.pb-testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.pb-testimonial figcaption img { width: 44px; height: 44px; border-radius: 999px; object-fit: cover; }
.pb-testimonial figcaption strong { display: block; }
.pb-testimonial figcaption em { color: #6b6b73; font-style: normal; font-size: 14px; }
.pb-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.pb-team-member { display: block; border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,0.1); }
.pb-team-member img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.pb-team-meta { padding: 14px; }
.pb-team-meta strong { display: block; }
.pb-team-meta span { color: #6b6b73; font-size: 14px; }
.pb-marquee { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.pb-marquee-track { display: flex; align-items: center; gap: 48px; width: max-content; animation: pb-marquee 28s linear infinite; }
.pb-marquee-track img { height: 40px; width: auto; object-fit: contain; opacity: 0.75; }
@keyframes pb-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .pb-marquee-track { animation: none; } }
