:root {
    --primary-color: #0093AE;
    --secondary-color: #A0A0A0;
    --accent-color: #00C8EC;
    --light-gray: #FFFFFF;
    --background: #ECECEC;
}

body {
    font-family: 'Bahnschrift', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bahnschrift', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

p, a, span {
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

p {
    color: #6c757d !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Navbar */
.navbar {
    background-color: #0093AE !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    max-height: 40px;
    height: auto;
    display: inline-block;
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: white !important;
    padding: 0.5rem 1rem;
}

/* Hero Section */
/* Hero Section */
.section-light {
    background-color: var(--light-gray);
    padding: 3rem 0;
}

.section-light .col-lg-6 {
    max-width: 90%;
    margin: 0 auto;
}

.section-light .container {
    max-width: 100%;
    padding: 0 15px;
}

.section-light p {
    color: #6c757d !important;
}

.hero-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-height: 225px;
    max-height: 550px;
}

.section-dark {
    background-color: var(--background);
    padding: 3rem 0;
}

/* Services Section */
#services .row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--accent-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-outline-secondary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-flag {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    transition: all 0.2s ease;
}
  
.btn-flag:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
  
.btn-flag.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Features */
.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

/* Carousel */
.carousel-control-prev, .carousel-control-next {
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    width: 3rem; 
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: transparent;
    width: 2rem;
    height: 2rem;
}

#workCarousel {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-inner img {
    max-height: 600px;
    object-fit: contain;
    width: auto;
    margin: 0 auto;
}

/* Cards */
.card {
    background-color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.card-body {
    padding: 1.5rem;
    text-align: center;
}

.card:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

/* Testimonials */
#testimonials {
    position: relative;
    background-color: var(--light-gray);
    padding: 3rem 0;
    z-index: 1;
}

/* Badges */
.badge.bg-primary {
    background-color: #0093AE !important;
}

/* Contact Us */
#contact-form form {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #0093AE !important;
    padding: 2rem 0;
    color: white;
}

footer h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 170px;
    height: 2px;
    background-color: white;
}

footer p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    color: white;
    opacity: 0.8;
    text-decoration: none;
}

footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

footer .bi {
    margin-right: 8px;
}

footer .social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

footer .social-icons a {
    margin: 0 !important;
    font-size: 1.5rem;
}

footer .social-icons a:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #00C8EC !important;
    color: white !important;
    border: none !important;
    width: 40px;
    height: 40px;
    border-radius: 5px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease-in-out !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

#backToTop i {
    font-size: 22px;
    line-height: 1;
}

#backToTop:hover {
    background-color: #00C8EC !important;
}

/* Animations */
@keyframes highlight {
    0%, 100% {
      background-color: transparent;
    }
    50% {
      background-color: #00C8EC;
    }
}
  
.ribbon-highlight {
    animation: highlight 0.5s ease-in-out 3;
}

/* Responsive */
@media (max-width: 992px) {
    h1.display-3 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .section-light p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .navbar-contact {
        display: none !important;
    }
    
    .social-icons, 
    footer .d-flex {
        justify-content: center !important;
    }
    
    footer {
        text-align: center;
    }
    
    footer h5:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    footer .col-md-4 {
        margin-bottom: 2rem;
    }
    
    footer .col-md-4:last-child {
        margin-bottom: 0;
    }
    
    footer .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1.display-3 {
        font-size: 2rem;
    }
    
    .section-light .col-lg-6 {
        max-width: 100%;
    }
}