/* --- CSS Reset and Basic Setup with Light Theme --- */
:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --primary-color: #B71C1C; /* Keeping the red brand color */
    --primary-hover: #D32F2F;
    --secondary-color: #f5f5f5;
    --border-color: #e0e0e0;
    --card-bg: #f9f9f9;
    --font-family-sans: 'Montserrat', sans-serif;
    --font-family-serif: 'Playfair Display', serif;
    --gradient-light: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,1));
    --gradient-light-reverse: linear-gradient(to top, rgba(255,255,255,0.9), rgba(255,255,255,1));
    --placeholder-image: #e0e0e0;
    --placeholder-video: #bbdefb; /* Light blue for video placeholders */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-family-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Placeholder Styles --- */
.placeholder-image {
    background-color: var(--placeholder-image);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    min-height: 200px;
    width: 100%;
}

.placeholder-video {
    background-color: var(--placeholder-video);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1565C0;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    min-height: 200px;
    width: 100%;
}

.hero-placeholder-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--placeholder-video);
    color: #1565C0;
    font-weight: 600;
    font-size: 2rem;
    z-index: -1;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* Updated rule for your GIF loader (2/3 of 480px = 320px) */
.preloader-gif {
    width: 320px;  /* 2/3 of 480px */
    height: 320px; /* 2/3 of 480px */
    object-fit: contain; /* Ensures the entire GIF is visible */
    display: block; /* Important for proper box model behavior */
}


/* You can remove this .preloader-logo rule if you're not using the text loader anymore */
.preloader-logo {
    font-family: var(--font-family-serif);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Page Wrapper --- */
#page-wrapper {
    opacity: 0;
    transition: opacity 0.8s ease;
}
#page-wrapper.loaded {
    opacity: 1;
}

/* --- Navigation Bar --- */
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent; /* Make navbar transparent initially */
}
.main-nav .nav-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.main-nav .logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-family-serif);
}
.main-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.main-nav .nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.main-nav .nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.main-nav .nav-links li a:hover::after {
    width: 100%;
}
.main-nav .nav-links li a:hover {
    color: var(--primary-color);
}
.main-nav .nav-links li a.nav-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.main-nav .nav-links li a.nav-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}
.main-nav .nav-links li a.nav-cta::after {
    display: none;
}
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.mobile-nav-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

/* --- Hero Section with Full Video Background --- */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0; /* Remove space for navbar to allow full video visibility */
}
.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* Changed from -1 to ensure video is visible */
}
.hero-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0 2rem;
}
.hero-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-title {
    font-family: var(--font-family-serif);
    font-size: clamp(3rem, 8vw, 5rem);
    color: white;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.scroll-down {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    font-weight: 500;
}
.scroll-down i {
    margin-right: 0.5rem;
    animation: bounce 2s infinite;
}
.scroll-down:hover {
    transform: translateY(5px);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555;
    max-width: 500px;
}
.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(183, 28, 28, 0.2);
}
.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}
.hero-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.credential {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    color: #555;
}
.credential i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}
.hero-video-right {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}
.hero-right-video {
    width: 100%;
    max-width: 550px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.hero-image {
    width: 100%;
    max-width: 550px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}
.hero-image:hover {
    transform: scale(1.02);
}
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.scroll-down span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-color);
    border-radius: 50px;
    position: relative;
}
.scroll-down span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--text-color);
    border-radius: 100%;
    transform: translateX(-50%);
    animation: scroll-down-anim 2s infinite;
}
@keyframes scroll-down-anim {
    0% { transform: translate(-50%, 0); opacity: 0; }
    40% { opacity: 1; }
    80% { transform: translate(-50%, 20px); opacity: 0; }
    100% { opacity: 0; }
}

/* --- Layout & Typography --- */
.container {
    width: 100%; 
    max-width: 1400px;
    margin: 0 auto; 
    padding: 0 2rem;
    position: relative; 
    z-index: 2;
}
.section {
    padding: 7rem 0;
    border-bottom: 1px solid var(--border-color);
}
.section-title {
    font-family: var(--font-family-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}
.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
    color: #666;
}
.section-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.subsection-title {
    font-family: var(--font-family-serif);
    font-size: 2rem;
    text-align: center;
    margin: 4rem 0 2rem;
    color: var(--text-color);
}

