/* ----- CUSTOM FONT ----- */
@font-face {
  font-family: 'NotoSans_online_security';
  src: url('NotoSans_online_security.woff2') format('woff2');
}

/* ----- RESET & GLOBAL ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'NotoSans_online_security', sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: #000;
    color: white;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
    scroll-behavior: smooth;
}

/* ----- GLOBAL H4 STYLING ----- */
h4 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 auto 20px auto;
    padding-bottom: 12px;
    position: relative;
    display: block;
    width: 100%;
}

h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #EDEDED, transparent);
    border-radius: 2px;
}

/* ----- HEADER LABEL STYLING (for "Editing Work" labels) ----- */
.header-label {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 auto 20px auto;
    padding-bottom: 12px;
    position: relative;
    display: block;
    width: 100%;
}

.header-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #EDEDED, transparent);
    border-radius: 2px;
}

/* Main Container - With proper side margins */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    overflow-x: hidden;
}

/* For full-width sections that need to break out of container */
.full-width-wrapper {
    width: 100vw;
    max-width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #000;
    overflow-x: hidden;
}

/* ----- NAVBAR - stays within container with margins ----- */
.navbar.glass-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(241, 238, 238, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 1320px;
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999 !important;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.navbar.glass-navbar:hover {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgb(226, 223, 228);
}

/* Logo with rounded image */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: white;
    gap: 12px;
}

.logo-image {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(243, 241, 245, 0.995);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

.logo-highlight {
    color: #ebe6ef;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0 auto;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    cursor: pointer;
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #e2e1e4;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

/* Get Inside Button */
.get-inside-btn {
    background: red;
    color: white;
    text-decoration: none;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.get-inside-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    gap: 15px;
    color: white;
    text-decoration: none;
}

.get-inside-btn:active {
    transform: translateY(0);
}

.get-inside-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.get-inside-btn:hover::before {
    left: 100%;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: white;
    padding: 8px;
}

/* ----- BACKGROUND VIDEO - Full width (breaks out of container) ----- */
.video-container-section {
    width: 100%;
    max-width: 100vw;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 80px;
    overflow: hidden;
}

.video-container-wrapper {
    width: 100%;
    position: relative;
}

.video-background-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    overflow: hidden;
    border-radius: 0 !important;
}

/* ✅ IMPROVED: Background video perfect fit */
.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transform: translate(-50%, -50%);
}

.background-video.active {
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
}

/* Video Content - Centered within container constraints */
.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
    z-index: 2;
    padding: 20px;
}

.main-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 500;
    margin-bottom: 15px;
    background: #EDEDED;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.tagline {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 400;
    margin-bottom: 10px;
    color: #EDEDED;
}

.subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #EDEDED;
    margin-bottom: 30px;

    font-weight: 200;
    line-height: 1.4;
}

