/* Lumen Brand Guidelines CSS */
:root {
    /* Primary Colors */
    --black: #000000;
    --white: #FFFFFF;
    
    /* Secondary Colors */
    --purple: #9888FF;
    --blue: #6DE5FF;
    --green: #44F4B3;
    --yellow: #FFD237;
    --orange: #FF601F;
    --red: #FA1555;
    
    /* Fonts */
    --heading-font: 'Neighbor', sans-serif;
    --body-font: 'Aeonik Trial', sans-serif;
}

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

body {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Apply bold weight to strong elements */
strong, b {
    font-weight: 700;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    margin-bottom: 1rem;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: normal;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%; /* 5% margins as per guidelines */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px; /* Rounded corners as per guidelines */
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background-color: var(--purple);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--blue);
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

/* Keeping these classes for backward compatibility but making them use the same style */
.btn-primary {
    background-color: var(--purple);
    color: var(--white);
    border-radius: 12px;
}

.btn-contact {
    background: var(--purple);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
}

.btn-secondary {
    background-color: var(--purple);
    color: var(--white);
    border: none;
}

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

/* Screen Element (rounded rectangular highlights) */
.screen {
    border-radius: 12px;
    padding: 0px;
    margin-bottom: 20px;
}

.screen-black {
    background-color: var(--black);
    color: var(--white);
}

.screen-white {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}

/* Light Wave Pattern */
.light-wave {
    position: relative;
    overflow: hidden;
}

.light-wave::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23000000" fill-opacity="0.1" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,122.7C960,139,1056,149,1152,138.7C1248,128,1344,96,1392,80L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: var(--white);
    padding: 13px 0 15px 0;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.12), 0 1.5px 8px 0 rgba(80,80,120,0.10);
    border-bottom: 1.5px solid rgba(255,255,255,0.07);
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4vw;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 5%;
        width: 100%;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
    }
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.13);
    transition: text-shadow 0.3s;
}

.logo:hover {
    text-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.desktop-nav ul li {
    margin-left: 0;
}

.desktop-nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.desktop-nav ul li a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
    opacity: 0.8;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a:focus {
    color: var(--white);
}

.desktop-nav ul li a:hover::after,
.desktop-nav ul li a:focus::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--white);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--white);
}

.mobile-menu-toggle.active {
    position: fixed;
    right: 5%;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 90;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: left 0.4s ease;
}

.mobile-nav-overlay.open {
    left: 0;
}

/* Overlay background for mobile menu */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 89;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 80px 0 30px;
    overflow-y: auto;
    justify-content: flex-start;
}

.mobile-nav-container ul {
    list-style: none;
    text-align: left;
    padding: 0 5%;
    width: 100%;
}

.mobile-nav-container ul li {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.4s forwards;
    padding-bottom: 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-overlay.open .mobile-nav-container ul li:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav-overlay.open .mobile-nav-container ul li:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav-overlay.open .mobile-nav-container ul li:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav-overlay.open .mobile-nav-container ul li:nth-child(4) { animation-delay: 0.2s; }
.mobile-nav-overlay.open .mobile-nav-container ul li:nth-child(5) { animation-delay: 0.25s; }

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

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

.mobile-nav-container ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 12px 0;
    display: block;
    position: relative;
    text-align: left;
}

.mobile-nav-container ul li a:hover,
.mobile-nav-container ul li a:focus {
    color: var(--blue);
}

.mobile-nav-container ul li {
    margin: 25px 0;
}

.mobile-nav-container ul li a {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.no-scroll {
    overflow: hidden;
}

/* Hero Section */
.hero {
    background-color: var(--black);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0px !important;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 50px !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

@media (max-width: 768px) {
    header {
        background-color: var(--black);
        padding: 15px 0;
    }
}



.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.6);
}