/* --- About Section --- */
.about-content-wrap {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.about-text {
    flex: 1;
}
.about-text p {
    margin-bottom: 1.5rem;
}
.about-video {
    flex: 1;
}
.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.video-placeholder {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
}
.video-wrapper:hover .video-placeholder {
    transform: scale(1.02);
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary-hover);
}
.play-button i {
    color: white;
    font-size: 1.8rem;
    margin-left: 5px; /* Offset for play icon */
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.service-card h4 {
    font-family: var(--font-family-serif);
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}
.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* --- Audio Section --- */
.audio-section {
    background-color: var(--secondary-color);
}
.audio-services-wrap {
    display: flex;
    gap: 4rem;
    align-items: center;
}
.audio-content {
    flex: 1;
}
.audio-services {
    margin-bottom: 3rem;
}
.audio-service-item {
    display: flex;
    margin-bottom: 2rem;
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.audio-service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.audio-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}
.audio-info h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}
.audio-showcase {
    flex: 1;
}
.audio-showcase-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.audio-image {
    width: 100%;
    transition: transform 0.5s ease;
}
.audio-showcase-image:hover .audio-image {
    transform: scale(1.05);
}
.audio-samples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.audio-sample {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.audio-sample span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}
.audio-sample audio {
    width: 100%;
}
.audio-cta {
    text-align: center;
    margin-top: 2rem;
}

/* --- Government Section --- */
.government-section {
    background-color: var(--secondary-color);
}
.gov-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.gov-content-left {
    width: 50%;
}
.gov-subtitle {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-family-serif);
}
.gov-content-right {
    width: 50%;
}
.feature-list {
    list-style: none;
    margin: 2rem 0;
}
.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.feature-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}
.gov-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}
.gov-service-pill {
    background: rgba(183, 28, 28, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(183, 28, 28, 0.3);
    transition: all 0.3s ease;
}
.gov-service-pill:hover {
    background: rgba(183, 28, 28, 0.2);
    transform: translateY(-3px);
}

/* --- Portfolio Section --- */
.portfolio-filters { 
    text-align: center; 
    margin-bottom: 3rem; 
}
.portfolio-filters button {
    background: none; 
    border: 1px solid var(--border-color); 
    color: var(--text-color);
    padding: 0.7rem 1.8rem; 
    margin: 0.5rem; 
    border-radius: 30px;
    cursor: pointer; 
    transition: all 0.3s ease;
    font-weight: 500;
}
.portfolio-filters button.active, 
.portfolio-filters button:hover {
    background-color: var(--primary-color); 
    border-color: var(--primary-color); 
    color: white;
}
.portfolio-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); 
    gap: 2rem;
    margin-bottom: 3rem;
}
.portfolio-item {
    position: relative; 
    overflow: hidden; 
    border-radius: 10px; 
    cursor: pointer;
    transition: all 0.5s ease; 
    aspect-ratio: 16 / 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: var(--placeholder-image);
}
.portfolio-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    transition: transform 0.5s ease; 
}
.portfolio-item:hover img { 
    transform: scale(1.05); 
}
.portfolio-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: var(--gradient-light-reverse);
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end;
    padding: 2rem; 
    opacity: 0; 
    transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay { 
    opacity: 1; 
}
.portfolio-overlay h4 { 
    font-size: 1.5rem; 
    color: var(--text-color); 
    transform: translateY(20px); 
    transition: transform 0.4s ease; 
    margin-bottom: 0.5rem;
}
.portfolio-overlay p { 
    font-size: 1rem; 
    color: #666; 
    transform: translateY(20px); 
    transition: transform 0.4s ease 0.1s; 
    margin-bottom: 1.5rem;
}
.portfolio-item:hover .portfolio-overlay h4, 
.portfolio-item:hover .portfolio-overlay p { 
    transform: translateY(0); 
}
.view-project {
    display: inline-block;
    color: white;
    background-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
}
.portfolio-item:hover .view-project {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s, background-color 0.3s ease;
}
.view-project:hover {
    background-color: var(--primary-hover);
}
.portfolio-cta {
    text-align: center;
}

/* --- AI Chatbots Section --- */
.ai-chatbots-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}
.ai-chatbots-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="black" stroke-width="1"/></svg>');
    background-size: 20px 20px;
    z-index: 0;
}
.ai-chatbots-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.chatbot-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 4rem;
}
.chatbot-feature {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}
.chatbot-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}
.chatbot-feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.chatbot-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}
.chatbot-demo {
    width: 100%;
    max-width: 900px;
    display: flex;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}
