:root {
    --primary-color: #0d6efd;
    --secondary-color: #0dcaf0;
    --gradient-primary: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    --gradient-light: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 202, 240, 0.1) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.brand-name {
    font-weight: bold;
    font-size: 1.25rem;
    color: #212529;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.7rem;
    color: #6c757d;
    line-height: 1;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(13, 202, 240, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(30px, 10px) scale(1.05);
    }
}

.hero-card {
    animation: fadeInUp 0.8s ease-out 0.3s both;
    padding: 2rem;
    border: 1px solid #dedede;
    background-image: linear-gradient(to bottom right, #2563eb, #06b6d4);
    rotate: 3deg;
    position: relative;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 0.25);
    border-radius: 1rem;
    transform: translate(0, 0) rotate(3deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.hero-card .card {
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.hero-card .card:hover {
    transform: rotate(0deg);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #198754;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Badges */
.badge.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.badge.bg-info-light {
    background-color: rgba(13, 202, 240, 0.1) !important;
    color: #0dcaf0;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

/* CTA Section */
.cta-section {
    background-image: linear-gradient(to right, #2563eb , #06b6d4);
}

/* Footer */
.footer{
    background-color: rgb(17 24 39 / 1);
}
.brand-icon-footer {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary); 
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.brand-name-footer {
    font-weight: bold;
    font-size: 1.25rem;
    color: #fff;
    line-height: 1;
}

.brand-tagline-footer {
    font-size: 0.7rem;
    color: #adb5bd;
    line-height: 1;
}
.footer .corp-info{
    color: rgb(156 163 175 / 1);
}
.footer ul li a{
    color: #d1d5db;
}
.footer a:hover {
    color: rgb(96 165 250 / 1);
}
.footer h5{
    color: #fff;
}
.footer .text-corp-contact {
    color: #d1d5db;
}
.footer .social-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.25rem;
    width: 2.25rem;
    border-radius: 9999px;
    background-color: rgb(31 41 55 / 1);
}
.footer .social-btn > i{
    color: #fefefe;
}
.footer .text-footer-copyright{
    color: #d1d5db;
}
.footer .text-icon-primary{
    color: rgb(96 165 250 / 1);
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out both;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}