/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');

@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}
/*  --dark-color: #1d1d1d;  */ /* Very dark gray or near black */
/*  --dark-color: #595758;  */ /* Dark gray with a hint of brown */
/*  --accent-color: #e4bb7d;  */ /* Light beige or tan color */
/*  --accent-color: #083458;  */ /* Deep blue color */

:root {
    --dark-color: #1B5E20;
    --accent-color: #E88A1A;
    --navy-color: #0D2B5E;
    --green-light: #4A8C3F;
    --gray-color: #848484;
    --font-1: 'Roboto', sans-serif;
    --font-2: 'Lato', sans-serif;
}

.red-bg {
  background-color: #aa0b0f;
}

.red-color {
  color: #aa0b0f;
}

.navy-bg {
  background-color: #0D2B5E;
}

.green-bg {
  background-color: #1B5E20;
}

/* Animation for sections with fade-in and upward motion */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General fade-in and upward animation */
.animate-fadeInUp {
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s ease-out;
}

.animate-fadeInUp.visible {
    visibility: visible;
    animation: fadeInUp 1.5s ease-out forwards;
}

/* Card-specific animation */
.card-animate {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.card-animate.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1.5s ease-out forwards;
}

/* Optional: Style for elements to animate on scroll */
.animated-section,
.animate-on-scroll {
    opacity: 0;
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.animated-section.visible,
.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}



