@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    background-color: #0F172A;
    color: #F1F5F9;
    line-height: 1.6;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

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

/* Button Styles */
.btn-primary {
    background: linear-gradient(to right, #3B82F6, #06B6D4);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(to right, #2563EB, #0891B2);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: linear-gradient(to right, #10B981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(to right, #059669, #047857);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #60A5FA, #A78BFA, #06B6D4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-green {
    background: linear-gradient(to right, #34D399, #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.gradient-text-purple {
    background: linear-gradient(to right, #A78BFA, #EC4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.gradient-text-blue {
    background: linear-gradient(to right, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
    background: linear-gradient(to right, #06B6D4, #A78BFA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-orange {
    background: linear-gradient(to right, #FB923C, #EF4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
.header {
    border-bottom: 1px solid #334155;
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #0F172A;
    transition: background-color 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo {
    height: 3rem;
    width: auto;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
}

/* Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #CBD5E1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: #60A5FA;
}

.nav-link.active {
    color: #60A5FA;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    color: #CBD5E1;
    font-size: inherit;
    font-weight: inherit;
}

.chevron-down {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.5rem;
    width: 12rem;
    background-color: #1E293B;
    border: 1px solid #334155;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 50;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #CBD5E1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    color: #60A5FA;
    background-color: #334155;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #F1F5F9;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: #1E293B;
}

.nav-mobile {
    padding: 1rem 0;
    border-top: 1px solid #334155;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-dropdown-menu {
    margin-left: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-dropdown-menu a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    color: #60A5FA;
}

/* Hero Section */
.hero {
    position: relative;
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.5) 50%, rgba(15, 23, 42, 0.8) 100%);
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234F46E5' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.arrow-right {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
}

.scroll-indicator-dot {
    width: 0.25rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #0F172A;
}

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

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.about-text {
    color: #CBD5E1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Technology Illustration */
.tech-illustration {
    display: none;
}

.tech-circle {
    position: relative;
    width: 20rem;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-center {
    background: linear-gradient(135deg, #3B82F6, #A78BFA);
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 10;
    border: 4px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.tech-orbit {
    position: absolute;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    animation: pulse 2s infinite;
}

.tech-orbit-1 {
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
    animation-delay: 0s;
}

.tech-orbit-2 {
    top: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, #EF4444, #FB923C);
    animation-delay: 0.5s;
}

.tech-orbit-3 {
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #A78BFA, #EC4899);
    animation-delay: 1s;
}

.tech-orbit-4 {
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, #6366F1, #A78BFA);
    animation-delay: 1.5s;
}

.tech-orbit-5 {
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981, #059669);
    animation-delay: 2s;
}

.tech-orbit-6 {
    bottom: -1.5rem;
    left: -1.5rem;
    background: linear-gradient(135deg, #F59E0B, #FB923C);
    animation-delay: 2.5s;
}

.tech-orbit-7 {
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    animation-delay: 3s;
}

.tech-orbit-8 {
    top: -1.5rem;
    left: -1.5rem;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    animation-delay: 3.5s;
}

.tech-connecting-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11.25rem;
    height: 11.25rem;
    border: 2px dashed;
    border-image: linear-gradient(45deg, #3B82F6, #8B5CF6, #06B6D4) 1;
    border-radius: 50%;
    opacity: 0.2;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: linear-gradient(to right, rgba(30, 41, 59, 0.5), rgba(51, 65, 85, 0.5));
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
    overflow: hidden;
}

.partners-scroll {
    max-width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    width: calc(200% + 2rem);
    animation: scroll 40s linear infinite;
}

.partner-item {
    flex-shrink: 0;
    width: 12rem;
    height: 8rem;
    margin: 0 1rem;
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    border: 1px solid #E2E8F0;
}

.partner-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #0F172A;
}

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

.testimonials-subtitle {
    font-size: 1.25rem;
    color: #94A3B8;
}

.testimonials-container {
    position: relative;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: linear-gradient(to right, #1E293B, #334155);
    color: white;
    border: 1px solid #475569;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-nav:hover {
    background: linear-gradient(to right, #334155, #475569);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonials-wrapper {
    overflow: hidden;
    margin: 0 3rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    width: 100%;
    flex-shrink: 0;
    padding: 0 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    border: 1px solid #475569;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #3B82F6;
    transform: scale(1.02);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.25rem;
}

.star {
    color: #F59E0B;
    width: 1.25rem;
    height: 1.25rem;
}

.testimonial-content {
    color: #CBD5E1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #475569;
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #94A3B8;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.author-industry {
    background: linear-gradient(to right, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #475569;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: #64748B;
}

.dot.active {
    background: linear-gradient(to right, #60A5FA, #A78BFA);
}

/* Mobile/Desktop specific testimonials */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
    background-color: #0F172A;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    position: relative;
    background-color: #1E293B;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #334155;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.service-card:hover {
    transform: scale(1.05);
    border-color: #3B82F6;
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-card:nth-child(1) .service-overlay {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
}

.service-card:nth-child(2) .service-overlay {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(251, 146, 60, 0.1));
}

.service-card:nth-child(3) .service-overlay {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(167, 139, 250, 0.1));
}

.service-content {
    position: relative;
    z-index: 10;
    padding: 1.5rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
}

.service-icon-blue {
    background: linear-gradient(135deg, #3B82F6, #06B6D4);
}

.service-icon-red {
    background: linear-gradient(135deg, #EF4444, #FB923C);
}

.service-icon-indigo {
    background: linear-gradient(135deg, #6366F1, #A78BFA);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #60A5FA;
}

.service-description {
    color: #E2E8F0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #0F172A;
    border-top: 1px solid #334155;
    margin-top: 5rem;
    color: #CBD5E1;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0;
    align-items: start;
}

/* Force the company info to span 2 columns only when space allows */
.footer-company {
    grid-column: span 1; /* Remove span 2 if you're already using 2fr above */
}


.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 3rem;
    width: auto;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3))
            drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
}

.footer-description {
    color: #94A3B8;
    margin-bottom: 1.5rem;
    max-width: 28rem;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #94A3B8;
}

.footer-section .footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
}

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

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

.footer-links a {
    text-decoration: none;
    color: #94A3B8;
    transition: color 0.2s;
}

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

.footer-social .social-links a {
    margin-right: 1rem;
    color: #94A3B8;
    display: inline-block;
    transition: color 0.2s;
}

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


.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94A3B8;
}

/* testing this */
.contact-item a {
    color: #94A3B8 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-item a:hover {
    color: #E2E8F0 !important;
}

/* Contact Info Card Text Color For links */
.contact-info-detail a {
    color: #3B82F6  !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}




/* testing this */
.contact-icon {
    width: 1rem;
    height: 1rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-subsection {
    margin-top: 2rem;
}

.footer-subsection .footer-title {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #94A3B8;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #60A5FA;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: #94A3B8;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

/* Page-specific styles for additional pages */

/* Page sections with better spacing */
.page-section {
    padding: 4rem 0;
}

/* Page Hero Overlays */
.page-hero-overlay-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.7) 0%, rgba(220, 38, 38, 0.5) 50%, rgba(15, 23, 42, 0.8) 100%);
}

.page-hero-overlay-purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.7) 0%, rgba(126, 34, 206, 0.5) 50%, rgba(15, 23, 42, 0.8) 100%);
}

.page-hero-overlay-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.7) 0%, rgba(22, 163, 74, 0.5) 50%, rgba(15, 23, 42, 0.8) 100%);
}

.page-hero-overlay-indigo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.7) 0%, rgba(79, 70, 229, 0.5) 50%, rgba(15, 23, 42, 0.8) 100%);
}

/* Additional gradient text colors */
.gradient-text-red {
    background: linear-gradient(to right, #EF4444, #DC2626);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-yellow {
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-indigo {
    background: linear-gradient(to right, #6366F1, #4F46E5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form submit button variants */
.form-submit-red {
    background: linear-gradient(to right, #EF4444, #DC2626);
}

.form-submit-red:hover {
    background: linear-gradient(to right, #DC2626, #B91C1C);
}

.form-submit-purple {
    background: linear-gradient(to right, #8B5CF6, #7C3AED);
}

.form-submit-purple:hover {
    background: linear-gradient(to right, #7C3AED, #6D28D9);
}

.form-submit-green {
    background: linear-gradient(to right, #10B981, #059669);
}

.form-submit-green:hover {
    background: linear-gradient(to right, #059669, #047857);
}

.form-submit-indigo {
    background: linear-gradient(to right, #6366F1, #4F46E5);
}

.form-submit-indigo:hover {
    background: linear-gradient(to right, #4F46E5, #4338CA);
}

/* Additional service icon colors */
.service-icon-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.service-icon-green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.service-icon-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.service-icon-orange {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.service-icon-indigo {
    background: linear-gradient(135deg, #6366F1, #4F46E5);
}

/* Additional benefit icon colors */
.benefit-icon-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.benefit-icon-cyan {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.benefit-icon-yellow {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

/* Additional stat icon colors */
.stat-icon-red {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.stat-icon-orange {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

/* Threat protection grid */
.threat-protection-section {
    text-align: center;
}

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

.threat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.5rem;
    border: 1px solid #475569;
    color: #F1F5F9;
    font-weight: 500;
}

.threat-item svg {
    color: #EF4444;
    flex-shrink: 0;
}

/* Cybersecurity statistics */
.cyber-stats-section {
    text-align: center;
}

.cyber-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.cyber-stat-card {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #475569;
    text-align: center;
}

.cyber-stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, #EF4444, #DC2626);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.cyber-stat-text {
    color: #CBD5E1;
    line-height: 1.6;
}

.cyber-stats-cta {
    margin-top: 3rem;
    text-align: center;
}

.cyber-stats-warning {
    font-size: 1.5rem;
    font-weight: 600;
    color: #EF4444;
    margin-bottom: 0.5rem;
}

.cyber-stats-message {
    font-size: 1.125rem;
    color: #CBD5E1;
}

/* Technologies section */
.tech-section {
    text-align: center;
}

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

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.5rem;
    border: 1px solid #475569;
    color: #F1F5F9;
    font-weight: 500;
}

.tech-item svg {
    color: #06B6D4;
    flex-shrink: 0;
}

/* Development process */
.process-section {
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
}

.process-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
}

.process-number-blue {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.process-number-green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.process-number-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.process-number-orange {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.process-description {
    color: #94A3B8;
}

/* Industries section */
.industries-section {
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.industry-card {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid #475569;
    text-align: left;
}

.industry-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.industry-description {
    color: #94A3B8;
    line-height: 1.6;
}

/* Website types section */
.website-types-section {
    text-align: center;
}

.website-types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.website-type-card {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid #475569;
    text-align: center;
}

.website-type-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
}

.website-type-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.website-type-description {
    color: #94A3B8;
    line-height: 1.6;
}

/* About page styles */
.about-story-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-story-text {
    color: #CBD5E1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-story-image {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.mission-values-section {
    text-align: center;
}

.mission-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #475569;
    text-align: center;
}

.mission-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
}

.mission-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.mission-description {
    color: #94A3B8;
    line-height: 1.6;
}

.team-section {
    text-align: center;
}

.team-subtitle {
    color: #94A3B8;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #475569;
    text-align: center;
}

.team-member-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid #3B82F6;
}

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

.team-member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.team-member-role {
    color: #3B82F6;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-member-bio {
    color: #94A3B8;
    line-height: 1.6;
}

.why-choose-section {
    text-align: center;
}

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

.why-choose-item {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid #475569;
    text-align: center;
}

.why-choose-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
}

.why-choose-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.why-choose-description {
    color: #94A3B8;
    font-size: 0.875rem;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 1rem;
    padding: 3rem 2rem;
    border: 1px solid #475569;
}

.cta-subtitle {
    color: #94A3B8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Contact page styles */
.contact-info-section {
    margin-bottom: 4rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #475569;
    text-align: center;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-info-detail {
    color: #3B82F6;
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-info-description {
    color: #94A3B8;
    line-height: 1.6;
}

.services-cta-section {
    text-align: center;
}

.services-cta-subtitle {
    color: #94A3B8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.services-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-cta-card {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #475569;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.service-cta-card:hover {
    border-color: #3B82F6;
    transform: translateY(-2px);
}

.service-cta-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.service-cta-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.service-cta-description {
    color: #94A3B8;
    font-size: 0.875rem;
}

.faq-section {
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.faq-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid #475569;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: #94A3B8;
    line-height: 1.6;
}

/* Blog page styles */
.featured-article-section {
    text-align: center;
    margin-bottom: 4rem;
}

.featured-article {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #475569;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.featured-article-image {
    height: 16rem;
    overflow: hidden;
}

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

.featured-article-content {
    padding: 2rem;
    text-align: left;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-category {
    background: linear-gradient(to right, #3B82F6, #2563EB);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.article-date {
    color: #94A3B8;
    font-size: 0.875rem;
}

.featured-article-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-article-excerpt {
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-read-more {
    background: none;
    border: none;
    color: #60A5FA;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.article-read-more:hover {
    color: #3B82F6;
}

.article-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.article-overlay:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}

/* .article-popup { */

.blog-articles-section {
    text-align: center;
}

.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-article-card {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #475569;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.blog-article-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-article-excerpt {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    display: -webkit-box;
}

.blog-categories-section {
    text-align: center;
}

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

.blog-category-card {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid #475569;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-category-card:hover {
    border-color: #3B82F6;
    transform: translateY(-2px);
}

.blog-category-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
}

.blog-category-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.blog-category-count {
    color: #94A3B8;
    font-size: 0.875rem;
}

.newsletter-section {
    text-align: center;
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 1rem;
    padding: 3rem 2rem;
    border: 1px solid #475569;
}

.newsletter-subtitle {
    color: #94A3B8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 28rem;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    background-color: #334155;
    border: 1px solid #475569;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #F1F5F9;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #3B82F6;
}

.newsletter-input::placeholder {
    color: #94A3B8;
}

.newsletter-submit {
    background: linear-gradient(to right, #3B82F6, #2563EB);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: linear-gradient(to right, #2563EB, #1D4ED8);
    transform: translateY(-1px);
}

.newsletter-privacy {
    color: #94A3B8;
    font-size: 0.875rem;
}

/* Dynamic Scheduler Specific Styles */
.dynamic-scheduler-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.dynamic-scheduler-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94A3B8;
    margin-top: 2rem;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.excellence-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.excellence-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.excellence-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.excellence-icon-blue {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.excellence-icon-green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.excellence-icon-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.excellence-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F1F5F9;
    margin-bottom: 1rem;
}

.excellence-description {
    color: #94A3B8;
    line-height: 1.6;
}

.core-features-list {
    margin-top: 3rem;
}

.core-feature-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.6));
    border: 1px solid rgba(100, 116, 139, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.core-feature-section:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

.core-feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    color: #FFFFFF;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.core-feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #F1F5F9;
    margin-bottom: 2rem;
}

.core-feature-description {
    color: #E2E8F0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.core-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.core-feature-list li {
    color: #E2E8F0;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 1rem;
}

.core-feature-list li::before {
    content: "•";
    color: #3B82F6;
    position: absolute;
    left: 0;
    font-size: 1.4rem;
    font-weight: bold;
}

/* Large Image Containers */
.feature-image-container-large {
    margin: 2rem 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.feature-image-container-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.feature-image-container-large .feature-image {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.feature-images-grid-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-images-grid-large .feature-image {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.feature-images-grid-large .feature-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .core-feature-section {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .core-feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .core-feature-title {
        font-size: 1.6rem;
    }
    
    .feature-images-grid-large {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-image-container-large .feature-image {
        min-height: 200px;
    }
    
    .feature-images-grid-large .feature-image {
        min-height: 200px;
    }
}

.scheduler-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.scheduler-benefit-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.scheduler-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.scheduler-benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #F1F5F9;
    margin-bottom: 1rem;
}

.scheduler-benefit-description {
    color: #94A3B8;
    line-height: 1.6;
}

.flight-center-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.flight-center-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.flight-center-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.flight-center-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #F1F5F9;
    margin-bottom: 1rem;
}

.flight-center-description {
    color: #94A3B8;
    line-height: 1.6;
}

.solution-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-benefit-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.solution-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.solution-benefit-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.solution-benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F1F5F9;
    margin-bottom: 1rem;
}

.solution-benefit-description {
    color: #94A3B8;
    line-height: 1.6;
}

.smart-attendance-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.smart-attendance-list {
    list-style: none;
    padding: 0;
}

.smart-attendance-list li {
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.smart-attendance-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    border-radius: 50%;
}

.intelligent-roster-content {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.roster-section {
    margin-bottom: 3rem;
}

.roster-subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F1F5F9;
    margin-bottom: 1rem;
}

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

.roster-list li {
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.roster-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 50%;
}

.additional-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.additional-feature-section {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.additional-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.additional-feature-list li {
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.additional-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    border-radius: 50%;
}

.admin-suite-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.admin-suite-list {
    list-style: none;
    padding: 0;
}

.admin-suite-list li {
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.admin-suite-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    border-radius: 50%;
}

.ai-management-content {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.ai-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94A3B8;
    text-align: center;
    margin-bottom: 3rem;
}

.ai-conclusion {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94A3B8;
    margin-top: 3rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tech-illustration {
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

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

    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom-content {
        flex-direction: row;
    }
    
    /* Responsive adjustments for new pages */
    .threat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cyber-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .website-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-story-section {
        grid-template-columns: 1fr 1fr;
    }
    
    .mission-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-article {
        grid-template-columns: 1fr 1fr;
    }
    
    .featured-article-image {
        height: auto;
    }
    
    .blog-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .newsletter-input-group {
        flex-direction: row;
    }
    
    .newsletter-input {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

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

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

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Large screen adjustments */
    .cyber-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mission-values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-cta-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .blog-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 5rem;
    }
}

/* Page-specific styles */

/* Page Hero */
.page-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.65) 50%, rgba(15, 23, 42, 0.9) 100%);
    z-index: -1;
}

.page-hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: #E2E8F0;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background-color: #0F172A;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    align-items: stretch; /* Ensures all cards match height */
}


.benefits-section .section-title {
    margin-bottom: 1rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center vertically */
    text-align: center;
    height: 100%; /* Ensure full height for consistency */
    padding: 1.25rem; /* Optional: reduce slightly */
}

.benefit-card:hover {
    border-color: #3B82F6;
    transform: translateY(-4px);
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
}

.benefit-icon-blue {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.benefit-icon-green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.benefit-icon-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.benefit-description {
    color: #CBD5E1;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(to right, rgba(30, 41, 59, 0.5), rgba(51, 65, 85, 0.5));
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
}

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

.stat-card {
    text-align: center;
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #475569;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
}

.stat-icon-blue {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.stat-icon-green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.stat-icon-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94A3B8;
    font-weight: 500;
}

/* Services detail grid for service pages */
.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.services-detail-grid .section-title {
    margin-bottom: 3rem;
}

.services-detail-single {
    max-width: 48rem;
    margin: 0 auto;
}

.service-detail-card {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 0;
    border: 1px solid #475569;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-detail-card:hover {
    border-color: #3B82F6;
    transform: translateY(-4px);
}

.service-detail-content {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.service-detail-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
    flex-shrink: 0;
}

.service-detail-text {
    flex: 1;
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.service-detail-description {
    color: #CBD5E1;
    line-height: 1.6;
}

/* Dashboard section */
.dashboard-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.dashboard-demo {
    order: 2;
}

.dashboard-content {
    order: 1;
}

.dashboard-card {
    background: linear-gradient(135deg, #1E293B, #334155);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #475569;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.dashboard-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-item-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.7), rgba(37, 99, 235, 0.1));
}

.dashboard-item-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.7), rgba(5, 150, 105, 0.1));
}

.dashboard-item-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.7), rgba(124, 58, 237, 0.1));
}

.dashboard-item-orange {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.7), rgba(217, 119, 6, 0.1));
}

.dashboard-item-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.7), rgba(220, 38, 38, 0.1));
}

.dashboard-label {
    color: #CBD5E1;
    font-weight: 500;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.status-dot-green {
    background-color: #10B981;
}

.status-dot-blue {
    background-color: #3B82F6;
}

.status-dot-purple {
    background-color: #8B5CF6;
}

.status-dot-orange {
    background-color: #F59E0B;
}

.dashboard-text {
    color: #CBD5E1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dashboard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.tag-blue {
    background: linear-gradient(to right, #3B82F6, #2563EB);
}

.tag-green {
    background: linear-gradient(to right, #10B981, #059669);
}

.tag-purple {
    background: linear-gradient(to right, #8B5CF6, #7C3AED);
}

.tag-red {
    background: linear-gradient(to right, #EF4444, #DC2626);
}

.tag-orange {
    background: linear-gradient(to right, #F59E0B, #D97706);
}

.tag-cyan {
    background: linear-gradient(to right, #06B6D4, #0891B2);
}

/* Contact form styles */
.contact-form-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container {
    background: rgba(30, 41, 59, 0.6);
    padding: 2.5rem 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin: 0 1rem;
}

.contact-form-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-form-subtitle {
    color: #94A3B8;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-align: center;
}

.contact-form {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

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

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

.form-label {
    display: block;
    color: #F1F5F9;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background-color: #334155;
    border: 1px solid #475569;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #F1F5F9;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3B82F6;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94A3B8;
}

.form-submit {
    width: 100%;
    background: linear-gradient(to right, #3B82F6, #2563EB);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    background: linear-gradient(to right, #2563EB, #1D4ED8);
    transform: translateY(-1px);
}

/* Responsive adjustments for service pages */
@media (min-width: 768px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-section {
        grid-template-columns: 1fr 1fr;
    }
    
    .dashboard-demo {
        order: 1;
    }
    
    .dashboard-content {
        order: 2;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-detail-single {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .contact-form {
        max-width: 100%;
    }
}

/* Lighthouse Page Styles */
.lighthouse-intro {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.lighthouse-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #CBD5E1;
    margin-top: 2rem;
}

/* Lighthouse Feature Images */
.feature-image-container {
    margin: 2rem 0;
    text-align: center;
}

.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-images-grid .feature-image {
    width: 100%;
}

@media (max-width: 768px) {
    .feature-images-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-image-container {
        margin: 1.5rem 0;
    }
}

/* Lighthouse Key Features */
.key-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #3B82F6;
    transform: translateY(-4px);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F1F5F9;
    margin-bottom: 1rem;
}

.feature-subpoints {
    margin-top: 1rem;
}

.feature-subpoints p {
    font-size: 0.875rem;
    color: #94A3B8;
    margin: 0.5rem 0;
}

.feature-details {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-detail-section {
    margin-bottom: 4rem;
}

.feature-detail-section:last-child {
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #CBD5E1;
    line-height: 1.6;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3B82F6;
    font-size: 1.5rem;
    line-height: 1;
}

.feature-subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F1F5F9;
    margin: 2rem 0 1rem 0;
}

.ai-features-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ai-intro {
    font-size: 1.125rem;
    color: #CBD5E1;
    text-align: center;
    margin-bottom: 3rem;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.ai-feature-card {
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.ai-feature-card:hover {
    border-color: #F59E0B;
    transform: translateY(-4px);
}

.ai-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #F1F5F9;
    margin-bottom: 1rem;
}

.ai-feature-description {
    color: #94A3B8;
    line-height: 1.6;
}

.ai-conclusion {
    font-size: 1.125rem;
    color: #CBD5E1;
    line-height: 1.8;
    text-align: center;
}

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

    .ai-features-grid {
        grid-template-columns: 1fr;
    }

    .lighthouse-description,
    .ai-intro,
    .ai-conclusion {
        font-size: 1rem;
    }
}