:root {
    --primary-color: #151f2b;
    --primary-light: #243347;
    --secondary-color: #93836a;
    --secondary-light: #bdab8f;
    --accent-color: #3498db;
    --light-color: #f8f9fa;
    --dark-color: #1f2a38;
    --gold-color: #ceb797;
    --shadow: 0 10px 30px rgba(21, 31, 43, 0.15);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Topbar Styles - Enhanced */
.topbar {
    background: linear-gradient(135deg, #bdab8f1f, #bdab8f36);
    color: #131f2b;
    padding: 12px 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.topbar a {
    color: #131f2b;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.topbar a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.topbar-btn {
    background: #93836a;
    color: var(--bs-white);
    border: none;
    padding: 7px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.topbar-btn:hover {
    background: linear-gradient(135deg, #d0c3ae, #93836a);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Navbar Styles */
.navbar {
    background: #131f2b !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    width: 138px;
}

.navbar-nav .nav-link {
    color: var(--bs-white);
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d0c3ae, #93836a);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #bdab8f;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

/* Hero Carousel */
.hero-slider {
    position: relative;
}

.hero-slider .carousel-item {
    height: 100%;
    position: relative;
}

.hero-slider .carousel-item img {
    height: 890px;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    margin-top: -140px;
}

.hero-slider .carousel-caption {
    bottom: 30%;
    z-index: 2;
    text-align: left;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-slider h2 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-slider p {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 0 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-btn {
    background: linear-gradient(135deg, #93836a, #bdab8f);
    color: var(--bs-white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 30px #bdab8f99;
    border: none;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px #bdab8f99;
    color: var(--bs-white);
}

.hero-btn i {
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards Section */
.cards-section {
    padding: 120px 0;
    background: var(--light-color);
    position: relative;
}

.card-icon {
    font-size: 3.5rem;
    color: #bdab8f;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, #bdab8f1f, #bdab8f36);
    border-radius: 20px;
}

.service-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    background: white;
    box-shadow: var(--shadow);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #bdab8f, #e4dcd0);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(10, 61, 98, 0.05), transparent);
    transform: rotate(45deg);
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 61, 98, 0.2), transparent);
    z-index: 1;
}

.about-img img {
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 20px;
    font-weight: 800;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #93836a, var(--gold-color));
    border-radius: 3px;
    transform: translateX(-50%);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    position: relative;
}

.service-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.03), rgba(230, 126, 34, 0.03));
    z-index: 0;
}

.service-item>* {
    position: relative;
    z-index: 1;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3.5rem;
    color: #bdab8f;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, #bdab8f1f, #bdab8f36);
    border-radius: 20px;
}

.service-link {
    color: #bdab8f;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

.service-link:hover::after {
    width: 100%;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bs-white);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.04) 0%,
            rgba(255, 255, 255, 0.01) 40%,
            transparent 70%),
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3e%3cpath d='M0 0 H100 V40 L0 100 Z' fill='%23ffffff' fill-opacity='0.025'/%3e%3c/svg%3e");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.benefit-icon {
    font-size: 3.5rem;
    color: #bdab8f;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Projects Section */
.projects-section {
    padding: 120px 0;
    background: white;
}

.project-slide {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 40px;
    text-align: center;
    margin: 10px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.project-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #d0c3ae, #93836a);
    z-index: 1;
}

.contact-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #bdab8f, #e4dcd0);
    transition: height 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-card:hover::before {
    height: 6px;
}

.contact-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #bdab8f1f, #bdab8f36);
    border-radius: 50%;
    margin: 0 auto;
}

.contact-icon-wrapper i {
    font-size: 2rem;
    color: #bdab8f;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper i {
    transform: scale(1.1);
}

.contact-link {
    color: #0a3d62;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e67e22;
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #e67e22;
}

.contact-link:hover::after {
    width: 100%;
}

.office-info {
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.office-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.02), rgba(230, 126, 34, 0.02));
    z-index: 0;
}

.office-info>* {
    position: relative;
    z-index: 1;
}

.office-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #131f2b, #1e5d8c);
    border-radius: 50%;
    margin: 0 auto;
}

.office-icon i {
    font-size: 2.5rem;
    color: var(--bs-white);
}

.btn-warning {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border: none;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #d35400, #e67e22);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #131f2b, #1e5d8c);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e5d8c, #0a3d62);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10, 61, 98, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a3d62;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d0c3ae, #93836a);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 70px 0;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .contact-icon-wrapper i {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }

    .office-info {
        padding: 30px 20px;
    }

    .office-icon {
        width: 80px;
        height: 80px;
    }

    .office-icon i {
        font-size: 2rem;
    }
}

/* Contact form */
.features-list .feature-item {
    transition: transform 0.3s ease;
}

.features-list .feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #bdab8f1f, #bdab8f36);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #bdab8f !important;
}