/* Animation for h1 coming from the left with a bounce */
@keyframes slideFromLeftWithBounce {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    80% {
        transform: translateX(0);
        opacity: 1;
    }
    90% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Animation for h1 coming from the right with a bounce */
@keyframes slideFromRightWithBounce {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    80% {
        transform: translateX(0);
        opacity: 1;
    }
    90% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Animation for elements coming from below with a bounce */
@keyframes slideFromBottomWithBounce {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    80% {
        transform: translateX(0);
        opacity: 1;
    }
    70% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Initially, no animation is applied */
#animated-section h5,
#animated-section h3,
#animated-section .btn,
.carousel-item h1 {
    opacity: 1;
}

/* Apply animation when the section becomes visible */
#animated-section.in-view h5,
.in-view .carousel-item.active h1:nth-child(1) {
    animation: slideFromLeftWithBounce 1.5s ease-in-out forwards;
}

#animated-section.in-view h3,
.in-view .carousel-item.active h1:nth-child(2) {
    animation: slideFromRightWithBounce 1.5s ease-in-out forwards;
}

#animated-section.in-view .btn {
    animation: slideFromBottomWithBounce 1.5s ease-in-out forwards;
}



body {
    background-color: var(--dark-bg);
}


h1 {
    font-size: 100px;
}

h2 {
    font-size: 72px;
}

h3 {
    font-size: 45px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

ul {
    list-style: none;
}

img {
    object-fit: cover;
}

section {
    background-size: cover;
    background-position: center;
}

button,
a[type="button"] {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
}

a:hover {
    color: var(--accent-color);
}

button:hover,
a[type="button"]:hover {
    background-color: var(--navy-color) !important;
    transition: all 0.3s ease;
}

a {
    text-decoration: none;
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}


.form input,
.form textarea {
    background-color: white;
    /* color: var(--accent-color); */
    border-width: 1px;
    border-style: solid;
    border-color: #343434;
    border-radius: 0;
    width: 100%;
}

.form input:focus,
.form textarea:focus {
    background-color: white;
    color: var(--accent-color);
    border: solid 1px var(--accent-color);
    box-shadow: none;
}

.form input::placeholder,
.form textarea::placeholder {
    color: #49494993;
}

.form .submit_form {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: var(--bs-dark);
}

.form .submit_form:hover {
    background-color: white;
    color: var(--navy-color);
}

.maps {
    width: 100%;
    aspect-ratio: 16/9;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

#header {
    transition: all 0.5s ease;
}

.nav-link {
  color: #1B5E20;
  font-weight: bolder;
  font-size: 1.2rem;
}

.nav-item {
    padding-block: 1rem;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.nav-link:focus {
    color: var(--accent-color) !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-menu {
    background-color: white;
    border-radius: 0;
    border: none;
    padding: 0;
}

.dropdown-item {
    color: black;
    padding-block: 1rem;
    font-weight: bolder;
    font-size: 1rem;
}

.dropdown-item.active {
    color: var(--accent-color);
    background-color: transparent;
}

.dropdown-item:hover {
    color: var(--accent-color);
    background-color: var(--secondary-dark);
}

.dropdown-item:focus {
    background-color: var(--secondary-dark);
    color: var(--accent-color);
}

.section {
    padding: 2em;
    overflow: hidden;
}

.r-container {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

.button-outline-white {
    border-width: 1px;
    border-style: solid;
    border-color: white;
    color: white;
    transition: all 0.3s ease;
}

.button-outline-white:hover {
    background-color: var(--navy-color);
    border-color: var(--navy-color);
    color: white;
}

.button-outline-accent {
    border-width: 1px;
    border-style: solid;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.button-outline-accent:hover {
    background-color: var(--navy-color);
    border-color: var(--navy-color);
    color: white;
}

.background-1 {
    background-color: transparent;
    /* background-image: linear-gradient(90deg, #F3F3F3 45%, #F2295B00 0%); */
    /* background-image: linear-gradient(90deg, #aa0b0f 0%, #f15c22 50%, #00467a 50%, #47c7f4 100%); */
    background-image: linear-gradient(90deg, #aa0b0f 0%, #f15c22 45%, transparent 45%, transparent 100%);
}

.background-2 {
    background-color: transparent;
    background-image: linear-gradient(270deg, #F3F3F3 58%, #F2295B00 0%);
}

.background-3 {
    background-color: transparent;
    background-image: linear-gradient(0deg, #E4BB7D00 49%, #f3f3f3 0%);
}

.background-4 {
    background-color: transparent;
    /* background-image: linear-gradient(90deg, #E4BB7D00 53%, #707070 0%); */
    background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #00467a 50%, #47c7f4 100%);
}

.background-5 {
    background-color: transparent;
    background-image: linear-gradient(270deg, #E4BB7D00 88%, #f3f3f3 0%);
}

.footer-bg {
    background-color: #F3F3F3;
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
}

.bg-dark-color {
    background-color: white;
}

.bg-dark-colors {
    background-color: var(--dark-color);
};

.bg-dark-hover {
    background-color: white;
    color: var(--dark-color);
    transition: all 0.5s;
}

.bg-dark-color-hover:hover {
    background-color: var(--dark-color);
}

.bg-dark-hover:hover {
    background-color: var(--dark-color);
    color: white;
}

.accent-color {
    color: var(--accent-color);
}

.border-accent-color {
    border-color: var(--accent-color) !important;
}

.border-accent-color-hover:hover {
    border-color: var(--accent-color);
}

.text-gray {
    color: var(--gray-color) !important;
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #000;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay-2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    background-position: center center;
    opacity: 0.75;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.bg-overlay {
    background-color: #0000009c;
}

.logo-container {
    max-width: 200px;
}

.divider {
    display: flex;
    align-items: center;
}

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid var(--accent-color);
    max-width: 80px;
    min-width: 80px;
}

.divider-before::before {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid var(--accent-color);
    max-width: 80px;
    min-width: 80px;
}

.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

/* .image-infinite-bg { */
/*    height: 100vh;*/
/* } */

/* ==========================================
   HERO CAROUSEL
   ========================================== */

.hero-carousel {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1B5E20;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 43, 94, 0.85) 0%, rgba(27, 94, 32, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease forwards;
}

.hero-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease 0.3s forwards;
}

.hero-btn {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease 0.6s forwards;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Fade-in animation for slide content */
@keyframes heroFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation arrows */
.hero-nav {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-nav:hover {
    opacity: 1;
    background-color: transparent !important;
}

.hero-nav .carousel-control-prev-icon,
.hero-nav .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 12px;
    background-size: 50%;
}

/* Pagination dots */
/* ==========================================
   HERO CAROUSEL DOTS - Override Bootstrap
   ========================================== */

.hero-dots {
    position: absolute;
    bottom: 1.5rem !important;
    left: 0;
    right: 0;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.hero-dots button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    border: none !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    transition: background-color 0.4s ease, transform 0.3s ease !important;
}

.hero-dots button.active {
    background-color: var(--accent-color) !important;
    transform: scale(1.2);
}

.hero-dots button:hover {
    background-color: rgba(255, 255, 255, 0.85) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-slide {
        height: 70vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: 60vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.8rem;
    }

    .hero-nav {
        width: 36px;
        height: 36px;
    }

    .hero-nav .carousel-control-prev-icon,
    .hero-nav .carousel-control-next-icon {
        padding: 8px;
    }

    .hero-dots {
        bottom: 1rem !important;
        gap: 8px;
    }

    .hero-dots button {
        width: 8px !important;
        height: 8px !important;
    }
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.border-dark-gray {
    border-color: var(--navy-color) !important;
}

.navbar-toggler:focus {
    background-color: transparent;
}

.card {
    border: none;
}

.card .card-body {
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: -1.5rem;
    border-radius: 15px;
}

.r-progress {
    --value: 17;
    --progress-color: var(--accent-color);
    --secondary-progress-color: #121212;
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 3px;
    background-color: var(--secondary-progress-color);
    display: flex;
    /* border-radius: 3px; */
    /* overflow: hidden; */
}

.r-progress-bar .progress-value {
    height: 100%;
    width: calc(var(--progress) * 1%);
    background-color: var(--progress-color);
    position: relative;
    /* border-radius: 3px; */
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    left: calc((var(--progress) * 1%) - 1rem);
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: rgb(0, 0, 0);
    font-size: 15px;
    line-height: 1.2;
    /* font-weight: 700; */
    font-family: var(--font-1);
    top: -2rem;
}

.circular-progress {
    position: relative;
    width: 6rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: conic-gradient(var(--progress-color) calc(var(--progress) * 3.6deg), var(--secondary-progress-color) 0deg);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
}

.circular-progress .progress-value {
    background-color: #ffffff;
    position: absolute;
    width: 90%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-direction: column-reverse;
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
}

.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    font-size: 30px;
    font-weight: bold;
    color: var(--progress-color);
    z-index: 1;
}

.bg-attach-fixed {
    background-attachment: fixed;
}

.social-item {
    border-radius: 0;
    aspect-ratio: 1/1;
    font-size: 20px;
    width: 2em;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
}

.social-item:hover {
    background-color: var(--dark-color);
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.breadcrumb .breadcrumb-item>a {
    color: var(--accent-color);
}

.breadcrumb .breadcrumb-item.active {
    color: white;
}

.breadcrumb .breadcrumb-item.active::before {
    color: white;
}

.swiper-pagination {
    margin-block: 1rem;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: black;
}

.video-container {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 5rem;
    background-color: transparent;
    border: solid 2px white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.border-custom {
    border-width: 0px 1px 0px 0px;
    border-color: var(--accent-color);
    border-style: solid;
}

.request-loader {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50% !important;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.request-loader:hover {
    color: #464646;
    background-color: var(--accent-color);
}

.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: rgb(238, 238, 238);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.overlay-card {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 460px;
}

.overlay-card .overlay-body {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000 0, rgba(0, 0, 0, 0.404) 60%);
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.5s ease;
    transform-origin: bottom;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay-card:hover .overlay-body {
    opacity: 1;
    transform: scaleY(1);
}

.btn-outline-circle {
    border: solid 1px white;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.btn-outline-circle:hover {
    background-color: var(--navy-color) !important;
    border-color: var(--navy-color) !important;
    color: white;
    transition: all 0.3s ease;
}

.accordion-image {
    flex: 1;
    margin: 0;
    padding: 0;
    transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.accordion-image:hover {
    flex-basis: 10vw;
}

/* ==========================================
   EXPERIENCE THE BEST SECTION
   ========================================== */

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.experience-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.experience-content {
    padding: 1rem 0;
}

.experience-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy-color);
    margin-bottom: 0.75rem;
}

.experience-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}

.experience-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.why-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--dark-color);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.why-text {
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .experience-image img {
        height: 350px;
    }

    .experience-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .experience-image img {
        height: 280px;
    }

    .experience-title {
        font-size: 1.75rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-check {
        width: 24px;
        height: 24px;
        font-size: 0.6875rem;
    }
}

/* ==========================================
   SERVICES SECTION - Staggered Card Layout
   ========================================== */

.services-header {
    max-width: 700px;
    margin: 0 auto;
}

.services-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy-color);
    margin-bottom: 0.75rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.services-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem 0;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card-offset {
    margin-top: 2.5rem;
}

.service-card-accent {
    height: 5px;
    background: linear-gradient(90deg, var(--dark-color), var(--green-light));
    width: 100%;
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-body {
    padding: 1.75rem;
}

.service-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(27, 94, 32, 0.12);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 0.75rem;
}

.service-card-text {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-link .link-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card-link:hover {
    color: var(--navy-color);
}

.service-card-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Card Hover Effects */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-card-offset {
        margin-top: 0;
    }

    .services-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-title {
        font-size: 1.75rem;
    }

    .service-card-body {
        padding: 1.25rem;
    }

    .service-number {
        font-size: 2rem;
    }
}

.outline-text {
    -webkit-text-stroke: 1px white;
}

.link {
    color: gray;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    box-shadow: none;
}

.accordion-button.accent-color:not(.collapsed) {
    color: var(--accent-color);
}

.accordion-button.accent-color.collapsed {
    color: black;
}

.accordion-item {
    border: none;
}

.team-container {
    display: flex;
    flex-direction: column;
}

.team-image {
    position: relative;
    object-position: center;
}

.team-image .team-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #0000006f;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.5s;
}

.team-image:hover .team-overlay {
    transform: scaleY(1);
}

.team-description {
    margin-top: -1.5em;
    background-color: rgba(255, 255, 255, 0.459);
    border-radius: 2px;
    padding: 1.75rem;
    position: relative;
}

.btn-accent-dark {
    background-color: var(--accent-color);
    color: white;
}

.btn-accent-light {
    background-color: var(--accent-color);
    color: white;
    font-weight: bolder;
}

.btn-accent-light:hover {
    background-color: var(--navy-color);
    color: #ffffff;
    font-weight: bolder;
    border-color: var(--navy-color);
    transition: all 0.3s ease;
}

.btn-accent-dark:hover {
    background-color: var(--navy-color);
    color: white;
    border-color: var(--navy-color);
    transition: all 0.3s ease;
}

.pricing-container{
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 1.75rem;
    background-color: white;
}
.pricing-tag {
    position: absolute;
    background-color: var(--dark-color);
    right: 0;
    height: 5rem;
    width: 85%;
    top: 8.7rem;
}

.pricing-price {
    display: flex;
    flex-direction: row;
    color: white;
    height: 5rem;
    z-index: 2;
}

.pricing-container.exclusive{
    background-color: var(--dark-color);
    color: white !important;
    margin-top: -3rem;
}

.pricing-container.exclusive .pricing-tag {
    background-color: var(--accent-color);
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 0.7;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 1px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.5, 1.5, 1);
        transform-origin: center;
        border-width: 17px;
    }
}


@media only screen and (max-width:993px) {
    h1 {
        font-size: 68px;
    }

    h2 {
        font-size: 56px;
    }

    h3 {
        font-size: 36px;
    }

    h5 {
        font-size: 24px;
    }

    h6 {
        font-size: 14px;
    }

    .section {
        padding: 6em 2em 6em 2em;
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }

    #header {
        background: rgba(19, 19, 19, 0.88);
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    .border-custom {
        border-width: 0px 0px 1px 0px;
    }

    .dropdown-menu {
        background-color: var(--dark-color);
    }

    .dropdown-item {
        color: white;
    }

    .nav-item {
        padding-block: 0.3rem;
    }
    .pricing-container.exclusive{
        margin-top: 0;
    }
}

/* ==========================================
   ABOUT US SECTION STYLES
   ========================================== */

/* About Images */
.about-img-wrapper {
    overflow: hidden;
    border-radius: 4px;
}

.about-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.05);
}

/* Vision & Mission Cards */
.vision-mission-card {
    border-left: 4px solid var(--dark-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.vm-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: var(--dark-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Core Values Cards */
.value-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.value-card:hover {
    border-color: var(--dark-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.15);
}

.value-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Why Choose Us Cards */
.why-card {
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-left-color: var(--dark-color);
    transform: translateX(5px);
}

/* Industries Cards */
.industry-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.industry-card:hover {
    background-color: var(--dark-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.15);
}

.industry-card:hover h6,
.industry-card:hover i {
    color: white !important;
}

/* Responsive - About Section */
@media (max-width: 992px) {
    .about-img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .about-img {
        height: 200px;
    }

    .vm-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
}

/* ==========================================
   PARTNERS SECTION - Infinite Carousel
   ========================================== */

.partners-section {
    background-color: #f8f9fa;
    overflow: hidden;
}

.partners-header {
    max-width: 700px;
    margin: 0 auto;
}

.partners-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy-color);
    margin-bottom: 0.75rem;
}

.partners-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.partners-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Carousel Container */
.partners-carousel {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.partners-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
}

.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

.partner-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
}

.partner-logo {
    height: 90px;
    max-width: 180px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(20%);
    mix-blend-mode: multiply;
    background: transparent !important;
}

.partner-logo:hover {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1.05);
}

/* Scroll Animation */
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .partners-track {
        animation: none;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .partners-title {
        font-size: 2rem;
    }

    .partner-logo {
        height: 70px;
        max-width: 150px;
    }

    .partner-logo-item {
        padding: 0 2rem;
    }
}

@media (max-width: 576px) {
    .partners-title {
        font-size: 1.75rem;
    }

    .partner-logo {
        height: 55px;
        max-width: 120px;
    }

    .partner-logo-item {
        padding: 0 1.5rem;
    }
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
    background: var(--navy-color);
    color: #fff;
}

.footer-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--dark-color), var(--green-light));
}

.footer-main {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.25fr 1.5fr;
    gap: 3rem;
}

/* Logo */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* About */
.footer-about {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Headings */
.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--dark-color);
}

/* Navigation Links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link .link-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
    font-size: 0.75rem;
}

.footer-link:hover {
    color: var(--dark-color);
}

.footer-link:hover .link-arrow {
    transform: translateX(4px);
}

/* Contact Information */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    color: var(--dark-color);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-credit {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-credit a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-main {
        padding: 4rem 0 2.5rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .footer-logo {
        height: 60px;
    }
}

/* ==========================================
   CONTACT US SECTION
   ========================================== */

.contact-content {
    max-width: 900px;
}

.contact-desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.industries-section {
    margin-bottom: 2.5rem;
}

.industries-heading {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}

.industries-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 2rem;
}

.industry-item {
    font-size: 0.9375rem;
    color: #fff;
    line-height: 1.5;
}

.contact-cta {
    display: flex;
    justify-content: flex-start;
}

/* Responsive */
@media (max-width: 992px) {
    .industries-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industries-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-desc {
        font-size: 0.9375rem;
    }
}

/* ==========================================
   ABOUT US HERO SECTION
   ========================================== */

.about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 43, 94, 0.9) 0%, rgba(27, 94, 32, 0.7) 100%);
}

