/* Global Styles */
:root {
    --primary-blue: #1e3a8a;
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --dark-gray: #64748b;
    --text-dark: #1e293b;
    --accent-blue: #3b82f6;
    --light-blue: #dbeafe;
    --dark-blue: #1e40af;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d2d2d2, #cc9d9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Top Banner */
.top-banner {
    background: var(--black);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
}

/* Navigation */
.navbar {
    background: var(--primary-blue) !important;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.15);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 28px;
    color: var(--white) !important;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    margin: 0 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px !important;
    border-radius: 8px;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

/* Dropdown Styles */
.dropdown-menu {
    background: var(--black);
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-top: 10px;
    padding: 8px 0;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
}

.dropdown-item {
    color: var(--white) !important;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-weight: 500;
    position: relative;
}

.dropdown-item:hover {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.navbar-nav .btn {
    margin-left: 15px;
    padding: 8px 20px;
    border-radius: 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--black) 100%);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 40px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
    z-index: 2;
}

.ai-eye {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--white) 0%, var(--light-blue) 30%, var(--accent-blue) 70%, var(--primary-blue) 100%);
    border-radius: 50%;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.4);
    border: 4px solid rgba(255,255,255,0.2);
}

.ai-eye::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--black);
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: inset 0 4px 8px rgba(0,0,0,0.3);
}

.ai-eye::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

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

/* Empower Section */
.empower-section {
    background: #000000d4;
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.empower-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.empower-section .container {
    position: relative;
    z-index: 2;
}

.empower-section .section-title {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.empower-section .section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.service-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3F51B5 100%);
    padding: 35px;
    border-radius: 16px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.hex-icon {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.service-card:hover .hex-icon {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Carousel Controls */
.carousel-controls {
    margin-top: 40px;
}

.progress-bar-container {
    max-width: 200px;
    margin: 0 auto 20px;
}

.progress {
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

.progress-bar {
    background: var(--white);
    border-radius: 2px;
}

.carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-circle:hover {
    background: var(--white);
    color: var(--purple);
}

.btn-circle:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-circle:disabled:hover {
    background: var(--dark-gray);
    color: var(--white);
    transform: none;
}

/* Industries Section */
.industries-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.industry-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

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

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.5rem;
}

.industry-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.industry-card p {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.industry-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.industry-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: bold;
}

/* Technology Section */
.technology-section {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
}

.technology-section .section-title {
    color: var(--white);
}

.technology-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.tech-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.tech-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
}

.tech-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tech-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

/* Solutions Section */
.solutions-section {
    background: var(--white);
    padding: 80px 0;
}

.solution-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--secondary-blue);
}

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

.solution-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 1.2rem;
}

.solution-card h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.solution-card p {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Customized Section */
.customized-section {
    background: var(--white);
    padding: 80px 0;
}

.customized-section .section-title {
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: bold;
    font-size: 1.2rem;
}

.digital-landscape {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--purple), var(--light-purple));
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 50%;
    animation-delay: 2s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    top: 80%;
    left: 30%;
    animation-delay: 3s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 80%;
    animation-delay: 4s;
}

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

/* Outcomes Section */
.outcomes-section {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.outcomes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" x="0" y="0" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q25 5, 50 10 T100 10" stroke="rgba(255,255,255,0.1)" fill="none" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
}

.outcomes-section .container {
    position: relative;
    z-index: 1;
}

/* Mission Section */
.mission-section {
    background: var(--white);
    padding: 80px 0;
}

.mission-section .section-title {
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-blue), var(--purple));
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-left: 5px;
}

/* Stats Section */
.stats-section {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lines" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M0 0 L50 50 M50 0 L0 50" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23lines)"/></svg>');
    opacity: 0.5;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: var(--white);
}

/* Results Section */
.results-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
    opacity: 0.4;
}

.results-section .container {
    position: relative;
    z-index: 2;
}

.results-section .section-title {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.view-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.view-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.case-study-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.case-study-card .card-image {
    height: 200px;
    overflow: hidden;
}

.case-study-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-card h3 {
    padding: 20px;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 40px;
}

.case-study-card .hex-icon {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Case Study Slider Styles */
.case-study-slider-container {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.case-study-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.case-study-slide {
    min-width: calc(25% - 15px);
    flex-shrink: 0;
}

.case-study-slide .case-study-card {
    height: 100%;
    position: relative;
}

/* Responsive adjustments for slider */
@media (max-width: 1200px) {
    .case-study-slide {
        min-width: calc(33.333% - 15px);
    }
}

@media (max-width: 768px) {
    .case-study-slide {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .case-study-slide {
        min-width: calc(100% - 15px);
    }
}

/* News Section */
.news-section {
    background: var(--white);
    padding: 80px 0;
}

.news-section .section-title {
    color: var(--primary-blue);
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.news-card .card-image {
    height: 200px;
    overflow: hidden;
}

.news-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card .card-content {
    padding: 20px;
}

.news-date {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.read-more {
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-blue);
}

/* Opportunity Section */
.opportunity-section {
    background: var(--white);
}

.opportunity-content {
    background: purple;
    color: var(--white);
    padding: 80px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.opportunity-content .section-title {
    color: var(--white);
    margin-bottom: 30px;
}

.opportunity-image {
    height: 400px;
    overflow: hidden;
}

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

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links span {
    margin-right: 10px;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--light-purple);
}

/* Cookie Consent */
.cookie-consent {
    background: var(--dark-gray);
    color: var(--white);
    padding: 15px 0;
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--black) 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--white);
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .empower-section,
    .customized-section,
    .outcomes-section,
    .mission-section,
    .stats-section,
    .results-section,
    .news-section,
    .industries-section,
    .solutions-section,
    .technology-section {
        padding: 60px 0;
    }
    
    .opportunity-content {
        padding: 40px 20px;
    }
    
    .ai-eye {
        width: 200px;
        height: 200px;
    }
    
    .ai-eye::before {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
