/* Global Design tokens for Sky Function AE */
:root {
    --color-primary: #043960;      /* Dark/Navy Blue */
    --color-secondary: #6EC1E4;    /* Light/Sky Blue */
    --color-accent: #61CE70;       /* Accent Green */
    --color-text-dark: #333333;
    --color-text-muted: #7A7A7A;   /* Muted Gray */
    --color-bg-light: #F8F9FA;
    --font-heading: 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
}

/* Header Navbar Styles */
.navbar {
    transition: all 0.3s ease;
}
.logo-main {
    max-height: 55px;
    width: auto;
}
.nav-link {
    font-family: var(--font-heading);
    color: var(--color-primary) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--color-secondary) !important;
}

/* Button Styles */
.btn-accent {
    background-color: var(--color-accent);
    border: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background-color: #4eb95c;
    border-color: #4eb95c;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(97, 206, 112, 0.3);
}
.btn-primary-blue {
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}
.btn-primary-blue:hover {
    background-color: #032a48;
    color: white;
    border-color: #032a48;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(4, 57, 96, 0.3);
}
.btn-outline-primary-blue {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}
.btn-outline-primary-blue:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Footer Section */
.bg-dark-blue {
    background-color: var(--color-primary) !important;
}
.text-secondary-blue {
    color: var(--color-secondary) !important;
}
.logo-footer {
    max-height: 50px;
    filter: brightness(1.2);
}
.footer-links li a {
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links li a:hover {
    color: var(--color-secondary) !important;
    padding-left: 5px;
}
.social-icon {
    font-size: 1.2rem;
    transition: color 0.2s ease;
}
.social-icon:hover {
    color: var(--color-secondary) !important;
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    z-index: 1000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    border: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.back-to-top:hover {
    background-color: var(--color-primary);
    transform: translateY(-5px);
}

/* Hero Sections */
.hero-home {
    background: linear-gradient(135deg, rgba(4, 57, 96, 0.92) 0%, rgba(4, 57, 96, 0.75) 100%), url('/assets/images/why-us-min.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0;
}
.hero-inner {
    background: linear-gradient(135deg, var(--color-primary) 0%, #03253f 100%);
    color: white;
    padding: 85px 0;
}

/* Service Cards */
.service-card {
    background-color: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--color-secondary);
}
.service-card .icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(110, 193, 228, 0.1);
    color: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.service-card:hover .icon-box {
    background-color: var(--color-primary);
    color: white;
}

/* Timeline Components */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--color-secondary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--color-primary);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}
.left-timeline {
    left: 0;
}
.right-timeline {
    left: 50%;
}
.right-timeline::after {
    left: -10px;
}
.timeline-content {
    padding: 20px 30px;
    background-color: var(--color-bg-light);
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item::after {
        left: 21px;
    }
    .right-timeline {
        left: 0%;
    }
}

/* Testimonials Layout */
.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-card img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-secondary);
}

/* Client logos slider */
.logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.logo-item img {
    max-height: 48px;
    opacity: 0.65;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Team Card styling */
.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.team-img-wrapper {
    height: 280px;
    overflow: hidden;
}
.team-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}
.team-card:hover .team-img {
    transform: scale(1.05);
}
