/* Fusion Theme - Modern & Attractive */
:root {
    --primary-color: #8b5cf6;
    /* Violet */
    --secondary-color: #d946ef;
    /* Fuchsia */
    --accent-color: #06b6d4;
    /* Cyan */
    --dark-bg: #020617;
    /* Slate 950 */
    --light-text: #f8fafc;
    /* Slate 50 */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(30, 41, 59, 0.6);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: black;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(139, 92, 246, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(217, 70, 239, 0.08), transparent 25%);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.glass-card {
    background: #ebebeb;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.glass-card:hover {
    transform: translateY(-5px) scale(1.01);
    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(139, 92, 246, 0.3);
    background: #09425A;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Exception for accordion headers - they should have normal text color */
.accordion-header h2,
.accordion-button {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--light-text) !important;
    color: var(--light-text) !important;
}

p {
    color: #cbd5e1;
    line-height: 1.7;
}

.btn-fusion {
    background: #1B3673;
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-fusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

    .btn-fusion:hover {
        background: rgb(13 110 253);
        color: white;
    }

/* Navbar */
/* Navbar */
.nav-link:hover::after {
    width: 100%;
}

/* Header & Top Bar */
.header-fusion {
    z-index: 1050;
    transition: all 0.3s ease;
}

.top-bar-fusion {
    background: #020617;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-link:hover {
    color: var(--primary-color);
}

.top-bar-link i {
    color: white;
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-social-icon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.top-social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.navbar-fusion {
    background: white;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white !important;
}

.nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

/* Services & Cards */
.service-item {
    padding: 30px;
    height: 100%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link {
    color: #94a3b8;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Accordion Button Fix */
.accordion-button {
    color: var(--light-text) !important;
    -webkit-text-fill-color: var(--light-text) !important;
    background: none !important;
}

.accordion-button.collapsed {
    -webkit-text-fill-color: black !important;
}

.accordion-header,
.accordion-header h2 {
    background: none !important;
    -webkit-text-fill-color: inherit !important;
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text) !important;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--primary-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: rotate(360deg);
}

.social-icon.sm {
    width: 35px;
    height: 35px;
    font-size: 14px;
}

/* SIDEBAR SOCIAL LINK */

.sticky-icon {
    z-index: 1000;
    position: fixed;
    top: 40%;
    right: 0%;
    width: 220px;
    display: flex;
    flex-direction: column;
}

.sticky-icon a {
    transform: translate(160px, 0px);
    border-radius: 50px 0px 0px 50px;
    text-align: left;
    margin: 2px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px;
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.8s;
    background-color: #333;
    /* Default background */
    color: #fff;
}

.sticky-icon a:hover {
    color: #FFF;
    transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
    transform: rotate(360deg);
}

.changetheme {
    background-color: red;
    color: #FFF;
}

.Facebook {
    background-color: #2C80D3;
    color: #FFF;
}

.Youtube {
    background-color: #fa0910;
    color: #FFF;
}

.Twitter {
    background-color: #53c5ff;
    color: #FFF;
}

.Instagram {
    background-color: #DA4187;
    color: #FFF;
}

.sticky-icon a i {
    background-color: #FFF;
    height: 35px;
    width: 35px;
    color: #000;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.5s;
}

.sticky-icon a i.fafacebook {
    background-color: #FFF;
    color: #2C80D3;
}

.sticky-icon a i.facogs {
    background-color: #FFF;
    color: red;
}

.sticky-icon a i.fainstagram {
    background-color: #FFF;
    color: #DA4187;
}

.sticky-icon a i.fatwitter {
    background-color: #FFF;
    color: #53c5ff;
}

/* SIDEBAR SOCIAL LINK END */

/* About Us Section Modern UI */
.about-img-container {
    position: relative;
    padding-bottom: 50px;
    padding-right: 50px;
}

.about-img-main {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    object-fit: cover;
    height: 450px;
}

.about-img-overlap {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 65%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.about-badge {
    color: white;
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    background: #1B3673;
    border-radius: 5px;
    margin-bottom: 20px;
}

.about-badge i {
    color: white;
    margin-right: 12px;
    font-size: 14px;
}

.about-badge span {
    color: white;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-heading {
    background: linear-gradient(135deg, #166534, #22c55e) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    line-height: 1.2 !important;
}

.about-content p,
.description-text,
.description-text p {
    color: black;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Modern Counter Section UI */
.counter-section-modern {
    padding: 80px 0;
}

.counter-card-modern {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.counter-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.counter-icon-box {
    width: 80px;
    height: 80px;
    background: #006ce4;
    /* Bright Blue matching reference */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.counter-icon-box img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    /*    filter: brightness(0) invert(1);*/
}

.counter-number-modern {
    font-size: 2.8rem;
    font-weight: 800;
    color: #006ce4;
    margin-bottom: 10px;
    display: block;
}

.counter-label-modern {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    margin: 0;
}


/* Modern FAQ Accordion UI */
.faq-section-wrapper {
    background: #f8fafc;
}

.faq-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1e293b;
    -webkit-text-fill-color: #1e293b !important;
}

.faq-title-modern span.green {
    color: #16a34a;
}

.faq-title-modern span.blue {
    color: #2563eb;
}

.faq-outer-container {
    background: #0d6efd;
    /* Fallback */
    background: #00667c;
    /* Deep Teal matching reference */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item-modern {
    background: #ffffff !important;
    border-radius: 8px !important;
    margin-bottom: 15px !important;
    border: none !important;
    overflow: hidden;
}

.faq-item-modern:last-child {
    margin-bottom: 0 !important;
}

.faq-button-modern {
    background: #ffffff !important;
    color: #1e293b !important;
    -webkit-text-fill-color: #1e293b !important;
    font-weight: 600 !important;
    padding: 20px 25px !important;
    box-shadow: none !important;
    border: none !important;
    font-size: 1.1rem !important;
    text-align: left;
}

.faq-button-modern::after {
    filter: brightness(0);
    /* Make arrow black */
}

.faq-button-modern:not(.collapsed) {
    color: #00667c !important;
    background: #f8fafc !important;
}

.faq-body-modern {
    padding: 0 25px 25px !important;
    color: #475569 !important;
    -webkit-text-fill-color: #475569 !important;
    font-size: 1rem;
    line-height: 1.6;
    background: #f8fafc;
}


/* Modern Team Card UI */
.modern-team-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-img-wrapper {
    width: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f8fafc;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.modern-team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.modern-team-card h4 {
    color: #1e293b !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.modern-team-card p {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hover Effects */
.modern-team-card:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.3);
}

.modern-team-card:hover .team-img-wrapper {
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.modern-team-card:hover h4,
.modern-team-card:hover p {
    color: #ffffff !important;
}

.modern-team-card:hover img {
    transform: scale(1.1);
}


/* Modern Testimonial UI */
.testimonial-section-modern {
    background-color: #f8fafc;
}

.testimonial-card-modern {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-quote-icon {
    font-size: 30px;
    color: rgba(37, 99, 235, 0.1);
    margin-bottom: 20px;
    background: #f1f5f9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.testimonial-card-modern:hover .testimonial-quote-icon {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    transform: rotateY(180deg);
    transition: all 0.6s ease;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: normal;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-text p {
    margin: 0;
}

.testimonial-google-icon {
    width: 35px;
    margin-bottom: 15px;
}

.testimonial-name {
    font-weight: 700;
    color: #2563eb;
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-heading-blue {
    color: #1d4ed8 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    font-weight: 800 !important;
}


/* Gallery Carousel Navigation */
.gallery-carousel {
    position: relative;
    padding: 0 20px;
}

.gallery-carousel .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.gallery-carousel .owl-nav button {
    pointer-events: auto;
    width: 45px;
    height: 45px;
    background: #007bff !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    border: none !important;
    margin: 0 -10px !important;
}

.gallery-carousel .owl-nav button:hover {
    background: #0056b3 !important;
    transform: scale(1.1);
}

.gallery-carousel .owl-nav button i {
    font-size: 18px;
}

.modern-gallery-card {
    margin: 15px 5px;
}


/* Modern Gallery UI */
.modern-gallery-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.gallery-card-img {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-overlay i {
    color: #ffffff;
    font-size: 2rem;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.modern-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modern-gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.modern-gallery-card:hover .gallery-overlay i {
    transform: scale(1);
}

.modern-gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.6);
}

.gallery-card-content h5 {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Modern Category Card UI */
.modern-category-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-img-wrapper {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8fafc;
    padding: 10px;
    transition: all 0.4s ease;
}

.modern-category-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: all 0.6s ease;
}

.modern-category-card h4 {
    color: #1e293b !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    transition: all 0.4s ease;
}

/* Hover Effects */
.modern-category-card:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    /* Vibrant Orange matching reference */
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.3);
}

.modern-category-card:hover .category-img-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.modern-category-card:hover img {
    transform: scale(1.1);
}

.modern-category-card:hover h4 {
    color: #ffffff !important;
}

/* Corner Ribbon Effect */
.modern-category-card::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background: #ffffff;
    transform: rotate(45deg);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.modern-category-card:hover::before {
    opacity: 1;
}

/* Modern Blog UI */
.modern-blog-card {
    background: #c8ced980;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.blog-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-body h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: black !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.blog-body p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-preview-text {
    color: black !important;
}

.blog-btn {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-btn i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.modern-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.modern-blog-card:hover img {
    transform: scale(1.1);
}

.modern-blog-card:hover h4 {
    color: var(--primary-color) !important;
}

.modern-blog-card:hover .blog-btn i {
    transform: translateX(5px);
}

/* Blog Details UI */
.blog-details-header {
    margin-bottom: 50px;
}

.blog-meta {
    margin-bottom: 20px;
}

.blog-meta span {
    margin-right: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 8px;
}

.blog-feature-img {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-feature-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .blog-feature-img img {
        height: 300px;
    }
}

.blog-entry-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
}

.blog-entry-content p {
    margin-bottom: 25px;
}

.blog-entry-content h2,
.blog-entry-content h3 {
    color: #1e293b;
    font-weight: 800;
    margin: 40px 0 20px;
}

/* Modern Product UI */
.modern-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f8fafc;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
    z-index: 3;
}

.modern-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.modern-product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.modern-product-card:hover .product-actions {
    opacity: 1;
}

.product-info {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.product-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.product-cat-name {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.modern-product-card:hover h4 {
    color: var(--primary-color) !important;
}

.product-footer-btn {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

/* Modern Service Card UI Redesign */
.modern-service-card {
    background: #020617;
    border-radius: 30px;
    height: 450px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card-img-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
    z-index: 1;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(2, 6, 23, 0.2) 40%, rgba(2, 6, 23, 0.95) 90%);
    z-index: 2;
    transition: all 0.5s ease;
}

.modern-service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px -12px rgba(139, 92, 246, 0.3);
}

.modern-service-card:hover .service-card-img-full {
    transform: scale(1.15) rotate(2deg);
}

.modern-service-card:hover .service-card-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 92, 246, 0.1) 40%, rgba(2, 6, 23, 0.98) 85%);
}

.service-content-inner {
    position: relative;
    z-index: 3;
    padding: 40px 30px;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-service-card:hover .service-content-inner {
    transform: translateY(0);
}

.service-icon-badge {
    position: absolute;
    top: -40px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.service-icon-badge i {
    transform: rotate(-45deg);
    color: white;
    font-size: 1.5rem;
}

.modern-service-card:hover .service-icon-badge {
    transform: rotate(135deg) scale(1.1);
    background: var(--secondary-color);
}

.modern-service-card h4 {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.modern-service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-btn-minimal {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.modern-service-card:hover .service-btn-minimal {
    opacity: 1;
    color: var(--accent-color);
}

.service-btn-minimal i {
    transition: transform 0.3s ease;
}

.service-btn-minimal:hover i {
    transform: translateX(5px);
}

/* Modern Details Page UI */
.details-page-wrapper {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.details-breadcrumb-nav {
    display: inline-flex;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    margin-bottom: 40px;
}

.details-breadcrumb-nav .breadcrumb {
    margin: 0;
    background: transparent;
    padding: 0;
}

.details-breadcrumb-nav .breadcrumb-item,
.details-breadcrumb-nav .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    font-weight: 500;
}

.details-breadcrumb-nav .breadcrumb-item.active {
    color: white !important;
}

.details-img-sticky {
    position: sticky;
    top: 100px;
}

.details-main-img-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.details-main-img-card img {
    border-radius: 30px;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.details-main-img-card:hover img {
    transform: scale(1.03);
}

.details-content-card {
    background: transparent;
    padding-left: 30px;
}

.details-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.details-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    margin-bottom: 30px;
    line-height: 1.1;
}

.details-description-lead {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-color);
    padding-left: 25px;
}

.details-full-content {
    color: #3d84d8;
    font-size: 1.1rem;
    line-height: 2;
}

.details-full-content p {
    margin-bottom: 25px;
}

.details-action-box {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-details-contact {
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 15px;
}

.btn-details-secondary {
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.btn-details-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 991px) {
    .details-content-card {
        padding-left: 0;
        margin-top: 50px;
    }

    .details-img-sticky {
        position: relative;
        top: 0;
    }
}

/* Immersive Contact UI Redesign */
/*.contact-hero-header {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.95), rgba(139, 92, 246, 0.2)), url('/images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 200px;
    text-align: center;
    position: relative;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}*/

.contact-hub-card {
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    margin-top: -150px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.contact-hub-left {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 80px 50px;
    flex: 1;
    min-width: 350px;
}

.contact-hub-right {
    background: #ffffff;
    padding: 80px 60px;
    flex: 1.5;
    min-width: 350px;
}

.info-item-luxury {
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
}

.info-icon-luxury {
    width: 55px;
    height: 55px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.info-item-luxury:hover .info-icon-luxury {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(-10deg);
}

.info-content-luxury h6 {
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.info-content-luxury p,
.info-content-luxury a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem;
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
}

.luxury-input-group {
    margin-bottom: 35px;
    position: relative;
}

.luxury-input-group label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.luxury-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    padding: 10px 0;
    font-size: 1.1rem;
    color: #1e293b;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 0;
}

.luxury-input:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
    box-shadow: none;
}

.luxury-input:focus+label {
    color: var(--primary-color);
}

.btn-luxury-send {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
}

.btn-luxury-send:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.5);
    color: white;
}

.luxury-map-container {
    margin-top: 80px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    border: 10px solid white;
}

@media (max-width: 768px) {

    .contact-hub-left,
    .contact-hub-right {
        padding: 50px 30px;
    }

    /*    .contact-hero-header {
        padding: 80px 0 150px;
    }*/
}