.about-hero-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-color), var(--accent-color));
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    text-align: left;
    width: 100%;
}

.about-hero-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease forwards;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
    max-width: 650px;
}

.about-hero-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
    max-width: 650px;
}

.about-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.breadcrumb-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #fff;
}

.breadcrumb-separator {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-active {
    font-size: 0.875rem;
    color: var(--dark-color);
    font-weight: 600;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--dark-color);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.about-hero-btn:hover {
    background: var(--navy-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-hero-btn .btn-arrow {
    transition: transform 0.3s ease;
}

.about-hero-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-hero {
        min-height: 450px;
    }

    .about-hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        min-height: 380px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-text {
        font-size: 0.9375rem;
    }

    .about-hero-content {
        padding: 2rem 0;
    }
}

/* ==========================================
   OUR HISTORY SECTION
   ========================================== */

/* History Hero */
.history-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.history-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.history-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.history-hero-image:hover img {
    transform: scale(1.03);
}

.history-hero-content {
    padding: 2rem 0;
}

.history-hero-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.history-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.history-hero-text {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.8;
}

.history-hero-text strong {
    color: var(--dark-color);
}

/* Statistics Cards */
.history-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--navy-color), var(--dark-color));
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(13, 43, 94, 0.25);
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.stat-icon i {
    font-size: 1rem;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Vision Cards */
.history-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.mission-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 3px solid var(--dark-color);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--dark-color), var(--green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.mission-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.mission-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 0.75rem;
}

