/* Custom Styles Extracted from PHP files */

/* =========================================
   Header Swiper (from index.php)
   ========================================= */
.myHeaderSwiper {
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    /* transition: transform 0.5s linear; */
}

.swiper-slide-active .slide-bg {
    transform: scale(1.05);
    transition: transform 8s linear;
    /* Ken Burns effect */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    z-index: 0;
}

.slide-title {
    color: #ffa800;
    font-size: 60px;
    /* Slightly larger for impact */
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.slide-subtitle {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 4px;
    /* More elegant spacing */
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.slide-content {
    color: #fff;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s;
}

.slide-btn {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.9s;
}

/* Active Slide Animations */
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translate(0) scale(1);
}

.swiper-slide-active .slide-btn {
    opacity: 1;
    transform: scale(1);
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffa800;
}

.swiper-pagination-bullet-active {
    background: #ffa800;
}

@media (max-width: 991px) {
    .myHeaderSwiper {
        height: 600px;
    }

    .slide-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .myHeaderSwiper {
        height: 500px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 18px;
    }
}

/* =========================================
   Service Tabs (from index.php)
   ========================================= */
.nav-link.active {
    color: #ffa800 !important;
}

.nav-link.active .active-indicator {
    width: 100% !important;
}

.unique-service-image .img-wrapper:hover img {
    transform: scale(1.05);
}

/* =========================================
   Clients Section (from index.php)
   ========================================= */
.client-logo-box:hover .client-logo-inner img {
    transform: scale(1.1);
}

.client-logo-box:hover .hover-underline {
    width: 50px;
    /* Expands to a small line under the logo */
}

/* =========================================
   Projects Section (from index.php)
   ========================================= */
.myProjectSwiper {
    padding: 20px 0 50px !important;
}

.myProjectSwiper .swiper-slide {
    height: auto !important;
    display: flex !important;
}

.featured-icon-box.style2 {
    width: 100%;
}

.featured-icon-box.style2:hover {
    background: #fff !important;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.featured-icon-box.style2:hover .featured-icon img {
    transform: scale(1.1);
    filter: none !important;
}

.featured-icon-box.style2:hover .featured-title a {
    color: #232323 !important;
}

.featured-icon-box.style2:hover .featured-desc p {
    color: #666 !important;
}

.featured-icon-box.style2:hover .read-more-btn {
    color: #ffa800 !important;
}

/* Service Box Hover Effects (Added for Service Details) */
.featured-icon-box.style2:hover .featured-title h5,
.featured-icon-box.style2:hover .featured-desc p,
.featured-icon-box.style2:hover .text-white,
.featured-icon-box.style2:hover .text-white-50 {
    color: #232323 !important;
    transition: all 0.3s ease;
}

.featured-icon-box.style2:hover .ttm-icon_element-color-white i {
    color: var(--skin-color, #ff6b6b) !important;
}

/* =========================================
   Clients Section (from index.php)
   ========================================= */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #ffa800 !important;
    opacity: 1;
}

/* =========================================
   About Section (from index.php)
   ========================================= */
.about-image-wrapper {
    border-radius: 10px;
    display: inline-block;
    padding: 15px;
    position: relative;
    z-index: 1;
}

.about-image-bg-layer {
    border-radius: 10px;
}

.about-image {
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* =========================================
   Services Section (from index.php)
   ========================================= */
.service-section-bg {
    background: linear-gradient(135deg, #f0f0f0 0%, #e6e6e6 100%);
    position: relative;
    overflow: hidden;
}

.decor-element-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 168, 0, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.decor-element-2 {
    position: absolute;
    bottom: 50px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: rgba(0, 75, 141, 0.08);
    /* Blue tint */
    border-radius: 50%;
    z-index: 0;
}

.decor-element-3 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 4px solid rgba(255, 168, 0, 0.15);
    transform: rotate(45deg);
    z-index: 0;
}

.decor-element-4 {
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(0, 75, 141, 0.1);
    transform: rotate(-15deg);
    z-index: 0;
}

.decor-element-5 {
    position: absolute;
    top: 40%;
    right: 5%;
    width: 20px;
    height: 20px;
    background: rgba(255, 168, 0, 0.2);
    border-radius: 2px;
    animation: floating 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.service-title {
    font-size: 48px;
    font-weight: 800;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
}

.service-title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ffa800;
}

.service-subtitle {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-desc {
    max-width: 800px;
    font-size: 16px;
    color: #666;
    text-align: left;
}

.unique-service-image-container {
    position: relative;
    margin-left: 15px;
}

.unique-service-image-border {
    position: absolute;
    top: 15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid #ffa800;
    border-radius: 10px;
    z-index: 0;
}

.unique-service-image-wrapper {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.unique-service-image-img {
    transition: transform 0.5s ease;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-nav-pills {
    border-bottom: 2px solid #eee;
    padding-bottom: 0;
}

.service-nav-item {
    margin-right: 20px;
}

.service-nav-link {
    background: none;
    color: #666;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 0;
    border-radius: 0;
    text-transform: uppercase;
    position: relative;
}

.service-nav-active-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ffa800;
    transition: width 0.3s;
}

.service-desc-box-custom {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-desc-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-includes-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.service-include-item {
    display: flex;
    align-items: center;
}

.service-check-icon {
    font-size: 14px;
    margin-right: 8px;
}

.service-include-text {
    font-size: 14px;
    color: #444;
}

/* =========================================
   Clients Section (from index.php)
   ========================================= */
.clients-section-bg {
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
}

.clients-subtitle {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.clients-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: #232323;
    letter-spacing: 1px;
}

.clients-title-highlight {
    color: #ffa800;
}

.clients-title-underline {
    width: 80px;
    height: 3px;
    background: #ffa800;
    margin: 20px auto 30px;
}

.client-logo-box-custom {
    text-align: center;
    padding: 15px;
    cursor: pointer;
}

.client-logo-inner-custom {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.client-logo-img {
    max-height: 130px;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.4s ease;
}

.client-hover-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #ffa800;
    transition: width 0.4s ease;
}

/* =========================================
   Projects Section (from index.php)
   ========================================= */
.projects-title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
}

.projects-title-highlight {
    color: #ffa800;
}

.projects-subtitle {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.projects-title-underline {
    width: 60px;
    height: 3px;
    background: #ffa800;
    margin: 25px auto;
}

.projects-desc {
    max-width: 900px;
    color: #ddd;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}

.projects-highlight-box {
    background: rgba(255, 168, 0, 0.1);
    border-left: 4px solid #ffa800;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.projects-highlight-text {
    color: #fff;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.projects-text {
    margin-bottom: 15px;
    color: #ccc;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.project-img-wrapper {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.project-img {
    max-height: 80px;
    max-width: 100%;
    transition: all 0.4s ease;
}

.project-card-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.project-card-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.project-card-desc {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================
   Services Page (services.php)
   ========================================= */
.services-intro-section {
    padding: 80px 0 50px;
}

.services-intro-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.services-intro-highlight {
    color: #ffa800;
}

.services-intro-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.services-grid-section-custom {
    padding: 0 0 80px;
    background-color: #f9f9f9;
}

.cta-section-padding {
    padding: 60px 0;
}

.cta-title {
    color: #1e293b !important;
    font-size: 30px;
    margin-bottom: 10px;
}

.cta-desc {
    color: #1e293b !important;
    margin-bottom: 0;
    font-size: 18px;
}

/* Service Cards (from services.php style block) */
.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}

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

.service-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-title {
    color: #ffa800;
}

.service-desc p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more-link {
    color: #1e293b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.read-more-link i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.service-card:hover .read-more-link {
    color: #ffa800;
}

.service-card:hover .read-more-link i {
    margin-left: 10px;
}

/* =========================================
   About Page (about.php)
   ========================================= */
.about-main-section {
    padding: 50px 0;
}

.about-section-title {
    font-size: 24px;
}

/* =========================================
   Contact Page (contact.php)
   ========================================= */
.contact-info-box-custom {
    border-radius: 5px;
}

.contact-map {
    height: 500px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* =========================================
   Clients Page (clients.php)
   ========================================= */
.clients-grid-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.clients-page-title {
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.clients-page-desc {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 15px 0 0;
    line-height: 1.6;
}

/* Clients Grid (from clients.php style block) */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px;
}

.client-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/2;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.6);
    overflow: hidden;
    position: relative;
}

@media (min-width: 576px) {
    .clients-grid {
        gap: 20px;
    }

    .client-card {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media (min-width: 992px) {
    .clients-grid {
        gap: 30px;
    }

    .client-card {
        flex: 0 0 calc(25% - 30px);
        max-width: calc(25% - 30px);
    }
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(59, 130, 246, 0.1);
}

.client-card:hover .client-logo-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.client-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.client-logo-wrapper img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.4s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* =========================================
   Service Details Page (service-details.php)
   ========================================= */
.service-details-section {
    padding: 80px 0;
}

.service-main-img {
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-main-title {
    color: #004b8d;
    font-weight: 700;
    margin-bottom: 25px;
}

.feature-box-1 {
    background: #f9fcff;
    border-radius: 10px;
}

.feature-box-2 {
    background: #fffdf5;
    border-radius: 10px;
}

/* Default */
.feature-title {
    margin-bottom: 5px;
    font-weight: 800;
    font-size: 20px;
    color: #333;
}

/* Specific colors for each box */
.feature-box-1 .feature-title {
    color: #0056b3;
    /* Darker Blue to match Light Blue bg */
}

.feature-box-2 .feature-title {
    color: #b38600;
    /* Dark Gold/Brown to match Light Yellow bg */
}

.feature-desc {
    margin-bottom: 0;
}

.widget-contact-custom {
    background: #004b8d;
    color: #fff;
    border-radius: 10px;
}

.widget-contact-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}

/* Service Details Widgets (from internal style block) */
.widget-nav-menu ul li {
    border-bottom: 1px solid #eee;
    padding: 0;
}

.widget-nav-menu ul li a {
    padding: 15px 20px;
    display: block;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.widget-nav-menu ul li.active a,
.widget-nav-menu ul li a:hover {
    background: #ffa800;
    color: #fff;
    padding-left: 25px;
}

.service-desc-full p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}

.service-desc-full ul {
    list-style: none;
    padding-left: 15px;
    margin-bottom: 20px;
}

.service-desc-full ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.service-desc-full ul li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #ffa800;
}

.project-read-more {
    display: inline-block;
    margin-top: 20px;
    color: #ffa800;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   Projects Page (projects.php)
   ========================================= */
.project-grid-image {
    width: 100% !important;
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
}

.project-client-link {
    color: #ffa800;
}

/* =========================================
   Project Details Page (project.php)
   ========================================= */
.project-single-image {
    border-radius: 12px;
    width: 100%;
}

.project-detail-title {
    color: #ffa800;
}

.project-scope-text {
    color: #333;
    line-height: 1.6;
}

/* =========================================
   Services Overlay Layout
   ========================================= */
@media (min-width: 992px) {
    .service-overlap-content {
        margin-right: -120px;
        margin-left: 30px;
        z-index: 10;
        position: relative;
    }

    .service-overlap-image {
        z-index: 1;
        position: relative;
    }

    .modern-service-tabs {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    /* Remove individual box styles to avoid double boxing */
    .modern-service-tabs .service-desc-box-custom {
        box-shadow: none;
        padding: 0 !important;
        background: transparent;
    }

    .modern-service-tabs .service-desc {
        padding-bottom: 25px;
    }
}

/* =========================================
   Clients Section (from index.php)
   ========================================= */
.clients-section-bg {
    background-color: #fcfcfc;
    background-image:
        radial-gradient(#e5e5e5 1px, transparent 1px),
        radial-gradient(#e5e5e5 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    position: relative;
}

/* =========================================
   Mobile Fixes (Clients/Projects Overlap)
   ========================================= */
@media (max-width: 991px) {
    .ttm-row.client-section {
        padding: 50px 0 !important;
        margin-bottom: 0;
        position: relative;
        z-index: 2;
        margin-top: 0;
    }

    .team-member-section {
        clear: both;
        padding-top: 40px !important;
        margin-top: 0;
        position: relative;
        z-index: 1;
    }

    /* Ensure Swiper container doesn't overflow */
    .clientsSwiper {
        padding-bottom: 40px !important;
        margin-bottom: 20px;
    }

    .service-desc {
        padding: 15px;
    }

    /* Make logos larger on mobile */
    .client-logo-img {
        width: 100% !important;
        height: auto !important;
        max-width: none !important;
        margin: 0 auto;
        display: block;
    }

    .client-logo-inner img {
        max-height: none !important;
        height: 100% !important;
    }

    .service-overlap-image {
        padding: 30px !important;
    }
}

/* =========================================
   Mobile Alignment Fixes (Forced Left)
   ========================================= */
@media (max-width: 767px) {

    /* Force left alignment for all subtitles on homepage */
    .section-title,
    .section-title.text-center,
    .title-header,
    .service-subtitle,
    .clients-subtitle,
    .projects-subtitle,
    .section-title h2.title,
    .section-title h5.title {
        text-align: left !important;
    }

    /* Adjust decoration lines for left alignment */
    .section-title .title-header:after,
    .service-title-underline,
    .clients-title-underline,
    .projects-title-underline,
    .projects-title-underline:after {
        left: 0 !important;
        transform: none !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    /* Ensure content inside follows suit */
    .title-desc {
        text-align: left !important;
    }
}

/* Contact Page Location Box (New Design) */
.location-item-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #ff6b6b;
    /* Fallback color */
    border-left-color: var(--skin-color, #ff6b6b);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.location-item-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--skin-color, #ff6b6b);
}

.location-country {
    font-weight: 800;
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
}

.location-address {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.location-address a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.location-address a:hover {
    color: var(--skin-color, #ff6b6b);
    text-decoration: underline;
}

/* Contact Page Phone/Email Boxes */
.contact-item-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.contact-item-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--skin-color, #ff6b6b);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 107, 0.1);
    color: var(--skin-color, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.contact-details p {
    margin-bottom: 0;
    font-size: 15px;
    color: #666;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-details a:hover {
    color: var(--skin-color, #ff6b6b);
}