.chatbot-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color);
}
.chatbot-preview-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}
.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}
.chatbot-avatar i {
    color: white;
    font-size: 1.2rem;
}
.chatbot-preview-body {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}
.chat-message {
    max-width: 80%;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    position: relative;
}
.chat-message.bot {
    background-color: #f0f0f0;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}
.chat-message.user {
    background-color: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}
.chatbot-input {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
}
.chatbot-input input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    outline: none;
    font-family: var(--font-family-sans);
}
.chatbot-input button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.chatbot-input button:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1);
}
.chatbot-benefits {
    flex: 1;
    padding: 2rem;
}
.chatbot-benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.chatbot-benefit i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}
.chatbot-benefit-text h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}
.chatbot-benefit-text p {
    font-size: 0.9rem;
    color: #666;
}

/* --- Influencer Management Section --- */
.influencer-section {
    background-color: var(--secondary-color);
}
.influencer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.influencer-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.influencer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.influencer-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.influencer-card .placeholder-image {
    height: 100%;
    min-height: unset;
    border-radius: 0;
}
.influencer-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.influencer-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}
.influencer-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.influencer-category {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    background-color: rgba(183, 28, 28, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
}
.influencer-stats {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}
.influencer-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.influencer-stat-value {
    font-weight: 700;
    color: var(--text-color);
}
.influencer-stat-label {
    font-size: 0.8rem;
    color: #666;
}
.influencer-platform-icons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}
.influencer-platform {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.influencer-platform:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.influencer-platform:hover i {
    color: white;
}
.influencer-platform i {
    color: #333;
    font-size: 1.2rem;
}
.influencer-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.influencer-service {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.influencer-service:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.influencer-service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    align-self: center;
}
.influencer-service h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-align: center;
}
.influencer-service ul {
    list-style: none;
    margin-top: 1rem;
}
.influencer-service ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}
.influencer-service ul li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}
.influencer-cta {
    text-align: center;
    margin-top: 2rem;
}

/* --- Case Study Slider --- */
.case-study-section {
    background-color: var(--bg-color);
}
.case-study-card {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.case-study-image {
    width: 40%;
}
.case-study-image .placeholder-image {
    height: 100%;
    min-height: unset;
    border-radius: 0;
}
.case-study-content {
    width: 60%;
    padding: 3rem;
}
.agency-badge {
    display: inline-block;
    background-color: rgba(183, 28, 28, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.case-study-content h4 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.results-list {
    display: flex;
    margin: 2rem 0;
    gap: 2rem;
}
.result-item {
    text-align: center;
}
.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}
.result-label {
    font-size: 0.9rem;
    color: #666;
}
.case-study-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.case-study-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}
.case-study-link:hover {
    color: var(--primary-hover);
}
.case-study-link:hover i {
    transform: translateX(5px);
}
.swiper-pagination-bullet {
    background-color: #666;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}
.swiper-button-next, 
.swiper-button-prev {
    color: var(--primary-color);
}

/* --- Industries Section --- */
.industries-section {
    background-color: var(--secondary-color);
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.industry-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.industry-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.industry-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.industry-card h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}
.industry-card p {
    font-size: 0.9rem;
    color: #666;
}

/* --- Why Choose Section --- */
.why-choose-section {
    background-color: var(--bg-color);
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.advantage-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.advantage-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.advantage-card h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}
.advantage-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* --- Process Timeline --- */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
}
.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}
.process-step:last-child {
    margin-bottom: 0;
}
.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
}
.step-content h4 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}
.team-member {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.member-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.member-image .placeholder-image {
    height: 100%;
    min-height: unset;
    border-radius: 0;
}
.member-info {
    padding: 1.5rem;
}
.member-info h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}
.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.member-bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--secondary-color);
}
.testimonial-card {
    background-color: var(--bg-color);
    padding: 3rem;
    border-radius: 10px;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}