.mission-text {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Goals Cards */
.history-goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.goal-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid var(--dark-color);
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.goal-icon {
    width: 40px;
    height: 40px;
    background: rgba(27, 94, 32, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.goal-icon i {
    font-size: 1rem;
    color: var(--dark-color);
}

.goal-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 0.5rem;
}

.goal-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .history-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .history-hero-image img {
        height: 350px;
    }

    .history-hero-title {
        font-size: 2rem;
    }

    .history-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .history-mission-grid {
        grid-template-columns: 1fr;
    }

    .history-goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .history-hero-image img {
        height: 280px;
    }

    .history-hero-title {
        font-size: 1.75rem;
    }

    .history-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .history-goals-grid {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .goal-card {
        padding: 1.5rem;
    }
}

/* ==========================================
   TEAM PAGE
   ========================================== */

/* Featured Executive */
.featured-executive {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    position: relative;
}

.featured-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-content {
    padding: 2rem 0;
}

.featured-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.featured-name {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 0.5rem;
}

.featured-position {
    display: block;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.featured-bio {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Team Header */
.team-header {
    max-width: 700px;
    margin: 0 auto;
}

.team-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy-color);
    margin-bottom: 0.75rem;
}

.team-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.team-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.team-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.3s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-body {
    padding: 1.75rem;
}

.team-card-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
}

.team-card:hover .team-card-name {
    color: var(--dark-color);
}

.team-card-position {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.team-card-bio {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-executive {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-img {
        height: 400px;
    }

    .featured-name {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .featured-img {
        height: 350px;
    }

    .featured-name {
        font-size: 1.75rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card-image {
        height: 250px;
    }

    .team-title {
        font-size: 1.75rem;
    }

    .team-card-body {
        padding: 1.25rem;
    }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

/* Split Layout */
.contact-split {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 2rem;
}

/* Info Card */
.contact-info-card {
    background: linear-gradient(135deg, var(--navy-color), var(--dark-color));
    border-radius: 20px;
    padding: 2.5rem;
    color: #fff;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-info-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1rem;
    color: #fff;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-info-value {
    font-size: 0.9375rem;
    color: #fff;
    line-height: 1.5;
}

.contact-social {
    display: flex;
    gap: 0.75rem;
}

.contact-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
    transform: translateY(-3px);
}

/* Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 0.5rem;
}

.contact-form-text {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-color);
}

.form-input {
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.9375rem;
    color: #333;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: var(--dark-color);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
    background: #fff;
}

.required-field.valid {
    border-color: #28a745 !important;
}

.required-field.invalid {
    border-color: #dc3545 !important;
}

.required {
    color: #dc3545;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

/* FAQ Section */
.faq-header {
    max-width: 600px;
    margin: 0 auto;
}

.faq-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy-color);
    margin-bottom: 0.75rem;
}

.faq-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--dark-color);
}

.faq-icon {
    font-size: 0.875rem;
    color: var(--dark-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        order: 1;
    }

    .contact-form-card {
        order: 2;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.75rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1rem;
    }
}

/* ========================
   SERVICES PAGE
   ======================== */

/* Hero Section */
.sv-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sv-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.92) 0%, rgba(13, 43, 94, 0.88) 100%);
}

