:root {
    --primary-color: #0099ff;
    --text-dark: #1a1a1a;
    --background: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background);
}

/* Navbar Styles */
.navbar {
    background-color: white;
    padding: 1rem 0;
    position: fixed;
    width: calc(100% - 4rem);
    top: 1rem;
    left: 2rem;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin: 0 auto;
}

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

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00a0e9;
}

.contact-btn {
    background-color: #4a4a4a;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #333;
}

/* Hero Section Styles */
.hero {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #0d1b2a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    color: #00a0e9;
}

.hero-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
}

.demo-btn {
    background-color: #00a0e9;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-btn:hover {
    background-color: #0082bd;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

/* Chat Widgets */
.chat-widgets {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.chat-widget {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chat-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp {
    background-color: #25D366;
}

.messenger {
    background-color: #0084FF;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-description {
        margin: 0 auto 2rem auto;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
    }
}

/* AI Readiness Section */
.ai-readiness {
    padding: 6rem 0;
    background-color: #fff;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: #00a0e9;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    color: #0d1b2a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-description {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.25rem;
    color: #1A334D;
    margin: 0;
    font-weight: 600;
}

/* Update responsive styles */
@media (max-width: 1024px) {
    .feature-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .feature-icon {
        width: 90px;
        height: 90px;
    }

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

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

    .hero {
        padding-top: 120px; /* Adjust for new navbar margin */
    }
}

/* Our Approach Section */
.approach {
    padding: 6rem 0;
    background-color: #fff;
    overflow: hidden;
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.approach-text {
    flex: 1;
}

.approach-title {
    font-size: 2.5rem;
    color: #0d1b2a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 3rem;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 3rem;
    bottom: -2.5rem;
    width: 2px;
    background-color: #e0e0e0;
}

.step:last-child::before {
    display: none;
}

.step-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a0e9;
    font-size: 1.2rem;
    z-index: 1;
}

.step h3 {
    font-size: 1.25rem;
    color: #0d1b2a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.5;
}

.approach-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.approach-image img {
    max-width: 100%;
    height: auto;
    filter: hue-rotate(10deg);
}

/* Add this to your existing media queries */
@media (max-width: 1024px) {
    .approach-content {
        flex-direction: column;
        gap: 3rem;
    }

    .approach-image {
        order: -1;
    }

    .approach-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .step {
        padding-left: 2.5rem;
    }

    .step-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

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

/* Partners Section with Marquee */
.partners {
    padding: 4rem 0;
    background-color: #fff;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1A334D;
    margin-bottom: 3rem;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.marquee-container {
    display: flex;
    width: fit-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    padding: 0 2rem;
    animation: scroll 30s linear infinite;
}

.marquee-spacer {
    width: 6rem;
}

.marquee-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
}

.marquee-item img {
    max-width: 100%;
    height: 45px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.marquee-item:hover img {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .marquee-spacer {
        width: 4rem;
    }
    
    .marquee-item {
        width: 120px;
    }
    
    .marquee-item img {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .marquee-spacer {
        width: 3rem;
    }
    
    .marquee-item {
        width: 100px;
    }
    
    .marquee-item img {
        height: 35px;
    }
}

/* Remove old merged logos styles */
.merged-logos {
    display: none;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 6rem 0;
    background: linear-gradient(90deg, #2B547E 0%, #1A334D 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.vision-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6rem;
}

.vision-text {
    flex: 1;
    max-width: 600px;
}

.vision-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.vision-icon {
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-header h2 {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    opacity: 0.9;
}

.vision-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: #fff;
}

.vision-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vision-item {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.vision-item strong {
    color: #fff;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    flex: 1;
    max-width: 500px;
}

.stat-card {
    background: rgba(14, 27, 45, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
}

.stat-content {
    text-align: left;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: #fff;
    overflow: hidden;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0d1b2a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonials-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.testimonial-card {
    flex: 0 0 400px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    padding: 2rem;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.quote-text {
    font-size: 1.1rem;
    color: #1A334D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.quote-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: #00a0e9;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.company-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-details h4 {
    font-size: 1.1rem;
    color: #0d1b2a;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-details p {
    font-size: 0.9rem;
    color: #4a4a4a;
}

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

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a0e9;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-thumbnail:hover .play-button {
    background: #00a0e9;
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Custom scrollbar for Webkit browsers */
.testimonials-grid {
    padding-bottom: 1rem;
}

.testimonials-grid::after {
    content: '';
    flex: 0 0 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }

    .testimonials-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }

    .video-thumbnail {
        height: 180px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 260px;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .quote-text {
        font-size: 1rem;
    }

    .video-thumbnail {
        height: 160px;
    }
}

/* Discovery Call Section */
.discovery-call {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.discovery-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0d1b2a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.discovery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.discovery-content {
    max-width: 800px;
    margin: 0 auto;
}

.discovery-calendar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendar-card {
    padding: 2rem;
}

.calendar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-header h3 {
    font-size: 1.5rem;
    color: #0d1b2a;
    margin-bottom: 0.5rem;
}

.calendar-header p {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.5;
}

.meeting-type {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.meeting-type:hover {
    border-color: #00a0e9;
    background-color: #f0f9ff;
}

.meeting-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a0e9;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.meeting-details {
    flex: 1;
}

.meeting-details h4 {
    font-size: 1.1rem;
    color: #0d1b2a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.meeting-details p {
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.5;
}

.meeting-arrow {
    color: #00a0e9;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.meeting-type:hover .meeting-arrow {
    opacity: 1;
}

.premium-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #2B547E;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transform: rotate(15deg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-tag span {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Responsive styles for Discovery Call section */
@media (max-width: 768px) {
    .discovery-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .discovery-subtitle {
        padding: 0 1rem;
    }

    .calendar-card {
        padding: 1.5rem;
    }

    .meeting-type {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .meeting-details {
        text-align: center;
    }

    .meeting-arrow {
        display: none;
    }

    .premium-tag {
        position: static;
        transform: none;
        margin-top: 1rem;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Experience CTA Section */
.experience-cta {
    padding: 8rem 0;
    background: linear-gradient(90deg, #1A334D 0%, #2B547E 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.experience-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.experience-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    color: #2B547E;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Responsive styles for Experience CTA section */
@media (max-width: 768px) {
    .experience-cta {
        padding: 6rem 2rem;
    }

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

    .experience-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* Footer Section */
.footer {
    background-color: #0d1b2a;
    padding: 6rem 0;
    color: white;
}

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

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    height: 120px;
    width: auto;
}

.footer-offices {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.office {
    padding: 1rem;
}

.office h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.office-details i {
    color: #00a0e9;
    font-size: 1rem;
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #00a0e9;
    transform: translateY(-2px);
}

/* Responsive styles for Footer */
@media (max-width: 1200px) {
    .footer-offices {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

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

    .footer-offices {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .office {
        text-align: center;
    }

    .office-details p {
        justify-content: center;
    }

    .footer-logo-img {
        height: 80px;
    }

    .footer-social {
        margin-top: 1rem;
    }
}

/* Responsive styles for chat widgets */
@media (max-width: 768px) {
    .chat-widgets {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .chat-widget {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
}

/* Footer Links Grid */
.footer-links-grid {
    display: flex;
    justify-content: center;
    gap: 6rem;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 4rem;
}

.footer-links-column h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #00a0e9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Footer Bottom Section */
.footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: #00a0e9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #fff;
}

.footer-legal {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.footer-legal a:hover {
    color: #fff;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Update existing responsive styles */
@media (max-width: 768px) {
    .footer-links-grid {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }
}

/* Blog Header Styles */
.blog-header {
    text-align: left;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 6rem auto 0; /* Added top margin to create space below navbar */
}

.blog-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.blog-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Featured Blog Styles */
.featured-blog {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.featured-blog-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.featured-blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.featured-blog-content {
    flex: 1;
}

.featured-blog-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-date {
    color: #666;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

/* Search Container Styles */
.search-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    text-align: right;
}

.search-input {
    width: 200px;
    padding: 0.5rem 2rem 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-blog {
        flex-direction: column;
        gap: 2rem;
    }

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

/* Blog Grid Styles */
.blog-grid {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

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

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, transparent 100%);
    z-index: 1;
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-content h2 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .search-container {
        padding: 0 1rem;
    }
    
    .search-input {
        width: 100%;
    }
}

/* Add spacing for the main content */
main {
    padding-top: 100px; /* Adds space below the navbar */
}

/* If you're using a specific container for your content */
.blog-header, 
.content-section {
    margin-top: 100px; /* Alternative way to add space below navbar */
}