.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: -1rem;
}
.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    line-height: 1.8;
}
.testimonial-author {
    display: flex;
    align-items: center;
}
.testimonial-author img, 
.testimonial-author .placeholder-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--primary-color);
    min-height: unset;
}
.author-info h5 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}
.author-info p {
    font-size: 0.9rem;
    color: #666;
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--bg-color);
}
.contact-container {
    display: flex;
    gap: 4rem;
}
.contact-info {
    width: 40%;
}
.contact-info h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}
.contact-methods {
    margin: 2.5rem 0;
}
.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-method i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
}
.contact-method h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}
.contract-info {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
}
.contract-info h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}
.contract-info p {
    margin-bottom: 0.5rem;
}
.contact-form-container {
    width: 60%;
}
.contact-form {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}
.form-group {
    margin-bottom: 0.5rem;
}
.form-group.full-width {
    grid-column: span 2;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #555;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-family: var(--font-family-sans);
}
.form-group textarea {
    resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* --- Footer --- */
.footer {
    background-color: #f5f5f5;
    color: #666;
}
.footer-top {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
}
.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-logo {
    font-family: var(--font-family-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.footer-column p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    color: #555;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}
.footer-column h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 0.8rem;
}
.footer-column ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.footer-column ul li a:hover {
    color: var(--primary-color);
}
.footer-column address {
    font-style: normal;
}
.footer-column address p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.footer-column address p i {
    margin-right: 1rem;
    margin-top: 0.3rem;
}
.footer-bottom {
    padding: 2rem 0;
    text-align: center;
}
.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.footer-contracts {
    font-size: 0.9rem;
}
.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--primary-color);
}

/* --- Cookie Banner --- */
.cookie-consent-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--bg-color); padding: 1.5rem; z-index: 2000;
    display: none; align-items: center; justify-content: space-between;
    gap: 1rem; border-top: 1px solid var(--border-color);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}
.cookie-consent-banner p { margin: 0; }
.cookie-consent-banner .btn-group { display: flex; gap: 1rem; }
.cookie-consent-banner button { padding: 0.7rem 1.5rem; cursor: pointer; border-radius: 5px; border: 1px solid transparent; font-weight: 500; }
.cookie-consent-banner #accept-cookies { background: var(--primary-color); color: white; }
.cookie-consent-banner #accept-cookies:hover { background: var(--primary-hover); }
.cookie-consent-banner #reject-cookies { background: transparent; color: var(--text-color); border-color: var(--border-color); }
.cookie-consent-banner #reject-cookies:hover { border-color: var(--text-color); }

/* --- Video Modal --- */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}
.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}
.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* --- Animations & Utilities --- */
.fade-in { animation: fadeIn 0.5s; }
.fade-out { animation: fadeOut 0.5s forwards; }
.slide-in-left { animation: slideInLeft 1s; }
.slide-in-right { animation: slideInRight 1s; }
@keyframes fadeOut { to { opacity: 0; transform: translateY(100%); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
.hidden { display: none; }

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .hero-content-left {
        padding-right: 1rem;
    }
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .chatbot-demo {
        flex-direction: column;
    }
    .chatbot-preview {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 4rem;
    }
    .hero-content-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 3rem;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-credentials {
        justify-content: center;
    }
    .hero-video-right {
        width: 100%;
        justify-content: center;
    }
    
    .about-content-wrap,
    .audio-services-wrap,
    .gov-content-wrapper {
        flex-direction: column;
    }
    
    .about-text,
    .about-video,
    .audio-content,
    .audio-showcase,
    .gov-content-left,
    .gov-content-right {
        width: 100%;
    }
    
    .about-text,
    .audio-content,
    .gov-content-left {
        margin-bottom: 3rem;
    }
    
    .case-study-card {
        flex-direction: column;
    }
    .case-study-image {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    .case-study-content {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
    .contact-info, .contact-form-container {
        width: 100%;
    }
    .contact-info {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    
    .main-nav .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 70%; height: 100vh;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 2rem; transition: right 0.5s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    .main-nav .nav-links.active { right: 0; }
    .mobile-nav-toggle { display: block; }
    .mobile-nav-toggle.active .bar:nth-child(2) { opacity: 0; }
    .mobile-nav-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-nav-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .results-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-consent-banner { flex-direction: column; text-align: center; }
    
    .services-grid,
    .industries-grid,
    .advantages-grid,
    .influencer-grid,
    .influencer-services {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .audio-service-item {
        flex-direction: column;
    }
    .audio-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        justify-content: center;
    }
    .chatbot-features {
        flex-direction: column;
    }
}