.sv-hero-content {
    padding: 5rem 0 4rem;
    max-width: 650px;
}

.sv-hero-tag {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.4rem 1.25rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}

.sv-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.sv-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sv-breadcrumb {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.sv-breadcrumb li {
    color: rgba(255, 255, 255, 0.6);
}

.sv-breadcrumb li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sv-breadcrumb li a:hover {
    color: var(--accent-color);
}

.sv-breadcrumb li.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Intro Section */
.sv-intro-section {
    background: #f8faf8;
}

.sv-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sv-intro-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.sv-intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sv-intro-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.sv-intro-stats {
    display: flex;
    gap: 2rem;
}

.sv-intro-stat {
    display: flex;
    flex-direction: column;
}

.sv-intro-stat-num {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
}

.sv-intro-stat-label {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sv-intro-image {
    position: relative;
}

.sv-intro-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.sv-intro-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--dark-color), var(--green-light));
    border-radius: 16px;
    z-index: 1;
    opacity: 0.15;
}

/* Services Grid Section */
.sv-services-section {
    background: #fff;
}

.sv-services-header {
    margin-bottom: 3rem;
}

.sv-services-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.sv-services-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 0.75rem;
}

.sv-services-desc {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.sv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* Service Card */
.sv-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.sv-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(27, 94, 32, 0.15);
    border-color: var(--dark-color);
}

