:root {
    --primary-color: #005b96;
    --primary-light: #3282b8;
    --primary-dark: #0f4c75;
    --secondary-color: #1b262c;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --dark-color: #212529;
    --text-color: #333333;
    --text-muted: #6c757d;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
}

.section-title {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 8px 15px !important;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}


/* Hero Sections */
.hero-section {
    position: relative;
    min-height: 60vh;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}


.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: var(--white-color);
    padding: 80px 0 60px;
    text-align: center;
}


/* Cards */
.service-card {
    transition: all 0.3s;
    border-radius: 8px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card {
    transition: all 0.3s;
    border-radius: 8px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Icons */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Backgrounds */
.bg-light {
    background-color: var(--light-color) !important;
}

.bg-white {
    background-color: var(--white-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Contact Info Boxes */
.contact-info-box {
    transition: all 0.3s;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section, .page-hero {
        padding: 60px 0;
    }
    
    .section-title::after {
        width: 40px;
    }
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
  }
  
  .delay-1 {
    animation-delay: 0.3s;
  }
  
  .delay-2 {
    animation-delay: 0.6s;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  