/* Our Identity Section */
.our-identity {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.identity-content {
    padding: 40px;
    margin-top: 30px;
}

.identity-content .lead {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--black);
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.our-identity {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.identity-content {
    background-color: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.identity-content .lead {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    color: var(--black);
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.identity-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background-color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.identity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background-color: var(--white);
}

.identity-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    background-color: var(--purple);
}

.identity-item:hover .identity-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.identity-item h3 {
    font-size: 1.6rem;
    margin: 15px 0;
    color: var(--black);
    position: relative;
    transition: all 0.3s ease;
}

.identity-item p {
    color: var(--black);
    line-height: 1.7;
    font-size: 1.05rem;
    max-width: 280px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.identity-item h3 {
    margin-bottom: 15px;
    color: var(--black);
}

.identity-item p {
    color: #666;
    line-height: 1.6;
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    background-color: var(--white);
}

/* What We Do Section Styling */
.what-we-do {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    position: relative;
    overflow: hidden;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(152, 136, 255, 0.05) 0%, transparent 50%), 
                radial-gradient(circle at 90% 80%, rgba(109, 229, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 0px !important;
    position: relative;
    display: inline-block;
}

.section-title p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    display: flex;
    width: 32% !important;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    
}

/* No border hover effect as requested */

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Removed hover border effect */

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.6));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::before {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-title {
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: var(--black);
    position: relative;
    padding-bottom: 0px !important;
}

.service-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.service-card .learn-more {
    color: var(--purple);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

.service-card .learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-card .learn-more:hover i {
    transform: translateX(5px);
}

/* Screens That Tell Stories Section */
.screens-stories {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.screens-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('lumen_brand_images/page_35_img_1.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.screen-item {
    position: relative;
    border-radius: 16px;
    padding: 30px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: var(--white);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.7s ease;
    /* border: 1px solid var(--black); */
}

.screen-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.6));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;

}

.screen-item:hover {
    transform: scale(1.08);
}

.screen-item:hover::before {
    opacity: 1;
}

.screen-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Removed the transform effect on content */

.screen-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.screen-content p {
    font-size: 1.2rem;
    margin: 5px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.highlight {
    background-color: var(--purple);
    color: white;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin: 5px 0;
    font-weight: 700;
}

.screens-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Ads on the Move Section */
.ads-on-move {
    padding: 100px 0;
    background-color: var(--white);
}

.ads-on-move-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ads-on-move-text {
    flex: 1;
}

.ads-on-move-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--black);
}

.ads-on-move-text .lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 500;
}

.ads-on-move-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--black);
}

.ads-on-move-features {
    list-style: none;
    margin-bottom: 30px;
}

.ads-on-move-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--black);
}

.ads-on-move-features li i {
    color: var(--green);
    margin-right: 10px;
    font-size: 1.2rem;
}

.ads-on-move-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ads-on-move-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Brand Card Section */
.brand-card {
    padding: 100px 0;
    background-color: var(--white);
}

.brand-card-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.brand-card-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-card-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.brand-card-text {
    flex: 1;
}

.brand-card-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--black);
}

.brand-card-text .lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 500;
}

.brand-card-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--black);
}

.brand-card-features {
    list-style: none;
    margin-bottom: 30px;
}

.brand-card-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--black);
}

.brand-card-features li i {
    color: var(--yellow);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Additional Button Styles - Now unified with main button style */
.btn-green, .btn-yellow, .btn-blue {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-green:hover, .btn-yellow:hover, .btn-blue:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: var(--blue);
}

/* Data That Drives Creative Section */
.data-drives-creative {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.data-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.03;
    z-index: -1;
}

.data-content {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.data-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--blue);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number span {
    font-size: 1.8rem;
    margin-left: 5px;
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 500;
}

.data-visual {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.data-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 300px;
    padding: 0px;
    position: relative;
}

.chart-bar {
    width: 60px;
    background-color: var(--blue);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.5s ease;
}

.chart-bar:hover {
    transform: scaleY(1.05);
    background-color: var(--purple);
}

.chart-bar span {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    color: var(--black);
}

.data-insight {
    flex: 1;
    padding: 20px;
}

.data-insight h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.data-insight p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--black);
}

/* Media Queries for Data Section */
@media (max-width: 992px) {
    .data-stats {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .data-visual {
        flex-direction: column;
    }
    
    .data-chart {
        width: 100%;
        height: 200px;
    }
    
    .chart-bar {
        width: 40px;
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .ads-on-move-content,
    .brand-card-content {
        flex-direction: column;
    }
    
    .ads-on-move-content {
        flex-direction: column-reverse;
    }
    
    .ads-on-move-text,
    .ads-on-move-image,
    .brand-card-text,
    .brand-card-image {
        width: 100%;
    }
}

/* Lightwave: Our Signature Motion Section */
.lightwave-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #f0f4f8;
    color: var(--black);
}

.lightwave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
    opacity: 0.1;
}