.sv-service-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sv-service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sv-service-card:hover .sv-service-card-img img {
    transform: scale(1.08);
}

.sv-service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 94, 32, 0.0) 0%, rgba(27, 94, 32, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sv-service-card:hover .sv-service-card-overlay {
    opacity: 1;
}

.sv-service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(15px);
}

.sv-service-card:hover .sv-service-card-btn {
    transform: translateY(0);
}

.sv-service-card-btn:hover {
    background: var(--dark-color);
    color: #fff;
}

.sv-service-card-body {
    padding: 1.5rem;
    position: relative;
}

.sv-service-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--dark-color), var(--green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    top: -36px;
    margin-bottom: -20px;
    box-shadow: 0 4px 16px rgba(27, 94, 32, 0.3);
}

.sv-service-card-icon i {
    font-size: 1.1rem;
    color: #fff;
}

.sv-service-card-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.sv-service-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.sv-service-card-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.sv-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--dark-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sv-service-card-link:hover {
    color: var(--accent-color);
}

.sv-link-arrow {
    transition: transform 0.3s ease;
}

.sv-service-card-link:hover .sv-link-arrow {
    transform: translateX(4px);
}

/* CTA Section */
.sv-cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.sv-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sv-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 43, 94, 0.92) 0%, rgba(27, 94, 32, 0.88) 100%);
}

