:root {
    --primary-color: rgb(6, 23, 58);
    --secondary-color: #08102b;
    --text-color: #1e2125;
    --light-text: #363a41;
    --background: #ffffff;
    --light-background: #f3f4f6;
    --transition: all 0.3s ease;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --border-radius: 1rem;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background);
    padding-top: 80px;
    transition: var(--transition);
}

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

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    height: 70px;
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

nav.scrolled .logo-img {
    height: 45px;
}

nav.scrolled .logo-text {
    font-size: 1.3rem;
}

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

.logo-img {
    height: 50px;
    margin-right: 1rem;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

.animated-logo {
    animation: logo-animation 2s ease-in-out 1;
}

@keyframes logo-animation {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var (--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

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

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

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

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--background);
    position: fixed;
    top: 80px;
    right: 20px;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
    transition: var(--transition);
    transform: translateY(-10px);
    opacity: 0;
    overflow: hidden;
}

.mobile-nav.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a {
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 1px solid var(--light-background);
    transition: var(--transition);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--light-background);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Auto-hide Navigation */
.mobile-nav.show {
    display: flex;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    background: var(--primary-color); /* Match the page's primary color */
    color: var(--background); /* Ensure text is visible */
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    animation: slideShow 15s infinite;
}

.hero-slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--background);
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .cta-btn {
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    background: var(--background);
    color: var(--primary-color);
    border: 2px solid var(--background);
    transition: var(--transition);
    text-shadow: none;
}

