:root {
    --primary-color: #020B2D;
    --secondary-color: #0A1551;
    --accent-color: #4C7BFF;
    --accent-glow: #4C7BFF40;
    --text-color: #ffffff;
    --text-secondary: #B4B9C8;
    --gradient-1: #0B1340;
    --gradient-2: #1A237E;
    --gradient-3: #0D47A1;
    --bg-color: #1e3c72;
    --bg-secondary: #2a5298;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
}

/* Gradient Background Animation */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-animation {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        var(--gradient-1),
        var(--gradient-2),
        var(--gradient-3),
        var(--gradient-2)
    );
    animation: gradientBG 15s ease infinite;
    opacity: 0.5;
}

@keyframes gradientBG {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Particles Background */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Navbar Styles */
.navbar {
    background: rgba(2, 11, 45, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.logo-text small {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-text {
    max-width: 600px;
}

.subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.glowing-text {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #B4B9C8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 3s ease-in-out infinite;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--accent-color);
    color: var(--text-color);
    border: none;
    box-shadow: 0 0 20px var(--accent-glow);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow);
}

.secondary-btn {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.tech-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    animation: float 6s infinite ease-in-out;
}

.card-1 { top: 10%; left: -10%; animation-delay: 0s; }
.card-2 { top: 40%; right: -10%; animation-delay: 2s; }
.card-3 { bottom: 20%; left: 20%; animation-delay: 4s; }

.card-icon {
    font-size: 1.5rem;
}

.team-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.team-image {
    width: 100%;
    display: block;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.team-image-wrapper:hover .team-image {
    transform: scale(1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(76, 123, 255, 0.2),
        rgba(10, 21, 81, 0.2)
    );
}

/* Stats Bar */
.stats-bar {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #B4B9C8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Partner Section */
.partner-section {
    margin-top: 4rem;
    text-align: center;
}

.partner-label {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partner-logos {
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(76, 123, 255, 0));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(76, 123, 255, 0.3));
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #020B2D;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px;
        color: #fff;
        font-size: 18px;
        transition: all 0.3s ease;
        border-radius: 8px;
    }

    .nav-links a:hover {
        background: rgba(76, 123, 255, 0.1);
    }

    .nav-links a.active {
        background: rgba(76, 123, 255, 0.2);
        color: #4C7BFF;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        background: transparent;
        border: 2px solid #4C7BFF;
        border-radius: 8px;
        cursor: pointer;
        position: relative;
        z-index: 1001;
        margin-left: auto;
        padding: 10px;
    }

    .mobile-menu span {
        display: block;
        width: 25px;
        height: 2px;
        background: #4C7BFF;
        margin: 4px 0;
        transition: all 0.3s ease;
        border-radius: 4px;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .glowing-text {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Publisher Solutions Section */
.publisher-solutions {
    padding: 6rem 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.publisher-solutions .section-title {
    text-align: center;
    color: #0B2447;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.solutions-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.card-inner {
    position: relative;
    padding: 2rem;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

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

.card-content h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .solutions-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .solution-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Card Specific Styles */
.solution-card:nth-child(1) .card-inner {
    background: linear-gradient(135deg, #0a2647 0%, #144272 100%);
}

.solution-card:nth-child(2) .card-inner {
    background: linear-gradient(135deg, #205295 0%, #2C74B3 100%);
}

.solution-card:nth-child(3) .card-inner {
    background: linear-gradient(135deg, #2C74B3 0%, #4d94da 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .solutions-slider {
        gap: 20px;
    }
    
    .solution-card {
        width: calc(50% - 15px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .solution-card {
        width: 85%;
        min-width: 260px;
    }
    
    .solutions-slider {
        gap: 15px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 16px;
    }
}

/* QurekaLite Section */
.qureka-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.qureka-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.qureka-logo {
    width: 40px;
    height: 40px;
}

.qureka-header span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4527a0;
}

.qureka-content h2 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.qureka-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.know-more-btn {
    padding: 12px 30px;
    background-color: white;
    border: 2px solid #4527a0;
    color: #4527a0;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background-color: #4527a0;
    color: white;
}

.qureka-image {
    position: relative;
}

.phone-mockup {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.stats-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
}

.stat {
    font-size: 1rem;
    font-weight: 600;
    margin: 15px 0;
}

/* Connected TV Section */
.connected-tv-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #1a237e 0%, #4527a0 100%);
    border-radius: 30px;
    padding: 50px;
    color: white;
}

.tv-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

.tv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tv-logo {
    width: 40px;
    height: 40px;
}

.tv-content h3 {
    font-size: 1.8rem;
    margin: 0;
}

.tv-content p {
    margin: 20px 0;
    line-height: 1.6;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    width: 20px;
    height: 20px;
    fill: #4CAF50;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #4527a0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .qureka-section,
    .connected-tv-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .connected-tv-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .qureka-content h2 {
        font-size: 1.5rem;
    }

    .stats-overlay {
        position: relative;
        margin-top: 2rem;
    }
}

/* Network Effect Section */
.network-effect {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.network-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(76, 123, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.network-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.network-stats h3 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.network-stats h3 span {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-left: 0.5rem;
}

.network-stats p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.network-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.network-description .btn-primary {
    margin-top: 2rem;
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.network-description .btn-primary:hover {
    background: #5d89ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 123, 255, 0.3);
}

@media (max-width: 992px) {
    .network-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .network-stats {
        margin-bottom: 1rem;
    }
}

/* Let's Talk Button */
.lets-talk-btn {
    background: #2196f3;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lets-talk-btn:hover {
    background: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background: #fff;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 15px;
    padding: 40px;
    position: relative;
}

.modal-content h2 {
    color: #1e3c72;
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.mandatory-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.required {
    color: #ff0000;
}

.form-row {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #999;
}

.phone-input {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
}

.code-select {
    width: 100%;
    color: #1e3c72;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e3c72' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px !important;
}

.form-row textarea {
    grid-column: span 2;
    height: 120px;
    resize: vertical;
}

.form-row:last-child {
    display: flex;
    justify-content: center;
}

.submit-btn {
    background: #666;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #555;
}

@media (max-width: 768px) {
    .modal {
        padding: 1rem;
    }

    .modal-content {
        padding: 25px;
        margin: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-row textarea {
        grid-column: span 1;
    }

    .phone-input {
        grid-template-columns: 80px 1fr;
        gap: 8px;
    }
}

/* Close button styles */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.3s ease;
    z-index: 1000;
}

.close-btn:hover {
    color: #333;
}

@media (max-width: 768px) {
    .close-btn {
        top: 15px;
        right: 15px;
        font-size: 24px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.address-block {
    margin-top: 0.5rem;
}

.address-block h4 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Contact Form Styles */
.contact-form {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-form p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

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

.btn-submit {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Analytics Card Styles */
.analytics-card {
    background: linear-gradient(135deg, #1a237e 0%, #4527a0 100%);
    color: white;
}

.analytics-background {
    position: relative;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-animation {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Bar Chart Animation */
.bar-chart {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
}

.bar {
    width: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    animation: barGrow 1.5s infinite ease-out;
}

.bar1 { height: 60%; animation-delay: 0s; }
.bar2 { height: 80%; animation-delay: 0.2s; }
.bar3 { height: 65%; animation-delay: 0.4s; }
.bar4 { height: 90%; animation-delay: 0.6s; }
.bar5 { height: 75%; animation-delay: 0.8s; }

@keyframes barGrow {
    0% { transform: scaleY(0.3); }
    50% { transform: scaleY(1.2); }
    100% { transform: scaleY(1); }
}

/* Line Graph Animation */
.line-graph {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 150px;
    height: 80px;
}

.graph-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 2;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 3s ease-out infinite;
}

@keyframes drawLine {
    0% { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: 0; }
}

/* Data Points */
.data-points {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 20px;
}

.data-point {
    text-align: center;
}

.data-point .value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.data-point .label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Analytics Content */
.analytics-content {
    padding: 20px;
}

.analytics-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.analytics-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.analytics-features {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.analytics-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Card Overlay Animation */
.analytics-card .card-overlay {
    background: linear-gradient(to top, rgba(26, 35, 126, 0.95), rgba(69, 39, 160, 0.8));
    transform: translateY(70%);
    transition: transform 0.4s ease;
}

.analytics-card:hover .card-overlay {
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bar-chart {
        gap: 5px;
    }
    
    .bar {
        width: 6px;
    }
    
    .line-graph {
        width: 100px;
    }
    
    .data-point .value {
        font-size: 1.2rem;
    }
}

/* Modern Analytics Styles */
.modern-analytics {
    position: relative;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 20px;
    padding: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a237e 0%, #4527a0 100%);
}

/* Circular Progress */
.circular-progress {
    position: relative;
    width: 120px;
    margin: 0 auto;
}

.circular-progress svg {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke: #64ffda;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 42;
    animation: progress 2s ease-out forwards;
}

.progress-text {
    fill: white;
    font-size: 20px;
    font-weight: bold;
    text-anchor: middle;
    dominant-baseline: middle;
}

@keyframes progress {
    from { stroke-dashoffset: 283; }
    to { stroke-dashoffset: 42; }
}

/* Wave Animation */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(100, 255, 218, 0.2));
    animation: wave 3s linear infinite;
}

.wave:nth-child(2) {
    animation-delay: -1.5s;
    opacity: 0.5;
}

.wave:nth-child(3) {
    animation-delay: -2.25s;
    opacity: 0.3;
}

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

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.metric {
    text-align: center;
    color: white;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #64ffda;
}

.metric-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.metric-trend {
    font-size: 0.9rem;
    font-weight: 500;
}

.metric-trend.up {
    color: #64ffda;
}

.metric-trend.stable {
    color: #ffd700;
}

/* Pulse Dots */
.pulse-container {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #64ffda;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.pulse-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.pulse-dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Feature Icons */
.analytics-features .icon {
    width: 24px;
    height: 24px;
    fill: #64ffda;
}

.analytics-features li {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.analytics-features li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .metric-value {
        font-size: 1.2rem;
    }
}

/* Publisher Solutions Section */
.publisher-solutions {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
}

.solutions-slider {
    position: relative;
    margin-top: 3rem;
    padding: 2rem 0;
}

.solution-card {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(76, 123, 255, 0.1);
    overflow: hidden;
    height: 500px;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Analytics Card */
.analytics-card .analytics-visual {
    height: 250px;
    margin-bottom: 2rem;
    position: relative;
}

.chart-container {
    height: 100%;
    position: relative;
}

.data-points {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.data-points.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.data-point {
    text-align: center;
}

.data-point .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4C7BFF;
    display: block;
}

.data-point .label {
    font-size: 0.875rem;
    color: #64748B;
}

/* Engagement Card */
.engagement-card .engagement-visual {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.user-group {
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.user-group.animate-in {
    opacity: 1;
    transform: scale(1);
}

.user-icon {
    width: 60px;
    height: 60px;
    background: #4C7BFF;
    border-radius: 50%;
    position: relative;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid #4C7BFF;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Monetization Card */
.monetization-card .monetization-visual {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.revenue-graph {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 200px;
}

.graph-bar {
    width: 40px;
    background: linear-gradient(180deg, #4C7BFF 0%, #2563EB 100%);
    border-radius: 8px 8px 0 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.graph-bar.animate-in {
    transform: scaleY(1);
}

.graph-bar:nth-child(1) {
    height: 60%;
}

.graph-bar:nth-child(2) {
    height: 80%;
}

.graph-bar:nth-child(3) {
    height: 100%;
}

/* Card Info */
.card-info {
    flex-grow: 1;
}

.card-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1rem;
}

.card-info p {
    color: #64748B;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: #334155;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: "•";
    color: #4C7BFF;
    position: absolute;
    left: 0;
    top: 0;
}

/* Slider Navigation */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    margin: 0 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet .bullet-text {
    font-size: 0.875rem;
    color: #64748B;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet .bullet-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #4C7BFF;
    transition: width 0.3s ease;
}

.swiper-pagination-bullet-active .bullet-text {
    color: #4C7BFF;
    font-weight: 600;
}

.swiper-pagination-bullet-active .bullet-text::after {
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: #4C7BFF;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .solution-card {
        height: auto;
        min-height: 600px;
    }

    .analytics-visual,
    .engagement-visual,
    .monetization-visual {
        height: 200px !important;
    }

    .data-points {
        flex-direction: column;
        gap: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Analytics Slideshow */
.analytics-visual {
    position: relative;
    height: 400px;
    background: #F8FAFF;
    border-radius: 16px;
    overflow: hidden;
}

.analytics-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.analytics-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s ease-in-out;
    pointer-events: none;
}

.analytics-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%);
    color: white;
    transform: translateY(100%);
    transition: transform 0.6s ease-out;
}

.analytics-slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.slide-content p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.slide-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .analytics-visual {
        height: 300px;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h3 {
        font-size: 1.25rem;
    }

    .slide-content p {
        font-size: 0.875rem;
    }
}

/* Analytics Showcase */
.analytics-visual {
    position: relative;
    height: 400px;
    background: linear-gradient(to bottom right, #F8FAFF, #FFFFFF);
    border-radius: 16px;
    overflow: hidden;
    padding: 24px;
}

.analytics-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.analytics-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.analytics-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Dashboard View */
.analytics-dashboard {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-header h4 {
    font-size: 1.25rem;
    color: #1E293B;
    margin: 0;
}

.live-indicator {
    background: #22C55E;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    animation: pulse 2s infinite;
}

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

.metric-box {
    background: #F8FAFF;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s forwards;
}

.metric-box:nth-child(2) {
    animation-delay: 0.2s;
}

.metric-box:nth-child(3) {
    animation-delay: 0.4s;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4C7BFF;
    display: block;
}

.metric-label {
    font-size: 0.75rem;
    color: #64748B;
    margin-top: 4px;
    display: block;
}

.trend {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-top: 8px;
}

.trend.up {
    background: #DCFCE7;
    color: #166534;
}

.trend.stable {
    background: #FEF9C3;
    color: #854D0E;
}

/* Revenue Chart */
.revenue-chart {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-header h4 {
    font-size: 1.25rem;
    color: #1E293B;
    margin: 0;
}

.time-period {
    color: #64748B;
    font-size: 0.875rem;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
}

.bar-group {
    text-align: center;
    flex: 1;
}

.bar-value {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 8px;
}

.bar {
    background: #4C7BFF;
    width: 24px;
    margin: 0 auto;
    border-radius: 4px 4px 0 0;
    transform: scaleY(0);
    transform-origin: bottom;
    animation: growBar 1s forwards;
}

.bar-label {
    margin-top: 8px;
    font-size: 0.875rem;
    color: #64748B;
}

/* User Flow */
.user-flow {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.flow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.flow-header h4 {
    font-size: 1.25rem;
    color: #1E293B;
    margin: 0;
}

.flow-status {
    color: #4C7BFF;
    font-size: 0.875rem;
}

.flow-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.flow-node {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s forwards;
}

.flow-node:nth-child(3) {
    animation-delay: 0.2s;
}

.flow-node:nth-child(5) {
    animation-delay: 0.4s;
}

.node-circle {
    width: 80px;
    height: 80px;
    background: #F8FAFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    position: relative;
}

.node-circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #4C7BFF;
    animation: circlePulse 2s infinite;
}

.node-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4C7BFF;
}

.node-label {
    font-size: 0.875rem;
    color: #64748B;
}

.flow-arrow {
    flex: 1;
    height: 2px;
    background: #E2E8F0;
    position: relative;
    margin: 0 16px;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #E2E8F0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Performance Metrics */
.performance-metrics {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.metrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.metrics-header h4 {
    font-size: 1.25rem;
    color: #1E293B;
    margin: 0;
}

.update-time {
    color: #64748B;
    font-size: 0.875rem;
}

.circular-metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
}

.circular-progress svg {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: #F1F5F9;
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke: #4C7BFF;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: progressCircle 1.5s ease-out forwards;
}

.progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4C7BFF;
    display: block;
}

.progress-label {
    font-size: 0.75rem;
    color: #64748B;
}

/* Navigation Dots */
.analytics-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(100, 116, 139, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #4C7BFF;
    transform: scale(1.2);
}

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes growBar {
    to {
        transform: scaleY(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes circlePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes progressCircle {
    to {
        stroke-dashoffset: 50;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .analytics-visual {
        height: 500px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .chart-bars {
        height: 150px;
    }

    .flow-diagram {
        flex-direction: column;
        gap: 20px;
    }

    .flow-arrow {
        width: 2px;
        height: 20px;
        margin: 8px 0;
    }

    .flow-arrow::after {
        right: 50%;
        top: 100%;
        transform: translateX(50%);
        border-top: 6px solid #E2E8F0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: none;
    }

    .circular-metrics {
        flex-direction: column;
        gap: 24px;
    }
}

/* Tech Community Leading Brands Section */
.tech-brands {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
    overflow: hidden;
}

.tech-brands .section-title {
    text-align: center;
    color: #0B2447;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
}

.brands-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.brand-item {
    position: relative;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.brand-item img {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Animation durations */
.animate__animated.animate__fadeInUp,
.animate__animated.animate__fadeInRight {
    --animate-duration: 0.8s;
}

/* Responsive styles */
@media (max-width: 768px) {
    .brands-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .brand-item img {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .brands-container {
        grid-template-columns: 1fr;
    }
    
    .brand-item img {
        max-width: 160px;
    }
}

/* Career Advancement Section */
.career-advancement {
    padding: 6rem 0;
}

.career-advancement .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.career-advancement .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.career-advancement .service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.career-advancement .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.career-advancement .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 123, 255, 0.1);
    border-radius: 16px;
}

.career-advancement .service-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.career-advancement .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.career-advancement .service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.company-sections {
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .career-advancement .services-grid {
        grid-template-columns: 1fr;
    }
    
    .career-advancement .service-card {
        padding: 1.5rem;
    }
}

/* Career Advancement Section Styles */
.career-advancement {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-glow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(76, 123, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-circle {
    background: var(--accent-color);
}

.service-icon i {
    font-size: 28px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--text-color);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.learn-more:hover {
    color: var(--text-color);
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
}

/* Remove unused sections */
.tech-community,
.tech-brands,
.certification,
.partner-badge,
.cert-text {
    display: none;
}

/* Clean up navigation */
.nav-links {
    gap: 2rem;
}

/* Policy Pages Styles */
.policy-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    color: var(--text-color);
}

.policy-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.policy-date {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.policy-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--accent-color);
}

.policy-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.policy-content ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.policy-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--text-color);
}

.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 20px;
    }

    .policy-title {
        font-size: 2rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .cookie-table {
        margin: 1.5rem -1.5rem;
        width: calc(100% + 3rem);
    }

    .cookie-table table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
}

/* Additional Policy Page Styles */
.policy-content .emphasis {
    background: rgba(255, 87, 87, 0.1);
    border-left: 4px solid rgba(255, 87, 87, 0.5);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
}

.policy-content ol {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.policy-content ol li {
    counter-increment: item;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
}

.policy-content ol li:before {
    content: counter(item);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.policy-content address {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    line-height: 1.6;
    font-style: normal;
}

/* Enhance mobile responsiveness */
@media (max-width: 768px) {
    .policy-content ol li {
        padding-left: 2rem;
    }

    .policy-content .emphasis {
        padding: 0.75rem;
        margin: 1rem 0;
    }
}

/* Enhanced Get Started Button */
.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-get-started:active {
    transform: translateY(1px);
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-get-started:hover::before {
    transform: translateX(100%);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-get-started:hover .btn-icon {
    transform: translateX(4px);
}

/* Hero section adjustments */
.hero-actions {
    margin-top: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
}

@media (max-width: 768px) {
    .btn-get-started {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }
}

/* Image Styles */
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.career-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.contact-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Partner Logos */
.partner-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Solution Card Images */
.solution-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }

    .hero-img {
        max-width: 100%;
    }

    .partner-logo {
        height: 40px;
    }
}

/* Footer Styles */
.main-footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 3rem 0;
    }

    .footer-links {
        gap: 1rem;
        padding: 0 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

/* Network Effect Styles */
.network-effect {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.network-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(76, 123, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.network-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.network-stats h3 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.network-stats h3 span {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-left: 0.5rem;
}

.network-stats p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.network-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.network-description .btn-primary {
    margin-top: 2rem;
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.network-description .btn-primary:hover {
    background: #5d89ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 123, 255, 0.3);
}

@media (max-width: 992px) {
    .network-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .network-stats {
        margin-bottom: 1rem;
    }
}