.sv-cta-content {
    max-width: 650px;
    margin: 0 auto;
}

.sv-cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.sv-cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.sv-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sv-cta-btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.sv-cta-btn-primary:hover {
    background: #fff;
    color: var(--dark-color);
}

.sv-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.sv-cta-btn-secondary:hover {
    background: #fff;
    color: var(--dark-color);
    border-color: #fff;
}

/* ========================
   SERVICES PAGE RESPONSIVE
   ======================== */

@media (max-width: 992px) {
    .sv-hero-title {
        font-size: 2.25rem;
    }

    .sv-intro-grid {
        grid-template-columns: 1fr;
    }

    .sv-intro-image {
        order: -1;
    }

    .sv-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-cta-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .sv-hero-section {
        min-height: 320px;
    }

    .sv-hero-title {
        font-size: 1.85rem;
    }

    .sv-hero-desc {
        font-size: 0.95rem;
    }

    .sv-intro-stats {
        gap: 1.25rem;
    }

    .sv-intro-stat-num {
        font-size: 1.5rem;
    }

    .sv-services-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .sv-hero-section {
        min-height: 280px;
    }

    .sv-hero-content {
        padding: 3.5rem 0 3rem;
    }

    .sv-hero-title {
        font-size: 1.6rem;
    }

    .sv-services-grid {
        grid-template-columns: 1fr;
    }

    .sv-service-card-img {
        height: 200px;
    }

    .sv-intro-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .sv-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sv-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================
   SERVICE DETAILS PAGE
   ======================== */

/* Hero Section */
.svd-hero-section {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.svd-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.svd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 94, 32, 0.7) 0%, rgba(13, 43, 94, 0.92) 100%);
}

.svd-hero-content {
    padding: 3rem 0 2.5rem;
}

.svd-hero-tag {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.svd-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.svd-breadcrumb {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

.svd-breadcrumb li {
    color: rgba(255, 255, 255, 0.5);
}

.svd-breadcrumb li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.svd-breadcrumb li a:hover {
    color: var(--accent-color);
}

.svd-breadcrumb li.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Description Section */
.svd-desc-section {
    background: #fff;
}

.svd-desc-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
}

.svd-desc-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.svd-desc-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 1rem;
}

.svd-desc-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--dark-color), var(--accent-color));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.svd-desc-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.svd-desc-text p {
    margin-bottom: 1rem;
}