.wave1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%239888FF' d='M0,96L60,85.3C120,75,240,53,360,69.3C480,85,600,139,720,149.3C840,160,960,128,1080,112C1200,96,1320,96,1380,96L1440,96L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    animation: wave 15s linear infinite;
}

.wave2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%236DE5FF' d='M0,192L60,170.7C120,149,240,107,360,112C480,117,600,171,720,165.3C840,160,960,96,1080,74.7C1200,53,1320,75,1380,85.3L1440,96L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    animation: wave 20s linear infinite reverse;
    opacity: 0.15;
}

.wave3 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2344F4B3' d='M0,224L60,234.7C120,245,240,267,360,250.7C480,235,600,181,720,181.3C840,181,960,235,1080,234.7C1200,235,1320,181,1380,154.7L1440,128L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    animation: wave 25s linear infinite;
    opacity: 0.1;
}

@keyframes wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.95);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

.lightwave-content {
    position: relative;
    z-index: 1;
}

.lightwave-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.lightwave-feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lightwave-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.lightwave-feature .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.lightwave-feature h3 {
    margin-bottom: 15px;
    color: var(--black);
}

.lightwave-feature p {
    color: #555;
    line-height: 1.6;
}

.lightwave-applications {
    margin-top: 80px;
    text-align: center;
}

.lightwave-applications h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.applications-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.application {
    text-align: center;
    width: 120px;
}

.app-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.application:hover .app-icon {
    transform: scale(1.1);
}

.application p {
    font-weight: 500;
    color: var(--black);
}

/* Data That Drives Creative Section */
.data-creative {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.data-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.data-chart {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.data-chart:hover {
    transform: translateY(-10px);
}

.data-chart img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.data-metrics {
    padding: 20px;
}

.data-metrics h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--black);
}

.data-metrics p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.metric-item {
    text-align: center;
    background-color: white;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--purple);
    margin-bottom: 10px;
}

.metric-label {
    display: block;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-slider {
    display: flex;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%;
    height: 450px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--black);
    color: var(--white);
    padding: 10px;
    font-size: 0.9rem;
}

/* Slider Navigation */
.slider-navigation {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.slider-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.slider-nav:hover {
    background-color: var(--purple);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--purple);
    transform: scale(1.2);
}

/* Corporate Identity in Motion Section */
.corporate-identity {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
}

.corporate-identity::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(152, 136, 255, 0.1); /* Purple with opacity */
    z-index: 1;
}

.corporate-identity::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(109, 229, 255, 0.1); /* Blue with opacity */
    z-index: 1;
}

.corporate-identity .container {
    position: relative;
    z-index: 2;
}

.identity-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.showcase-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay-content {
    color: white;
    text-align: center;
    padding: 30px;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    width: 100%;
}

.overlay-content h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.overlay-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    max-width: 80%;
    margin: 0 auto;
}

.showcase-item:hover .hover-overlay {
    opacity: 1;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.08);
}

.showcase-item:hover .overlay-content {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .identity-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .showcase-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .identity-showcase {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--black);
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial {
    padding: 30px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
}

.highlight {
    background-color: var(--purple);
    padding: 2px 5px;
    border-radius: 4px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--purple);
    opacity: 0.1;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--blue);
    opacity: 0.1;
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: var(--body-font);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px var(--purple);
    opacity: 0.7;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-logo {
    margin-bottom: 30px;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-logo:hover {
    transform: scale(1.05);
}

.contact-logo h3 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 0;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.contact-details p i {
    width: 30px;
    height: 30px;
    background-color: var(--purple);
    opacity: 0.1;
    color: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--purple);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 50px 0 30px;
    text-align: center;
}

.newsletter-section {
    max-width: 600px;
    margin: 0 auto 40px;
}

.newsletter-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: Arial Black, Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: bold;
}

.newsletter-section p {
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 0.9rem;
}

.newsletter-form .form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-family: var(--body-font);
}