.video-quote {
    font-size: clamp(14px, 2vw, 18px);
    color: #aaa;

    max-width: 600px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ----- ALL OTHER SECTIONS - Stay within container margins ----- */
.services-section,
.about-section,
.expertise-section,
.meet-team-section,
.features-section,
.hero-section {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 20px;
    background-color: #000;
    overflow-x: hidden;
}

/* ----- HOW WE APPROACH ----- */
.how-we-approach {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.approach-content {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.approach-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 30px;
    background: #EDEDED;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.approach-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #EDEDED;
    border-radius: 2px;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.approach-point {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #EDEDED;
    transition: all 0.3s ease;
}

.approach-point:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.approach-icon {
    font-size: 24px;
    color: #EDEDED;
    background: rgba(138, 43, 226, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approach-text {
    flex: 1;
}

.approach-point h4 {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.approach-point p {
    font-size: clamp(14px, 2vw, 16px);
    color: #ddd;
    line-height: 1.6;
}

/* ----- MEET OUR TEAM SECTION ----- */
.meet-team-section {
    background-color: #000;
    padding: 80px 20px;
    width: 100%;
    scroll-margin-top: 100px;
}

.meet-team-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.1;
}

.team-subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    color: #888;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Book a Call Button */
.book-call-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: red;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.book-call-btn:hover {
    background-color: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
}

.book-call-btn:active {
    transform: translateY(-1px);
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
}

.member-image-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: #EDEDED;
    background-size: 200% 200%;
    animation: gradientBorder 3s ease infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.member-image-container:hover {
    transform: scale(1.05);
    box-shadow: #EDEDED;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    padding: 3px;
    background: #000;
}

.member-info {
    text-align: center;
    margin-top: 15px;
}

.member-name {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.member-role {
    font-size: clamp(14px, 2vw, 16px);
    color: #EDEDED;
    font-weight: 500;
    margin-bottom: 10px;
}

.member-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #EDEDED;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.member-link:hover {
    background: rgba(138, 43, 226, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

/* ----- SERVICES SECTION ----- */
.services-section {
    background-color: #000;
    padding: 60px 20px;
    width: 100%;
    scroll-margin-top: 100px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: white;
    background: #EDEDED;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.services-header p {
    font-size: clamp(16px, 2vw, 18px);
    color: #ddd;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Video & Text Container */
.video-text-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-section {
    flex: 1;
    min-width: 280px;
}

/* ✅ IMPROVED: Service video perfect fit */
.service-video {
    width: 100%;
    height: 100%;
    max-height: 450px;
    min-height: 300px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: block;
}

.service-video.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-section {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-title {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    background: #EDEDED;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-description {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid #EDEDED;
}

.service-description:last-child {
    margin-bottom: 0;
}

/* ----- ABOUT SECTION ----- */
.about-section {
    background-color: #000;
    padding: 80px 20px;
    width: 100%;
    scroll-margin-top: 100px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.about-title {
    font-size: clamp(26px, 3.5vw, 32px);
    font-weight: 700;
    margin-bottom: 20px;
    background: #EDEDED;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-text {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 30px;
}
.highlight-text {
  font-weight: bold;
  color: #ff0000;
  text-shadow: 1px 0px 0px #ff0000, 
               -1px 0px 0px #ff0000;
  -webkit-text-stroke: 0.5px #ff0000;
}
/* Social Buttons */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.social-btn:active {
    transform: translateY(-1px);
}

.instagram-btn {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.twitter-btn {
    background: linear-gradient(45deg, #1DA1F2, #1DA1F2);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.project-btn {
    background: linear-gradient(45deg, #8a2be2, #4b0082);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

/* ----- MAIN CONTENT ----- */
.content {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    flex-grow: 1;
}

/* ----- FEATURES SECTION (Video Only Boxes) ----- */
.features-section {
    background-color: #000;
    padding: 80px 20px;
    width: 100%;
    position: relative;
    scroll-margin-top: 100px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-subtitle {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: #fff;
    margin: 10px 0;
}

.features-intro {
    font-size: clamp(16px, 2vw, 18px);
    color: #aaa;

}

/* Features Grid with Varied Widths */
.features-grid-varied {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
    margin-top: 40px;
}

.feature-box-item {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.feature-box-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
    border-color: #EDEDED;
}

.feature-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

/* ✅ IMPROVED: Feature video perfect fit */
.feature-video {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.feature-box-item:hover .feature-video {
    transform: scale(1.05);
}

.feature-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.4) 100%
    );
    transition: background 0.3s ease;
}

.feature-box-large {
    grid-column: span 7;
}

.feature-box-large .feature-video-container {
    min-height: 350px;
}

.feature-box-small {
    grid-column: span 5;
}

.feature-box-small .feature-video-container {
    min-height: 250px;
}

.features-grid-varied > .feature-box-item:nth-child(1) {
    grid-column: 1 / span 7;
    grid-row: 1;
}

.features-grid-varied > .feature-box-item:nth-child(2) {
    grid-column: 8 / span 5;
    grid-row: 1;
}

.features-grid-varied > .feature-box-item:nth-child(3) {
    grid-column: 1 / span 5;
    grid-row: 2;
}

.features-grid-varied > .feature-box-item:nth-child(4) {
    grid-column: 6 / span 7;
    grid-row: 2;
}

/* ----- EXPERTISE SECTION ----- */
.expertise-section {
    background-color: #000;
    padding: 80px 20px;
    width: 100%;
    position: relative;
    scroll-margin-top: 100px;
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.expertise-header {
    text-align: center;
    margin-bottom: 60px;
}

.expertise-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 15px;
    background: #EDEDED;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.expertise-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: #aaa;

    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.expertise-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
    margin-top: 40px;
}

.expertise-intro {
    flex: 1;
    min-width: 280px;
}

.expertise-intro-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.expertise-intro-text {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 15px;
}

.expertise-intro-text:last-child {
    margin-bottom: 0;
}

.expertise-stats {
    flex: 1;
    min-width: 280px;
}

/* Progress Bars */
.progress-item {
    margin-bottom: 35px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-name {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    color: white;
}

.progress-percentage {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    color: #EDEDED;
}

.progress-bar-container {
    width: 100%;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: #EDEDED;
    border-radius: 6px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-radius: 0 6px 6px 0;
}

/* ----- TESTIMONIALS SECTION - DESKTOP (VERTICAL SCROLL) ----- */
.header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #cccccc;
    line-height: 1.6;
}

.header .highlight {
    color: #ff0000;
    font-weight: 700;
}

.testimonials-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    background-color: #000000;
    box-shadow: 0 20px 40px #000000;
    padding: 1.5rem;
    border: 1px solid #000000;
}

.testimonials-wrapper {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.testimonial-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: visible;
    min-width: 0;
}

/* DESKTOP - Vertical scroll (down to up) */
.testimonial-column-left,
.testimonial-column-right {
    animation: scrollUp 35s linear infinite;
}

.testimonial-column-middle {
    animation: scrollDown 35s linear infinite;
}

@keyframes scrollUp {
    0% { transform: translateY(0%); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0%); }
}

.scrolling-paused {
    animation-play-state: paused;
}

.testimonial-card {
    background: #111111;
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: fit-content;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-header {
    margin-bottom: 1.2rem;
}

.quote-icon {
    font-size: 1.8rem;
    color: #ffffff;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.6;
    color: #ffffff;
    flex-grow: 1;
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    white-space: normal;
    text-align: left;
}

.testimonial-footer {
    display: none !important;
}

.client-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background-color: #222222;
    display: block;
}

.image-wrapper {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    position: relative;
}

.client-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.client-title {
    font-size: 0.9rem;
    color: #aaaaaa;
    font-weight: 500;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    gap: 1.5rem;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.control-btn:active {
    transform: scale(0.98);
}

.pause-btn {
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.3);
    background: rgba(255, 107, 107, 0.1);
}

.pause-btn:hover {
    background: rgba(255, 107, 107, 0.2);
}

/* Image placeholder colors */
.image-placeholder {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.image-1 { background: linear-gradient(135deg, #333333 0%, #666666 100%); }
.image-2 { background: linear-gradient(135deg, #444444 0%, #777777 100%); }
.image-3 { background: linear-gradient(135deg, #555555 0%, #888888 100%); }
.image-4 { background: linear-gradient(135deg, #666666 0%, #999999 100%); }
.image-5 { background: linear-gradient(135deg, #777777 0%, #aaaaaa 100%); }
.image-6 { background: linear-gradient(135deg, #888888 0%, #bbbbbb 100%); }
.image-7 { background: linear-gradient(135deg, #999999 0%, #cccccc 100%); }
.image-8 { background: linear-gradient(135deg, #aaaaaa 0%, #dddddd 100%); }
.image-9 { background: linear-gradient(135deg, #bbbbbb 0%, #eeeeee 100%); }

/* ----- FOLLOWERS SECTION ----- */
.section-title h2 {
    color: white !important;
}

.section-title p {
    color: #ccc !important;
}

.followers-container {
    background-color: #000 !important;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px #000;
    overflow: hidden;
    position: relative;
    border: 1px solid #000;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 15px;
    text-align: center;
}

.followers-header h3 {
    font-size: clamp(20px, 3vw, 24px);
    color: white !important;
    margin-bottom: 5px;
    margin-top: 7px;
}

.followers-header p {
    color: #aaa !important;
    font-size: clamp(14px, 2vw, 16px);
}

.followers-scroll-container {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    width: 100%;
    max-width: 100%;
}

.followers-track {
    display: flex;
    width: fit-content;
    animation: scrollRightToLeft 30s linear infinite;
}

@keyframes scrollRightToLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.followers-track:hover {
    animation-play-state: paused;
}

.followers-scroll-container::before,
.followers-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.followers-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent) !important;
}

.followers-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent) !important;
}

.follower-card {
    background-color: #111 !important;
    border-radius: 15px;
    padding: 25px;
    margin-right: 25px;
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.follower-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.follower-info h4 {
    font-size: clamp(18px, 2.5vw, 20px);
    color: white !important;
    margin-bottom: 5px;
    font-weight: 600;
}

.follower-info p {
    color: #ccc !important;
    font-size: clamp(13px, 2vw, 15px);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
}

.follow-btn {
    background-color: #0095f6 !important;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

.follow-btn:hover {
    background-color: #0081d6 !important;
}

.instagram-icon {
    color: #E4405F !important;
    font-size: 18px;
    margin-right: 5px;
}

.twitter-icon {
    color: #1DA1F2 !important;
    font-size: 18px;
    margin-right: 5px;
}

/* ----- EDITING SERVICES SECTION ----- */
.editing-services-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.editing-services-section h2 {
    text-align: center;
    font-size: clamp(26px, 3.5vw, 32px);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
}

.editing-services-section > p {
    text-align: center;
    font-size: clamp(13px, 2vw, 14px);
    color: #ffffff;
    margin-bottom: 40px;
}

.editing-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.editing-card {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
    border-radius: 20px;
    padding: 30px 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.editing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(145deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.4s ease;
    opacity: 0.2;
}

.editing-card-1::before,
.editing-card-2::before,
.editing-card-3::before {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

.editing-card::after {
    content: '';
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
}

.editing-card:hover::after {
    opacity: 0.3;
    inset: -50%;
}

.editing-card:hover {
    transform: translateY(-8px);
}

.editing-card:hover::before {
    opacity: 1;
    padding: 3px;
}

.editing-card-1:hover,
.editing-card-2:hover,
.editing-card-3:hover {
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4), 0 0 80px rgba(239, 68, 68, 0.3);
}

.editing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

.editing-title {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 400;
    color: black;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.editing-description {
    font-size: clamp(13px, 2vw, 15px);
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.editing-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.learn-more::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: translateX(5px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.editing-card-1 {
    animation: float 6s ease-in-out infinite;
}

.editing-card-2 {
    animation: float 6s ease-in-out infinite 2s;
}

.editing-card-3 {
    animation: float 6s ease-in-out infinite 4s;
}

/* ----- VIDEO GRID & MODAL ----- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

/* ✅ IMPROVED: Video card video perfect fit */
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    pointer-events: none;
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.stats-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 12vw, 120px);
    font-weight: 700;
    color: #a3e635;
    text-shadow: 0 0 40px rgba(163, 230, 53, 0.5);
    z-index: 1;
}

.video-overlay-text {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.video-overlay-text .red-text {
    color: #dc2626;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
}

.modal-video {
    width: 100%;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #dc2626;
}

/* ----- ENLARGED VIDEO SECTIONS ----- */
.short-form-section,
.long-form-section {
    width: 100%;
    max-width: 1150px;
    margin: 60px auto;
    padding: 20px;
}

.short-form-section .header,
.long-form-section .header {
    text-align: center;
    margin-bottom: 20px;
    max-width: 100%;
}

.short-form-section .header .main-title,
.long-form-section .header .main-title {
    text-align: center;
}

.short-form-section .header .subtitle,
.long-form-section .header .subtitle {
    text-align: center;
    max-width: 600px;
    margin: 8px auto 0;
    color: #aaa;
    font-size: clamp(13px, 1.6vw, 15px);
}

.video-grid.enlarged-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.video-card.enlarged-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card.enlarged-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-card.enlarged-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4), 0 0 80px rgba(239, 68, 68, 0.3);
}


/* Images for analyisi */
/* ---- YouTube Growth Section ---- */
.yt-growth-section {
    width: 100%;
    max-width: 1200px;        /* Match other sections width */
    margin: 60px auto;
    padding: 0 40px;
}

.yt-growth-header {
    text-align: center;
    margin-bottom: 40px;
}

.yt-header-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    text-align: center;
}

.yt-main-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
    text-align: center;
}

.yt-highlight {
    color: #ff0000;

}

.yt-subtitle {
    font-size: clamp(13px, 1.6vw, 15px);
    color: #aaa;
    line-height: 1.6;
    max-width: 480px;
    margin: 8px auto 0;
    text-align: center;
}

/* ---- Image Grid ---- */
.yt-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.yt-image-card {
    width: 100%;
    height: 320px;            /* Big card */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #111;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yt-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.25);
}

.yt-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Image fits perfectly inside big card */
    object-position: center top;
    display: block;
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
    .yt-growth-section {
        max-width: 100%;
        padding: 0 25px;
    }

    .yt-image-card {
        height: 270px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .yt-growth-section {
        padding: 0 15px;
        margin: 40px auto;
    }

    .yt-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .yt-image-card {
        height: 200px;
    }
}

/* ---- Small Mobile ---- */
@media (max-width: 480px) {
    .yt-image-grid {
        grid-template-columns: 1fr;   /* 1 column on small phones */
        gap: 12px;
    }

    .yt-image-card {
        height: 230px;
    }
}
/* ✅ IMPROVED: Enlarged card video perfect fit */
.video-card.enlarged-card video {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.stats-overlay.enlarged-stats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(100px, 15vw, 160px);
    font-weight: 800;
    color: #a3e635;
    text-shadow: 0 0 60px rgba(163, 230, 53, 0.7);
    z-index: 1;
    letter-spacing: -5px;
}

.video-overlay-text.enlarged-text {
    position: absolute;
    top: 35px;
    left: 35px;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: #fff;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.9);
    z-index: 2;
    line-height: 1.2;
}

.video-overlay-text.enlarged-text .red-text {
    color: #dc2626;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
}

.play-button.enlarged-play {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, background 0.4s ease;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.play-button.enlarged-play::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 30px solid #000;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 10px;
}

.video-card.enlarged-card:hover .play-button.enlarged-play {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

/* ----- HERO SECTION ----- */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin-top: 100px;
}

/* Red radial glow effect at bottom of hero */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(200, 0, 0, 0.55) 0%, rgba(180, 0, 0, 0.3) 35%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
}

.hero-content {
    max-width: 1100px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInDown 1s forwards 0.2s;
}

.avatars-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #000;
    margin-left: -15px;
    object-fit: cover;
    transition: transform 0.3s ease, z-index 0.3s ease;
    position: relative;
    background: #333;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: scale(1.15) translateY(-5px);
    z-index: 10;
}

.rating-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.star.filled {
    color: #ff0000;
}

.star.empty {
    color: #666;
}

.star:hover {
    transform: scale(1.2);
}

.rating-text {
    color: #888;
    font-size: 14px;
    font-weight: 400;
    margin-top: -9px;
    letter-spacing: 0.5px;
}

.main-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    margin-top: -70px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.4s;
}

.main-heading .line {
    display: block;
}

.main-heading .regular {
    color: #fff;
}

.main-heading .highlight {
    color: #ff0000;

    font-weight: 900;
    position: relative;
    display: inline-block;
}

.main-heading .blue-dot {
    color: #0066ff;
}

.hero-section .subtitle {
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    color: #888;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: red;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background: #111;
    border-color: #555;
    transform: translateY(-3px);
}

.btn span {
    position: relative;
    z-index: 1;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ----- FOOTER ----- */
.footer-section {
    background-color: #000000;
    color: #8B9CB6;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.footer-column:last-child {
    margin-left: auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-title {
    color: #FFFFFF;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    margin: 0;
}

.footer-description {
    line-height: 1.6;
    margin: 0;
    color: #8B9CB6;
    font-size: clamp(14px, 2vw, 16px);
}

.footer-heading {
    color: #FFFFFF;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    margin: 0 0 25px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #8B9CB6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(14px, 2vw, 16px);
}

.footer-links a:hover {
    color: #4A9EFF;
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-info svg {
    flex-shrink: 0;
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: clamp(14px, 2vw, 16px);
}

.footer-hours .closed {
    color: #FF4757;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #1a2332;
    text-align: center;
}

.copyright {
    margin: 0;
    font-size: clamp(13px, 2vw, 14px);
}

.creator-link {
    color: #4A9EFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.creator-link:hover {
    color: #357AE8;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #1a2332;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B9CB6;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #4A9EFF;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Additional sections */
.duoframe-hero-section {
    background-color: #000000;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}

.duoframe-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.duoframe-hero-title {
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 200;
    line-height: 1.4;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-align: center;
}

.duoframe-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ff0000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.duoframe-cta-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.duoframe-arrow-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.duoframe-cta-button:hover .duoframe-arrow-icon {
    transform: translateX(4px);
}

.testimonial-section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.videos-left {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex: 0 0 auto;
    align-items: center;
}

.horizontal-video {
    width: 280px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ✅ IMPROVED: Horizontal video perfect fit */
.horizontal-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vertical-video {
    width: 500px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ✅ IMPROVED: Vertical video perfect fit */
.vertical-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-right {
    flex: 1;
    max-width: 600px;
}

.content-right .tagline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
}

.content-right .subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #a0a0a0;
    margin-bottom: 40px;
    line-height: 1.6;

}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.vjs-video-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.vjs-showcase-title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    text-align: center;
}

.vjs-showcase-description {
    font-size: clamp(13px, 1.6vw, 15px);
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.vjs-videos-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* ✅ IMPROVED: VJS video player perfect fit */
.vjs-video-player {
    width: 100%;
    max-width: 500px;
    height: 300px;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
}

.vjs-cta-button {
    background-color: red;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-decoration: none;
}

.vjs-cta-button:hover {
    background-color: #c82333;
    transform: scale(1.05);
}

/* Full Container - Pure Black Background */
body {
    background: #000 !important;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container,
.main-container {
    background: transparent !important;
    min-height: 100vh;
    width: 100%;
}

section {
    width: 100%;
    max-width: 100%;
    padding: 80px 20px;
    background: transparent !important;
    overflow-x: hidden;
}

section:nth-child(odd) {
    background: transparent !important;
}

section:nth-child(even) {
    background: transparent !important;
}

html {
    background: #000;
    overflow-x: hidden;
    width: 100%;
}

body {
    background: #000 !important;
    min-height: 100vh;
    margin: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   ============================================ */

/* ----- TABLET (1024px and below) ----- */
@media (max-width: 1024px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .navbar.glass-navbar {
        width: 92%;
        padding: 10px 25px;
        top: 20px;
    }
    
    .features-grid-varied {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-box-large,
    .feature-box-small,
    .features-grid-varied > .feature-box-item:nth-child(1),
    .features-grid-varied > .feature-box-item:nth-child(2),
    .features-grid-varied > .feature-box-item:nth-child(3),
    .features-grid-varied > .feature-box-item:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .editing-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonials-wrapper {
        gap: 1.2rem;
    }
    
    /* Keep 2 columns for video grids on tablet */
    .video-grid,
    .video-grid.enlarged-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ----- TABLET & MOBILE (768px and below) ----- */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    /* NAVBAR - MOBILE MENU */
    .navbar.glass-navbar {
        width: calc(100% - 30px);
        padding: 10px 20px;
        top: 15px;
        border-radius: 15px;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 16px;
        order: 1;
        flex-shrink: 0;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .get-inside-btn {
        order: 2;
        margin-left: auto;
        margin-right: 10px;
        padding: 7px 14px;
        font-size: 12px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .menu-toggle {
        display: block;
        order: 3;
        flex-shrink: 0;
    }
    
    .nav-links {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 25px 20px;
        gap: 0;
        display: none;
        z-index: 9998;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .video-background-container {
        height: 65vh;
        min-height: 500px;
        width: 100%;
        max-width: 100%;
    }
    
    .video-text-container {
        flex-direction: column;
        padding: 25px 15px;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .service-video {
        max-height: 350px;
        min-height: 250px;
    }
    
    .about-content {
        padding: 30px 25px;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .social-btn {
        width: 220px;
        justify-content: center;
    }
    
    .features-section {
        padding: 60px 15px;
        overflow-x: hidden;
    }
    
    .feature-video-container {
        min-height: 250px;
        width: 100%;
        max-width: 100%;
    }
    
    .approach-content {
        padding: 30px 20px;
    }
    
    .approach-point {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .expertise-content {
        flex-direction: column;
        gap: 30px;
    }
    
    /* ✅ TESTIMONIALS - MOBILE: HORIZONTAL SCROLL (RIGHT TO LEFT) */
    .testimonials-container {
        height: auto;
        min-height: 400px;
        padding: 1.5rem 0;
    }
    
    .testimonials-wrapper {
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .testimonials-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-column {
        flex-direction: row;
        gap: 1rem;
        animation: scrollHorizontalMobile 40s linear infinite;
        min-width: max-content;
    }
    
    @keyframes scrollHorizontalMobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    .testimonial-column-left,
    .testimonial-column-middle,
    .testimonial-column-right {
        animation: scrollHorizontalMobile 40s linear infinite;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 1.5rem;
        flex-shrink: 0;
    }
    
    .testimonial-text {
        text-align: center;
    }
    
    .followers-container {
        padding: 35px 25px;
    }
    
    .follower-card {
        width: 260px;
        padding: 22px;
        margin-right: 20px;
    }
    
    .video-grid.enlarged-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .video-card.enlarged-card {
        min-height: 320px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-section {
        padding: 1.5rem;
        margin-top: 90px;
        min-height: 70vh;
    }
    
    .testimonial-section {
        flex-direction: column;
        gap: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .avatar {
        width: 45px;
        height: 45px;
        margin-left: -12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .section-wrapper {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .videos-left {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }
    
    .vertical-video {
        width: 100%;
        max-width: 100%;
        height: 320px;
    }
    
    .horizontal-video {
        width: 100%;
        max-width: 100%;
        height: 500px;
    }
    
    .content-right {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 35px;
    }
    
    .footer-column:last-child {
        margin-left: 0;
    }
}

/* ----- MOBILE PHONES (480px and below) ----- */
@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
        overflow-x: hidden;
    }
    
    .navbar.glass-navbar {
        width: calc(100% - 20px);
        padding: 8px 12px;
        top: 10px;
        border-radius: 12px;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .get-inside-btn {
        padding: 6px 12px;
        font-size: 11px;
        flex-shrink: 0;
        white-space: nowrap;
        margin-right: 8px;
    }
    
    .video-background-container {
        min-height: 450px;
        height: 60vh;
    }
    
    .video-text-container {
        padding: 20px 10px;
        gap: 25px;
        width: 100%;
        max-width: 100%;
    }
    
    .service-video {
        max-height: 280px;
        min-height: 220px;
        width: 100%;
    }
    
    .about-content {
        padding: 25px 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .social-btn {
        width: 200px;
        padding: 11px 22px;
        font-size: 13px;
    }
    
    .features-section {
        padding: 50px 10px;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .feature-video-container {
        min-height: 220px;
        width: 100%;
    }
    
    .approach-content {
        padding: 25px 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .expertise-section {
        padding: 50px 10px;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .testimonials-container {
        padding: 1rem 0;
        min-height: 350px;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.3rem;
    }
    
    .followers-container {
        padding: 30px 20px;
    }
    
    .follower-card {
        width: 240px;
        padding: 20px;
    }
    
    .video-card.enlarged-card {
        min-height: 260px;
    }
    
    .hero-section {
        padding: 1rem;
        margin-top: 80px;
        min-height: 65vh;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
        margin-left: -10px;
    }
    
    .btn {
        max-width: 280px;
        padding: 0.85rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .vertical-video {
        height: 280px;
        width: 100%;
        max-width: 100%;
    }
    
    .horizontal-video {
        max-width: 100%;
        width: 100%;
        height: 460px;
        margin: 0 auto;
    }
    
    .footer-container {
        gap: 30px;
    }
}

/* ----- EXTRA SMALL MOBILE (360px and below) ----- */
@media (max-width: 360px) {
    .navbar.glass-navbar {
        padding: 6px 12px;
    }
    
    .video-background-container {
        min-height: 400px;
    }
    
    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        padding: 1.2rem;
    }
    
    .video-card.enlarged-card {
        min-height: 240px;
    }
}

/* ----- LANDSCAPE FIX ----- */
@media (max-height: 500px) and (orientation: landscape) {
    .video-background-container {
        height: auto;
        min-height: 400px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 3rem 1rem;
    }
}

/* ----- PRINT ----- */
@media print {
    .navbar.glass-navbar,
    .menu-toggle,
    .get-inside-btn,
    .video-background-container,
    .social-buttons,
    .cta-buttons,
    .followers-container,
    .video-modal {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}