:root {
    --primary: #0fa2b4;
    --primary-dark: #053d5c;
    --primary-light: #1eadbe;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
}
html, body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo img {
    height: 40px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

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

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

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

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

.cta-nav {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 8rem 5% 5rem;
    background: linear-gradient(135deg, rgba(5, 61, 92, 0.9), rgba(15, 161, 180, 0)), url('PANELIMG.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    flex: 1;
    color: var(--white);
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    max-width: 600px;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: var(--white);
    color: var(--primary);
}

.cta-button.secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(5px);
}

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

/* Services Section */
.services {
    padding: 5rem 5%;
    background-color: var(--white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.2rem;
}

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

.service-card {
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Tech Stack Section */
.tech-stack {
    padding: 5rem 5%;
    background-color: var(--gray-50);
}

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

.tech-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.tech-item img {
    width: 280px;
    height: 280px;
    margin-bottom: 1.5rem;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(10%);
}

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

.tech-item h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tech-item p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    text-align: center;
}

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

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.contact-form {
    background-color: var(--gray-50);
    padding: 2rem;
    border-radius: 10px;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 162, 180, 0.1);
}

textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.75rem 0;
}

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

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

.social-links a {
    color: var(--gray-300);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    transition: all 0.3s ease;
}

.menu-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.mobile-menu-btn.active .menu-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-btn.active .menu-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.mobile-close-btn {
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-close-btn:hover {
    color: var(--primary);
}

.mobile-nav-links {
    list-style: none;
    padding: 2rem;
    margin: 0;
    flex: 1;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
    padding: 0;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.mobile-nav-links a:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.mobile-nav-links i {
    width: 24px;
    color: var(--primary);
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--white) !important;
    border-radius: 5px;
    font-weight: 500;
}

.mobile-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px) !important;
}

.mobile-menu-footer {
    position: sticky;
    bottom: 0;
    background: var(--white);
    z-index: 10000;
    padding: 1rem 2rem;
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-social-links a {
    color: var(--gray-600);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

/* Mobile Logo */
.mobile-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-logo-img {
    height: 40px;
    width: auto;
}

/* Feature Blocks */
.features-block {
    padding: 5rem 5%;
    background-color: var(--white);
}

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

.feature-block {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-block:hover::before {
    opacity: 1;
}

.block-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-block p {
    opacity: 0.9;
}

/* Stats Block */
.stats-block {
    padding: 5rem 5%;
    background-color: var(--gray-50);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Process Block */
.process-block {
    padding: 5rem 5%;
    background-color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--gray-600);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

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

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

    .tech-item img {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        display: none;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
    }

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

    .features-grid,
    .stats-container,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .feature-block {
        padding: 2rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .tech-item img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .mobile-nav-links {
        padding: 1.5rem;
    }

    .mobile-menu-header,
    .mobile-menu-footer {
        padding: 1.5rem;
    }

    .mobile-logo-container {
        gap: 0.5rem;
    }

    .mobile-logo-img {
        height: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .tech-item img {
        width: 180px;
        height: 180px;
    }
}

/* Software Page Styles */
.software-hero {
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
}

.software-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.software-grid {
    padding: 5rem 5%;
    display: grid;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.software-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.software-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.software-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.software-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.software-item:hover .software-image img {
    transform: scale(1.05);
}

.software-content {
    padding: 2rem;
}

.software-content h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.software-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.software-features {
    list-style: none;
    margin-bottom: 2rem;
}

.software-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.software-features i {
    color: var(--primary);
}

.software-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.software-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.software-cta-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
}

/* Responsive Design for Software Page */
@media (max-width: 1024px) {
    .software-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .software-features {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .software-hero h1 {
        font-size: 2.5rem;
    }

    .software-content {
        padding: 1rem;
    }

    .software-grid {
        padding: 3rem 5%;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .software-hero h1 {
        font-size: 2rem;
    }

    .software-content h2 {
        font-size: 1.8rem;
    }

    .software-item {
        padding: 1rem;
    }
}

/* Overlay effect when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
    background-color: var(--white);
}

.mobile-nav-links {
    list-style: none;
    padding: 1rem 2rem;
    margin: 0;
}

/* Service Page Styles */
.service-hero {
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.category-grid {
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-item {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.category-item h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.category-item p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.category-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding: 0 1rem;
}

.category-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.category-features i {
    color: var(--primary);
    font-size: 1.2rem;
}

.category-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.process-timeline {
    max-width: 1200px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 0 5%;
    position: relative;
}

.timeline-item {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.timeline-item h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-item p {
    color: var(--gray-600);
}

.service-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
}

/* Active Navigation Link */
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.mobile-nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Logo Link Styles */
.logo a,
.mobile-logo-container a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Responsive Design for Service Page */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }

    .category-item {
        padding: 2rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .timeline-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .category-item h2 {
        font-size: 1.5rem;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

.vetra-ai-info {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.vetra-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.vetra-text {
    flex: 1;
}

.vetra-text h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 20px;
}

.vetra-text p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 30px;
    line-height: 1.6;
}

.vetra-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.vetra-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #2d3436;
}

.vetra-features i {
    margin-right: 15px;
    color: #072c5b;
    font-size: 1.3rem;
}

.vetra-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: #072c5b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.vetra-cta:hover {
    background-color: #072c5b;
}

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

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

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

    .vetra-features li {
        justify-content: center;
    }

    .vetra-text h2 {
        font-size: 2rem;
    }
} 