.hero .cta-btn:hover {
    background: transparent;
    color: var(--background);
    border-color: var(--background);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@keyframes slideShow {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* Services Section */
.services {
    padding: 160px 0 80px;
    background: var(--light-background);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.services-grid {
    padding: 4rem 0;
    background: var(--light-background);
}

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

.service-item {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.service-item p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--background);
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.service-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    animation: slideInUp 1s ease-in-out;
    transform: translateY(0);
    backface-visibility: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card .fa-desktop {
    color: #00a8e8;
}

.service-card .fa-google {
    color: #4285F4;
}

.service-card .fa-microsoft {
    color: #00A4EF;
}

.service-card .fa-laptop-code {
    color: #2ecc71;
}

.service-card .fa-globe {
    color: #9b59b6;
}

.service-card .fa-shield-alt {
    color: #f39c12;
}

.service-card .fa-linkedin {
    color: #0A66C2;
}

.service-card .fa-facebook {
    color: #1877F2;
}

.service-card .fa-twitter {
    color: #1DA1F2;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.service-intro {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-category {
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: var(--border-radius);
    background: var(--background);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 2rem;
    text-decoration: none;
    transition: var(--transition);
}

.service-cta:hover {
    background: var(--secondary-color);
    transform: translateX(10px);
}

.service-category {
    margin-bottom: 4rem;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    background: var(--background);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.service-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: var(--light-background);
    padding: 1rem;
    border-radius: var(--border-radius);
}

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

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-background);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.service-list li:hover {
    transform: translateX(10px);
    background: var(--background);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-list i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.service-detail {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 0.3rem;
}

.service-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--background);
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.service-cta:hover {
    background: var(--secondary-color);
    transform: translateX(10px);
}

/* Why Us Section */
.why-us {
    padding: 160px 0 80px;
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.point {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.point i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-content {
    padding: 6rem 0;
    background: var(--light-background);
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.vision-section {
    margin: 4rem 0;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-expertise {
    margin: 4rem 0;
}

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

.tech-item {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    color: var(--background);
}

.tech-item:hover i {
    color: var(--background);
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.tech-item span {
    font-size: 1.2rem;
    font-weight: 500;
}

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

.about-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--background);
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

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

.achievement-box {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.achievement-box:hover {
    transform: scale(1.05);
    background: var(--primary-color);
    color: var(--background);
}

.achievement-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.achievement-box:hover .achievement-number {
    color: var(--background);
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: #ddd;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}

.team-member:hover .member-photo {
    transform: scale(1.1);
}

.member-quote {
    font-style: italic;
    color: var(--light-text);
    margin-top: 1rem;
}

/* CTA Section */
.cta {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var (--background);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: transparent;
    color: var(--background);
    border-color: var(--background);
}

.cta .cta-btn {
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    background: var(--background);
    color: var(--primary-color);
    border: 2px solid var(--background);
}

.cta .cta-btn:hover {
    background: transparent;
    color: var(--background);
    border-color: var(--background);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Footer Styles */
footer {
    background: var(--text-color);
    color: var(--background);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3,
.footer-links h3,
.social-links h3,
.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: white;
}

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

.footer-links a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color) !important;
}

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

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-newsletter {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 1.5rem auto 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

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

    .footer-info p {
        justify-content: center;
    }

    .social-links ul {
        justify-content: center;
    }

    .footer-links a {
        padding: 0.8rem 0;
    }
    
    .footer-info p {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .footer-info i {
        margin: 0 0.5rem;
    }
}

/* Contact Form */
.contact-form {
    padding: 80px 0;
    background: var(--light-background);
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    animation: slideInRight 1s ease-in-out;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--light-text);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: var (--text-color);
}

.contact-form button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--background);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    transform: translateY(-3px);
}

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

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.pulse {
    animation: pulse 2s infinite;
}

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

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--light-background);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    background: var(--background);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-item .answer {
    font-size: 1rem;
    color: var(--light-text);
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: var(--transition);
    margin: 0;
    visibility: hidden;
}

.faq-item .answer.show {
    max-height: 500px;
    opacity: 1;
    padding: 1rem;
    margin-top: 0.5rem;
    visibility: visible;
}

.faq-item .arrow {
    transition: transform 0.3s ease;
}

.faq-item .answer.show + h3 .arrow {
    transform: rotate(180deg);
}

/* Updated Scroll to Top Button Styles */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--background);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    overflow: hidden;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top .progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scroll-to-top .progress-bar {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--background);
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.scroll-to-top.scrolling .progress-bar {
    opacity: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fade-in {
    animation-name: fadeIn;
}

.slide-in-left {
    animation-name: slideInLeft;
}

.slide-in-right {
    animation-name: slideInRight;
}

.slide-in-up {
    animation-name: slideInUp;
}

.hero-text {
    animation: fadeIn 2s ease-in-out;
}

.service-card {
    animation: slideInUp 1s ease-in-out;
}

.page-header h1 {
    animation: slideInLeft 1s ease-in-out;
}

.contact-form h2 {
    animation: slideInRight 1s ease-in-out;
}

.footer-content {
    animation: fadeIn 2s ease-in-out;
}

.big-font {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--background);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: transparent;
    color: var(--background);
    border-color: var(--background);
}

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

.hero .cta-btn {
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    background: var(--background);
    color: var(--primary-color);
    border: 2px solid var(--background);
}

.hero .cta-btn:hover {
    background: transparent;
    color: var(--background);
    border-color: var(--background);
}

.cta .cta-btn {
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    background: var(--background);
    color: var(--primary-color);
    border: 2px solid var(--background);
}

.cta .cta-btn:hover {
    background: transparent;
    color: var(--background);
    border-color: var(--background);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--background);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .mobile-nav.show {
        display: block;
    }

    .mobile-nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--light-background);
    }

    .mobile-nav a:last-child {
        border-bottom: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .social-links {
        justify-content: center;
    }

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

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .form-wrapper {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 16px;
    }

    .contact-hero h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .highlight-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

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

    .card-details {
        padding: 0 1rem;
    }

    .primary-info {
        font-size: 1rem;
        word-wrap: break-word;
    }

    .secondary-info {
        font-size: 0.9rem;
    }

    textarea, input, select {
        width: 100%;
        box-sizing: border-box;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem;
        margin-top: 1rem;
        font-size: 1rem;
    }

    .contact-card, .commitment-item {
        width: auto;
        margin: 0 1rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    .contact-info-section {
        padding: 2rem 0;
    }

    .contact-form {
        padding: 2rem 0;
    }

    .footer-info p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 30px;
    margin-right: 10px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin: 0 10px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
}

header .search img {
    height: 20px;
}

header .cta {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 50px;
    margin-right: 1rem;
}

header .logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

header nav {
    display: flex;
    gap: 2rem;
}

header nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

header nav a:hover,
header nav a.active {
    color: var(--primary-color);
}

header .mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav {
        display: none;
    }
}

.service-details {
    background: var(--light-background);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    text-align: left;
}

.service-details h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details ul li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-details ul li:last-child {
    margin-bottom: 0;
}

.service-item:hover .service-details {
    background: var(--background);
    box-shadow: var(--shadow);
}

#services {
    padding: 4rem 2rem;
    background: var(--light-background);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.service-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

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

.service-list li {
    margin-bottom: 1rem;
    padding: 0.5rem;
    color: var(--text-color);
    transition: var(--transition);
}

.service-list li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

.service-item p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    white-space: pre-line;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--background);
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

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

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    color: var(--text-color);
    transition: var(--transition);
}