.newsletter-form button {
    border-radius: 0 8px 8px 0;
    padding-left: 15px;
    padding-right: 15px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--white);
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.171);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .btn {
    font-size: 1.1rem;
    padding: 15px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hide Swiper pagination dots */
.swiper-pagination {
    display: none !important;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 80;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--black);
    transform: translateY(-5px);
}

/* Animation Effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

.section-title h2 {
    animation: fadeIn 0.8s ease forwards;
}

.service-card {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

.stat {
    animation: scaleIn 0.8s ease forwards;
    opacity: 0;
}

.stat:nth-child(1) {
    animation-delay: 0.2s;
}

.stat:nth-child(2) {
    animation-delay: 0.4s;
}

.stat:nth-child(3) {
    animation-delay: 0.6s;
}

.testimonial {
    animation: slideIn 0.8s ease forwards;
    opacity: 0;
}

.testimonial:nth-child(even) {
    animation-delay: 0.3s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        width: 90%;
        max-width: 90%;
    }
    
    .identity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screens-grid {
        grid-template-columns: 1fr;
    }
    
    .screens-features {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .lightwave-features {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .services {
        flex-direction: column;
    }
    
    .service-card {
        flex-basis: 100%;
        margin-bottom: 40px;
        padding: 30px;
    }
    
    .gallery-grid,
    .testimonial-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .contact-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .hero-content {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .screens-grid div{
        background-repeat: no-repeat !important;

    }
        
    .ads-on-move {
        padding: 50px 0 !important;
    }
    
    .screens-stories {
        padding: 50px 0 !important;
    }

    .our-identity {
        padding: 50px 0 !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero {
        height: 70vh !important;
    }
    
    /* Ensure hero heading (Ads On The Move) has consistent font size */
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    /* Make all section titles consistent */
    .section-title h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    body {
        overflow-x: hidden;
    }
    
    .container {
        width: 90%;
        padding: 0 15px;
    }
    
    .identity-grid,
    .screens-features,
    .lightwave-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .identity-content,
    .screen-item,
    .lightwave-feature {
        padding: 25px;
        border-radius: 10px;
    }
    
    .applications-grid {
        gap: 15px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .application {
        width: 100%;
        margin: 0;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-content {
        padding: 0;
        max-width: 100%;
        text-align: center;
    }
    
    .btn {
        display: inline-block;
        padding: 14px 28px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stat {
        margin-bottom: 35px;
        width: 100%;
        max-width: 300px;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 5%;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-right: 5px;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .section-title p {
        font-size: 1rem;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    section {
        padding: 60px 0;
    }
    
    .feature {
        padding: 25px;
        border-radius: 10px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
        font-size: 1.8rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .btn-contact {
        width: 100%;
        margin-top: 10px;
    }
    
    .contact-logo {
        margin: 0 auto 25px;
    }
    
    .contact-details {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

.social-icon {
    text-decoration: none;
}

/* Additional Mobile Responsiveness */
@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .container {
        width: 92%;
        padding: 0;
    }
    
    .identity-content, 
    .screen-item, 
    .lightwave-feature, 
    .feature {
        padding: 20px;
        border-radius: 8px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 8px;
    }
    
    .feature h3 {
        font-size: 1.3rem;
        margin: 15px 0 10px;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .application {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 14px;
        margin-bottom: 12px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    .contact-logo {
        width: 90px;
        height: 90px;
        margin: 0 auto 20px;
    }
    
    .social-icons {
        justify-content: center;
        gap: 20px;
    }
    
    .social-icons a {
        font-size: 1.5rem;
    }
    
    .mobile-nav-container ul li {
        margin-bottom: 15px;
    }
    
    .mobile-nav-container ul li a {
        font-size: 1.5rem;
        padding: 10px;
    }
    
    section {
        padding: 50px 0;
    }
    
    /* Fix common iOS issues */
    input, 
    textarea, 
    select, 
    button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 8px;
    }
    
    /* Prevent content jumping when modal opens */
    body.menu-open {
        position: fixed; 
        width: 100%;
        height: 100%;
    }
}

@media screen and (min-width: 0px) and (max-width: 768px) {
    .service-card {
        width: 94% !important;
    }
}