.svd-service-list,
.svd-service-offerings {
    background: var(--z-card, #fff);
    border: 1px solid var(--z-border, #e5e7eb);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.svd-offerings-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-color, #E88A1A);
}

.svd-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.svd-list-item:last-child {
    border-bottom: none;
}

.svd-list-text {
    line-height: 1.6;
}

.svd-list-check {
    color: var(--dark-color);
    font-size: 0.9rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.svd-list-check i {
    color: var(--dark-color);
}

/* Navigation Buttons */
.svd-nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.svd-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 1rem 1.25rem;
    background: #f8faf8;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 280px;
}

.svd-nav-btn:hover {
    background: var(--dark-color);
    color: #fff;
}

.svd-nav-btn:hover small {
    color: rgba(255, 255, 255, 0.7);
}

.svd-nav-btn:hover span {
    color: #fff;
}

.svd-nav-btn:hover i {
    color: #fff;
}

.svd-nav-btn i {
    font-size: 0.9rem;
    color: var(--dark-color);
    flex-shrink: 0;
}

.svd-nav-btn span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-color);
    line-height: 1.3;
}

.svd-nav-btn small {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.15rem;
}

.svd-nav-next {
    text-align: right;
    justify-content: flex-end;
}

.svd-desc-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.svd-desc-back:hover {
    color: var(--accent-color);
    gap: 0.75rem;
}

/* Sidebar */
.svd-sidebar-card {
    background: #f8faf8;
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    border: 1px solid #eef2ee;
}

.svd-sidebar-related {
    background: #fff;
    border: 1px solid #eef2ee;
}

.svd-sidebar-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 0.75rem;
}

.svd-sidebar-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.svd-sidebar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark-color);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.svd-sidebar-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

.svd-related-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0;
    color: #555;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.svd-related-link:last-child {
    border-bottom: none;
}

.svd-related-link:hover {
    color: var(--dark-color);
    padding-left: 0.5rem;
}

.svd-related-link i {
    font-size: 0.65rem;
    color: var(--accent-color);
}

/* Gallery Section */
.svd-gallery-section {
    background: #f8faf8;
}

.svd-gallery-header {
    margin-bottom: 2.5rem;
}

.svd-gallery-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.svd-gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-color);
}

.svd-carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.svd-carousel-inner {
    position: relative;
}

.svd-carousel-img-wrapper {
    height: 450px;
}

.svd-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svd-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.svd-carousel-btn:hover {
    background: var(--dark-color);
    color: #fff;
}

.svd-carousel-btn i {
    font-size: 1rem;
    color: var(--navy-color);
}

.svd-carousel-btn:hover i {
    color: #fff;
}

.svd-carousel-prev {
    left: 16px;
}

.svd-carousel-next {
    right: 16px;
}

/* CTA Section */
.svd-cta-section {
    background: linear-gradient(135deg, var(--navy-color), var(--dark-color));
    padding: 3.5rem 0;
}

.svd-cta-content {
    max-width: 550px;
    margin: 0 auto;
}

.svd-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.svd-cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.75rem;
}

.svd-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.svd-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.svd-cta-btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.svd-cta-btn-primary:hover {
    background: #fff;
    color: var(--dark-color);
}

.svd-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.svd-cta-btn-secondary:hover {
    background: #fff;
    color: var(--dark-color);
    border-color: #fff;
}

/* ========================
   SERVICE DETAILS RESPONSIVE
   ======================== */

@media (max-width: 992px) {
    .svd-desc-grid {
        grid-template-columns: 1fr;
    }

    .svd-desc-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .svd-sidebar-card {
        margin-bottom: 0;
    }

    .svd-carousel-img-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .svd-hero-title {
        font-size: 2rem;
    }

    .svd-desc-sidebar {
        grid-template-columns: 1fr;
    }

    .svd-carousel-img-wrapper {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .svd-hero-section {
        min-height: 280px;
    }

    .svd-hero-title {
        font-size: 1.6rem;
    }

    .svd-carousel-img-wrapper {
        height: 220px;
    }

    .svd-carousel-btn {
        width: 38px;
        height: 38px;
    }

    .svd-carousel-btn i {
        font-size: 0.85rem;
    }

    .svd-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .svd-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .svd-nav-buttons {
        flex-direction: column;
    }

    .svd-nav-btn {
        max-width: 100%;
    }
}
