﻿:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --cyan-50: #ecfeff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    overflow-x: hidden;
}

#header {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

    #header.scrolled {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    }

.navbar-nav .nav-link {
    font-size: 15px;
    color: #4b5563;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

    .navbar-nav .nav-link:hover {
        color: var(--teal-600);
    }

    .navbar-nav .nav-link.active {
        color: var(--teal-600);
    }

.btn-primary {
    font-size: 15px;
    background-color: var(--teal-600);
    border-color: var(--teal-600);
    transition: all 0.3s ease;
}

    .btn-primary:active {
        background-color: var(--teal-600) !important;
    }

    .btn-primary:hover {
        background-color: var(--teal-700);
        border-color: var(--teal-700);
    }

.nav-link:hover {
    color: var(--teal-600) !important;
}

.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--teal-50), #ffffff, var(--cyan-50));
}

.hero-title {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    line-height: 1.5;
}

.hero-image-wrapper img {
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.badge {
    font-size: 15px;
    font-weight: 400;
}

/* Section Styles */
.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    line-height: 1.5;
}

.bg-teal-light {
    background-color: var(--teal-100);
}

.text-teal {
    color: var(--teal-600);
}

/* Value Icons */
.value-icon {
    width: 48px;
    height: 48px;
    background-color: var(--teal-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .value-icon i {
        font-size: 24px;
        color: var(--teal-600);
    }

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    padding: 40px;
}

    .service-card:hover {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
    }

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-blue {
    background-color: #DBEAFE;
}

.icon-purple {
    background-color: #F3E8FF;
}

.icon-yellow {
    background-color: #FEF9C3;
}

.icon-red {
    background-color: #FEE2E2;
}

.icon-indigo {
    background-color: #E0E7FF;
}

.icon-green {
    background-color: #DCFCE7;
}

.service-icon i {
    font-size: 28px;
}

.icon-blue i {
    color: #2563EB;
}

.icon-purple i {
    color: #9333EA;
}

.icon-yellow i {
    color: #CA8A04;
}

.icon-red i {
    color: #DC2626;
}

.icon-indigo i {
    color: #4F46E5;
}

.icon-green i {
    color: #16A34A;
}

.fa-star {
    color: #FFD700;
}

/* Benefit Icons */
.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal-100), var(--cyan-50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .benefit-icon i {
        font-size: 28px;
        color: var(--teal-600);
    }

/* Testimonials */
.testimonial-card {
    position: relative;
}

.quote-icon {
    font-size: 80px;
    color: var(--teal-100);
}

    .quote-icon i {
        font-size: 80px;
        color: var(--teal-600);
    }

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

/* Carousel Controls */
.carousel-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #e5e7eb;
    color: #4b5563;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .carousel-control-btn:hover {
        border-color: var(--teal-600);
        color: var(--teal-600);
    }

.carousel-indicator {
    height: 8px !important;
    width: 8px !important;
    background-color: #AAA !important;
}

    .carousel-indicators .active {
        width: 32px !important;
        background-color: var(--teal-600) !important;
    }

/* Footer */
.footer {
    background-color: #1f2937;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-links a:hover {
        color: var(--teal-600);
    }

.social-link {
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background-color: var(--teal-600);
        color: white;
    }

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .navbar-nav .nav-item {
        padding: 0.5rem 0;
    }

    .btn-primary {
        width: 100%;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utilities */
.rounded-4 {
    border-radius: 1rem !important;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.text-muted {
    color: #6b7280 !important;
}