/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #1a365d;
    --secondary: #2d5a8c;
    --accent: #e6af2e;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: #d39e00;
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background-color: #0f2547;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 15px auto;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Banner Section with Video */
.banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.7);
    z-index: -1;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Core Services Section */
.core-services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)), url('assets/css/images/cta-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Clients Slider Section */
.clients-section {
    background-color: white;
    padding: 60px 0;
}

.clients-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.clients-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients-track {
    display: flex;
    animation: slide 30s linear infinite;
    width: calc(200px * 14); /* Double the items for seamless loop */
}

.client-logo {
    flex: 0 0 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-logo:hover {
    filter: grayscale(0%);
}

.client-logo img {
    max-width: 150px;
    max-height: 70px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 7)); /* Move by half the total width */
    }
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--dark);
}

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

.powered-by {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.powered-by a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.powered-by a:hover {
    color: white;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .copyright {
        font-size: 0.8rem;
    }
    
    .powered-by {
        display: block;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 8px;
    }
}

@media (max-width: 576px) {
    .copyright {
        font-size: 0.75rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Inner Page Styles */
.page-header {
    background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.9)), url('assets/css/images/page-header-bg.jpg') no-repeat center center/cover;
    height: 40vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.page-header-content {
    width: 100%;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span {
    margin: 0 10px;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.page-content p {
    margin-bottom: 1.5rem;
}

/* Sidebar Layout */
.sidebar-layout {
    display: flex;
    gap: 40px;
}

.sidebar {
    flex: 0 0 300px;
}

.sidebar-nav {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sidebar-nav-item {
    border-bottom: 1px solid #eee;
}

.sidebar-nav-item:last-child {
    border-bottom: none;
}

.sidebar-nav-link {
    display: block;
    padding: 15px 20px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.sidebar-nav-link:hover, .sidebar-nav-link.active {
    background-color: var(--primary);
    color: white;
}

.sidebar-content {
    flex: 1;
}

.sidebar-panel {
    display: none;
}

.sidebar-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Contact Page Styles */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Management Team Styles */
.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.management-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.management-card:hover {
    transform: translateY(-5px);
}

.management-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--accent);
}

.management-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.management-card h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.management-card .position {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Services Sidebar Layout */
.services-sidebar-layout {
    display: flex;
    gap: 40px;
}

.services-content {
    flex: 1;
}

.services-sidebar {
    flex: 0 0 300px;
}

.service-detail {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.service-detail h3 {
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.service-detail ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-detail li:before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content, .sidebar-layout, .services-sidebar-layout {
        flex-direction: column;
    }
    
    .sidebar, .services-sidebar {
        flex: 1;
        margin-bottom: 40px;
    }
    
    .banner h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .banner h1 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .client-logo {
        flex: 0 0 150px;
        margin: 0 15px;
    }
    
    .clients-track {
        width: calc(150px * 14);
    }
    
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 7));
        }
    }
}

@media (max-width: 576px) {
    .banner h1 {
        font-size: 1.8rem;
    }
    
    .banner p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .client-logo {
        flex: 0 0 120px;
        margin: 0 10px;
    }
    
    .clients-track {
        width: calc(120px * 14);
    }
    
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 7));
        }
    }
}
/* Logo Styles with Fallback */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
}

/* Hide text when image loads successfully */
.logo-img:not([src=""]) ~ .logo-text {
    display: none;
}

/* Show text if image fails to load */
.logo-img[src=""] ~ .logo-text {
    display: flex;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .logo-main {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.9rem;
    }
}
/* Simple Milestones Style */
.milestones-simple {
    margin: 40px 0;
}

.milestones-simple h3 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.milestone-list {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.milestone-simple {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.milestone-simple:last-child {
    border-bottom: none;
}

.milestone-simple i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.1rem;
}

.milestone-simple span {
    color: var(--dark);
}

.milestone-simple strong {
    color: var(--primary);
    font-weight: 700;
}
/* Simple Mission & Vision Styles */
.mission-vision-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.mv-card-simple {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
}

.mv-card-simple h3 {
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.mv-card-simple h3 i {
    margin-right: 10px;
    color: var(--accent);
}

.mv-card-simple p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.mv-card-simple p:last-child {
    margin-bottom: 0;
}

/* Simple Goals Style */
.goals-simple {
    margin: 40px 0 20px 0;
}

.goals-simple h3 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.goals-list {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.goal-simple {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.goal-simple:last-child {
    border-bottom: none;
}

.goal-simple i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.1rem;
}

.goal-simple span {
    color: var(--dark);
    line-height: 1.5;
}
/* Simple Core Values Styles */
.values-list-simple {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.value-item-simple {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.value-item-simple:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.value-item-simple:last-child {
    margin-bottom: 0;
}

.value-item-simple i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.value-text {
    flex: 1;
}

.value-text h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.value-text p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive for Simple Version */
@media (max-width: 768px) {
    .values-list-simple {
        padding: 20px;
    }
    
    .value-item-simple {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .value-item-simple i {
        margin-right: 0;
        margin-bottom: 10px;
        align-self: center;
    }
}

@media (max-width: 576px) {
    .values-list-simple {
        padding: 15px;
    }
    
    .value-item-simple {
        padding: 12px;
    }
    
    .value-item-simple i {
        font-size: 1.3rem;
    }
    
    .value-text h4 {
        font-size: 1.1rem;
    }
}
/* Sticky Sidebar for Services Page */
.services-sidebar-layout {
    display: flex;
    gap: 40px;
    position: relative;
}

.services-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 100px; /* Adjust based on your header height */
    align-self: flex-start;
    height: calc(100vh - 120px); /* Adjust based on your needs */
    overflow-y: auto;
    transition: var(--transition);
}

.services-sidebar::-webkit-scrollbar {
    width: 5px;
}

.services-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.services-sidebar::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.services-sidebar::-webkit-scrollbar-thumb:hover {
    background: #d39e00;
}

/* Ensure the sidebar doesn't overlap on mobile */
@media (max-width: 992px) {
    .services-sidebar-layout {
        flex-direction: column;
    }
    
    .services-sidebar {
        position: relative;
        top: 0;
        height: auto;
        overflow-y: visible;
    }
}

/* Adjust top position based on header height */
@media (max-width: 768px) {
    .services-sidebar {
        top: 80px;
    }
}
/* Simple Standards Compliance Styles */
.standards-simple {
    margin: 40px 0 30px 0;
}

.standards-list {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.standard-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.standard-item:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent);
}

.standard-item:last-child {
    margin-bottom: 0;
}

.standard-item i {
    color: var(--accent);
    font-size: 1.4rem;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.standard-text {
    flex: 1;
}

.standard-text h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.standard-text p {
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive for Simple Version */
@media (max-width: 768px) {
    .standards-list {
        padding: 20px;
    }
    
    .standard-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .standard-item i {
        margin-right: 0;
        margin-bottom: 10px;
        align-self: center;
    }
}

@media (max-width: 576px) {
    .standards-list {
        padding: 15px;
    }
    
    .standard-item {
        padding: 12px;
    }
    
    .standard-item i {
        font-size: 1.2rem;
    }
    
    .standard-text h4 {
        font-size: 1rem;
    }
    
    .standard-text p {
        font-size: 0.9rem;
    }
}