.bullet {
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.2rem;
}

.service-list li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

.service-list li:hover .bullet {
    transform: scale(1.2);
}

.contact-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background);
    text-align: center;
}

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

.info-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-background);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--background);
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

.commitment-content {
    padding: 4rem 0;
    text-align: center;
}

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

.commitment-item {
    padding: 2rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.contact-info-section {
    padding: 4rem 0;
    background: var(--light-background);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.contact-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--light-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

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

.card-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.primary-info {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.primary-info:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.secondary-info {
    color: var(--light-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
}

.contact-card {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.primary-info, .secondary-info {
    max-width: 100%;
    overflow-wrap: break-word;
}

.form-message {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 0.5rem;
    animation: slideInDown 0.5s ease-in-out;
}

.form-message.success {
    background: rgba(37, 199, 122, 0.1);
    border: 1px solid #25c77a;
    color: #25c77a;
}

.form-message.error {
    background: rgba(255, 76, 76, 0.1);
    border: 1px solid #ff4c4c;
    color: #ff4c4c;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.message-content i {
    font-size: 1.5rem;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.page-header {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background);
    overflow: hidden;
    text-align: center;
    margin-top: -80px; /* Adjust for fixed header */
}

.page-header .highlight-text {
    max-width: 800px;
    margin: 1rem auto;
    color: var(--background);
    opacity: 0.9;
}

.page-header::before {
    display: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
        background-attachment: scroll;
    }
    
    .page-header::before {
        height: 60px;
    }
}

.fa-google,
.service-card .fa-google {
    color: #4285F4 !important;
}

.fa-microsoft,
.service-card .fa-microsoft {
    color: #00A4EF !important;
}

.fa-linkedin,
.social-links .fa-linkedin {
    color: #0A66C2 !important;
}

.fa-facebook,
.social-links .fa-facebook {
    color: #1877F2 !important;
}

.fa-twitter,
.social-links .fa-twitter {
    color: #1DA1F2 !important;
}

.fa-desktop,
.service-card .fa-desktop {
    color: #00a8e8 !important;
}

.fa-laptop-code,
.service-card .fa-laptop-code {
    color: #2ecc71 !important;
}

.fa-globe,
.service-card .fa-globe {
    color: #9b59b6 !important;
}

.fa-shield-alt,
.service-card .fa-shield-alt {
    color: #f39c12 !important;
}

.fa-envelope {
    color: #EA4335 !important;
}

.fa-phone,
.fa-phone-alt {
    color: #34A853 !important;
}

.fa-clock {
    color: #4285F4 !important;
}

.fa-heart {
    color: #E91E63 !important;
}

.fa-star {
    color: #FFC107 !important;
}

.fa-handshake {
    color: #2196F3 !important;
}

.fa-lightbulb {
    color: #FFD700 !important;
}

.fa-lock {
    color: #607D8B !important;
}

.fa-chart-line {
    color: #4CAF50 !important;
}

.fa-eye {
    color: #9C27B0 !important;
}

.fa-bullseye {
    color: #F44336 !important;
}

footer .fa-envelope,
footer .fa-phone,
footer .fa-phone-alt,
footer .social-links i {
    color: #fff !important;
}

footer .social-links i:hover {
    color: var(--primary-color) !important;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-item {
    padding: 0 0 2rem 0;
}

.service-item h3 {
    padding: 0 2rem;
}

.service-list {
    padding: 0 2rem;
}

.service-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 0;
}

.service-image {
    height: 300px;
    width: 100%;
}

.service-intro {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-intro h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: var(--light-background);
}

.feature-item {
    padding: 1.5rem;
    background: var(--background);
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.training-programs {
    padding: 2rem;
    background: var(--background);
}

.training-programs h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.training-programs ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
}

.training-programs li {
    padding: 1rem;
    background: var(--light-background);
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.training-programs li:hover {
    transform: translateX(10px);
    background: var(--primary-color);
    color: var(--background);
}

@media (max-width: 768px) {
    .service-header {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-intro {
        padding: 1.5rem;
    }
    
    .feature-list {
        padding: 1.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

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

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

.modal-content .form-group input,
.modal-content .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-text);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.modal-content .submit-btn {
    background: var(--primary-color);
    color: var(--background);
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.modal-content .submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}