:root {
    --dark-marine: #333333;      /* Changed from #0B2545 to dark gray */
    --medium-marine: #555555;    /* Changed from #13315C to medium gray */
    --light-marine: #777777;     /* Changed from #134074 to light gray */
    --accent-blue: #00AAFF;      /* Changed from #0094C6 to brighter blue */
    --accent-light: #FFFFFF;     /* Changed from #EEF4ED to white */
    --text-dark: #333333;
    --text-light: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--medium-marine), var(--accent-blue));
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
}

/* Navigation */
.uk-navbar-container {
    background: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 980;
    transition: all 0.3s ease;
}

.uk-navbar-container.uk-sticky-fixed {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}

.uk-navbar-nav > li > a {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 0 25px;
    position: relative;
}

.uk-navbar-container.uk-sticky-fixed .uk-navbar-nav > li > a {
    color: var(--medium-marine);
}

.uk-navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 25px;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: width 0.3s;
}

.uk-navbar-nav > li:hover > a::after {
    width: calc(100% - 50px);
}

.uk-navbar-nav > li.uk-active > a {
    color: var(--accent-blue);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  display: flex;
  align-items: center;
  position: relative;
  background-color: #3296fb !important;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    animation: fadeInUp 1s both;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s 0.2s both;
}

.hero-btn {
    animation: fadeInUp 1s 0.4s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(85, 85, 85, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(85, 85, 85, 0.4);
    background: var(--accent-blue);
    color: white;
    text-decoration: none;
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    border-radius: 30px;
    padding: 10px 35px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: white;
    text-decoration: none;
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--medium-marine);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

.section-title::after {
    content: '';
    width: 70px;
    height: 3px;
    background: var(--accent-blue);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--accent-light);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: #F8F8F8;
    z-index: -1;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.about-text {
    padding: 40px;
}

.highlight {
    color: var(--accent-blue);
    font-weight: 700;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #F8F8F8;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--medium-marine);
}

/* Tabs Section */
.tabs-section {
    padding: 100px 0;
    background-color: var(--accent-light);
}

.uk-subnav-pill > * > a {
    border-radius: 30px;
    padding: 10px 25px;
    transition: all 0.3s;
    font-weight: 500;
}

.uk-subnav-pill > .uk-active > a {
    background-color: var(--medium-marine) !important;
    color: #fff;  
}

.tab-card {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #F8F8F8;
    position: relative;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-card .quote {
    font-size: 1.2rem;
    font-style: italic;
    position: relative;
}

.testimonial-card .quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-blue);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
}

.cta-content {
    text-align: center;
}

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

.cta-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn-white {
    background: white;
    color: var(--medium-marine);
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* Footer */
footer {
    background-color: var(--dark-marine);
    color: white;
    padding: 80px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-info {
    margin-bottom: 40px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-blue);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-blue);
    text-decoration: none;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
}

.copyright {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(85, 85, 85, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(85, 85, 85, 0.4);
}

/* Responsive Styling */
@media (max-width: 960px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-section::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-icon {
        height: 150px;
    }
}