/* Quote Card Styling */
.quote-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header-gradient {
    background: linear-gradient(135deg, #131f2b, #1e5d8c);
}

/* Form Styling */
.form-floating {
    position: relative;
}

.form-floating .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding-left: 50px;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-floating label {
    padding-left: 50px;
    color: #6c757d;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-control-plaintext~label {
    transform: scale(0.85) translateY(-1rem) translateX(0.15rem);
    color: #e67e22;
    padding-left: 50px;
}

.form-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    transition: color 0.3s ease;
    z-index: 3;
}

.form-floating .form-control:focus~.form-icon {
    color: #e67e22;
}

/* Option 4 CSS */
.office-modern .bg-primary-gradient {
    background: linear-gradient(135deg, #0a3d62, #1e5d8c);
}

.office-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.office-icon-large i {
    font-size: 2.5rem;
    color: var(--bs-white);
}

.detail-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(10, 61, 98, 0.1);
    border-radius: 15px;
    color: #0a3d62;
    font-size: 1.5rem;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .office-modern .row {
        flex-direction: column;
    }

    .office-modern .col-md-4 {
        padding: 30px !important;
    }

    .office-modern .col-md-8 {
        padding: 30px !important;
    }

    .office-icon-large {
        width: 80px;
        height: 80px;
    }

    .office-icon-large i {
        font-size: 2rem;
    }

    .detail-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Button Styling */
#quoteForm .btn-warning {
    background: linear-gradient(135deg, #93836a, #bdab8f);
    border: none;
    border-radius: 12px;
    color: var(--bs-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#quoteForm .btn-warning:hover {
    background: linear-gradient(135deg, #bdab8f, #bdab8f);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px #bdab8f;
    color: var(--bs-white);
}

.btn-warning::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-warning:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .display-5 {
        font-size: 2.5rem;
    }

    .quote-card {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .my-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .display-5 {
        font-size: 2rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }

    .card-body {
        padding: 30px 25px !important;
    }
}

@media (max-width: 576px) {
    .display-5 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .form-control-lg {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--bs-white);
    padding-top: 100px;
    position: relative;
}

/* .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ccbf9f, #ccbf9f);
} */

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-title {
    color: var(--bs-white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #bdab8f;
    border-radius: 2px;
}

.footer-bottom {
    padding: 25px 0;
    margin-top: 70px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid #d9d2c7;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
    color: var(--bs-white);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px) rotate(5deg);
    color: var(--bs-white);
}

/* Clients Section */
.projects-section {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
}

.projects-section .container {
    position: relative;
    padding: 0 50px;
}

.client-logo-card {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #93836a;
}

.client-logo {
    text-align: center;
}

.client-logo img {
    width: 30%;
}

.client-name {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    padding: 10px 20px;
    position: relative;
}

/* Swiper Container */
.clientsSwiper {
    padding: 20px 0 60px;
    position: relative;
}

.clientsSwiper .swiper-slide {
    height: auto;
}

/* Navigation Arrows - Positioned Outside Container */
.clientsSwiper .swiper-button-next,
.clientsSwiper .swiper-button-prev {
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.clientsSwiper .swiper-button-next:after,
.clientsSwiper .swiper-button-prev:after {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 900;
}

.clientsSwiper .swiper-button-next:hover,
.clientsSwiper .swiper-button-prev:hover {
    background: #bdab8f;
}

.clientsSwiper .swiper-button-next:hover:after,
.clientsSwiper .swiper-button-prev:hover:after {
    color: var(--bs-white);
}

.clientsSwiper .swiper-button-prev {
    left: 0;
}

.clientsSwiper .swiper-button-next {
    right: 0;
}

.clientsSwiper .swiper-pagination {
    bottom: 0;
}

.clientsSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
}

.clientsSwiper .swiper-pagination-bullet-active {
    background: #93836a;
}

.service-details-section h2,
.service-details-section h3 {
    color: #0a3d62;
}

.service-details-section .about-img img {
    height: 305px;
    width: 100%;
    object-fit: cover;
}


/* Fleet Portfolio Styles */
.fleet-portfolio-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Filter Buttons */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #0a3d62;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.filter-btn:hover {
    background: #bdab8f;
    border-color: #bdab8f;
    color: var(--bs-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.filter-btn.active {
    background: #bdab8f;
    border-color: #bdab8f;
    color: var(--bs-white);
    box-shadow: 0 5px 20px rgb(189 171 143 / 60%);
}

/* Portfolio Cards */
.portfolio-container {
    position: relative;
    min-height: 400px;
}

.portfolio-item {
    transition: all 0.5s ease;
}

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 61, 98, 0.8));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.vehicle-badge {
    background: #bdab8f;
    color: var(--bs-white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-content {
    padding: 20px;
    text-align: center;
}

.portfolio-title {
    color: #0a3d62;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Filter Animation */
.portfolio-item {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .projects-section .container {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .projects-section .container {
        padding: 0 30px;
    }

    .clientsSwiper .swiper-button-next,
    .clientsSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .clientsSwiper .swiper-button-next:after,
    .clientsSwiper .swiper-button-prev:after {
        font-size: 16px;
    }

    .client-logo-card {
        height: 160px;
        padding: 30px 15px;
    }

    .client-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {

    .clientsSwiper .swiper-button-next,
    .clientsSwiper .swiper-button-prev {
        display: none;
    }

    .projects-section .container {
        padding: 0 15px;
    }

    .clientsSwiper {
        padding: 20px 0 50px;
    }

    .client-logo-card {
        height: 140px;
        padding: 25px 15px;
    }

    .client-name {
        font-size: 1.1rem;
        padding: 8px 15px;
    }

    .client-name::after {
        width: 30px;
        height: 2px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .portfolio-image {
        height: 200px;
    }

    .portfolio-title {
        font-size: 1.1rem;
    }

    .portfolio-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .filter-container {
        gap: 5px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .projects-section {
        padding: 80px 0;
    }

    .client-logo-card {
        height: 120px;
        padding: 20px 10px;
    }

    .client-name {
        font-size: 1rem;
        padding: 6px 12px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .clientsSwiper .swiper-button-next,
    .clientsSwiper .swiper-button-prev {
        display: flex;
    }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #93836a, #bdab8f);
    color: var(--bs-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 5px 20px #bdab8f;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bs-white);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    animation: floatUpDown 3s infinite ease-in-out;
}

.floating-btn:nth-child(1) {
    animation-delay: 0s;
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn:nth-child(2) {
    animation-delay: 1s;
    background: linear-gradient(135deg, var(--accent-color), #2980b9);
}

.floating-btn:nth-child(3) {
    animation-delay: 2s;
    background: linear-gradient(135deg, #93836a, #bdab8f);
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.floating-btn:hover {
    transform: scale(1.15) rotate(10deg);
    animation-play-state: paused;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.floating-btn-tooltip {
    position: absolute;
    left: 80px;
    background: rgba(0, 0, 0, 0.9);
    color: var(--bs-white);
    padding: 8px 15px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-btn:hover .floating-btn-tooltip {
    opacity: 1;
    visibility: visible;
    left: 85px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.badge {
    color: var(--bs-white) !important;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 800 !important;
    background-color: #bdab8f !important;
}

.text-theme {
    color: rgb(189 171 143) !important;
}

.scroll-top:hover {
    animation: bounce 1s infinite;
}

/* Benefit icon circles */
.benefit-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-primary-soft {
    background-color: rgba(10, 61, 98, 0.1);
}

/* Tour tags */
.tour-tag {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tour-tag:hover {
    background: rgba(46, 204, 113, 0.1) !important;
    border-color: #2ecc71;
}

/* Package cards */
.package-card {
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Event stats */
.event-stat {
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.event-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.1);
}

/* Distance calculator */
.distance-calculator {
    border-left: 4px solid #3498db;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-slider h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .hero-slider h2 {
        font-size: 2.8rem;
    }

    .hero-slider p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .floating-buttons {
        left: 20px;
        bottom: 20px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
        margin-top: 0;
    }

    .hero-slider h2 {
        font-size: 2.2rem;
    }

    .hero-slider p {
        font-size: 1rem;
    }

    .topbar .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .clientsSwiper .swiper-button-next,
    .clientsSwiper .swiper-button-prev {
        display: none;
    }

    .client-logo-card {
        height: 150px;
        padding: 30px 15px;
    }

    .client-name {
        font-size: 1.1rem;
        padding: 8px 15px;
    }

    .floating-buttons {
        left: 15px;
        bottom: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .package-card {
        padding: 10px !important;
    }

    .package-card h5 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slider h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card,
    .service-item {
        padding: 30px 20px;
    }

    .client-logo-card {
        height: 120px;
        padding: 20px 10px;
    }

    .client-name {
        font-size: 1rem;
    }
}

@media print {

    .floating-buttons,
    .scroll-top,
    .topbar-btn {
        display: none !important;
    }
}