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

body {
    line-height: 1.6;
    color: #333;
}

:root {
    --bs-primary: #3ab5fe;
    --bs-primary-rgb: 58, 181, 254;
}

.btn-primary {
    background-color: #3ab5fe;
    border-color: #3ab5fe;
}

.btn-primary:hover {
    background-color: #1c587a;
    border-color: #1c587a;
}

.text-primary {
    color: #3ab5fe !important;
}

.bg-primary {
    background-color: #3ab5fe !important;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: #3ab5fe;
    color: white !important;
}

.hero-section {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    color: #333333;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.hero-content .text-primary {
    color: #3ab5fe !important;
    font-weight: 900;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.technologies-section {
    background-color: #f8f9fa;
}

.tech-item {
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

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

.tech-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.infrastructure-section {
    padding: 80px 0;
}

.infrastructure-image img {
    max-width: 100%;
    height: auto;
}

.page-header {
    padding-top: 120px;
    padding-bottom: 60px;
}

.services-section .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    margin-bottom: 20px;
}

.process-section {
    background-color: #f8f9fa;
}

.step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
}

.contact-section {
    padding: 80px 0;
}

.contact-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.contact-icon {
    width: 50px;
}

.form-control:focus {
    border-color: #3ab5fe;
    box-shadow: 0 0 0 0.2rem rgba(58, 181, 254, 0.25);
}

.form-select:focus {
    border-color: #3ab5fe;
    box-shadow: 0 0 0 0.2rem rgba(58, 181, 254, 0.25);
}

.map-placeholder {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.accordion-button:not(.collapsed) {
    background-color: #3ab5fe;
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(58, 181, 254, 0.25);
}

.cta-section {
    background: linear-gradient(135deg, #3ab5fe, #1c587a);
}

footer {
    background-color: #212529 !important;
}

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

    .hero-section {
        padding-top: 100px;
        text-align: center;
    }

    .infrastructure-section .row {
        text-align: center;
    }

    .tech-item {
        margin-bottom: 20px;
    }

    .page-header {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .contact-section {
        padding: 40px 0;
    }
}

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

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.gear {
    animation: spin 2s linear infinite;
}

html {
    scroll-behavior: smooth;
}

.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: none;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.social-media .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.alert-primary {
    background-color: rgba(58, 181, 254, 0.1);
    border-color: #3ab5fe;
    color: #1c587a;
}

.list-unstyled li {
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        padding-top: 20px;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        display: inline-block;
    }
}

.download-card {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.download-card:hover {
    transform: translateY(-8px);
}

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.recent-item {
    transition: transform 0.2s ease;
}

.recent-item:hover {
    transform: translateY(-2px);
}

.download-category {
    transition: all 0.3s ease;
}

.download-category[style*="display: none"] {
    opacity: 0;
    transform: scale(0.8);
}

.toast-container {
    z-index: 1080;
}

.admin-card {
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.timeline-marker {
    flex-shrink: 0;
}

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.dashboard-section {
    min-height: 60vh;
}