:root {
    --primary: #000000;
    --secondary: #BF9B30;
    --accent: #FF1493;
    --text: #FFFFFF;
    --text-secondary: #CCCCCC;
}

/* Add these new styles for light theme */
body.light-theme {
    background-color: #f8f9fa;
    color: #212529;
}

.light-theme .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.light-theme .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
}

.light-theme .nav-link {
    color: #212529 !important;
}

.light-theme .nav-link:hover,
.light-theme .nav-link.active {
    color: #BF9B30 !important;
}

.light-theme #themeToggle {
    color: #212529;
    border-color: #212529;
}

.light-theme .hero-overlay {
    background: rgba(255, 255, 255, 0.3);
}

.light-theme .quick-tabs,
.light-theme .services-section,
.light-theme .portfolio-section,
.light-theme .clients-section,
.light-theme .contact-section {
    background: #f8f9fa !important;
}

.light-theme .filter-btn {
    background: transparent;
    color: #212529;
}

.light-theme .filter-btn.active,
.light-theme .filter-btn:hover {
    color: #BF9B30;
}

.light-theme .testimonial-text,
.light-theme .testimonial-author {
    color: #212529;
}

.light-theme .portfolio-overlay {
    color: #ffffff;
}

.light-theme .about-content {
    background: rgba(255, 255, 255, 0.9);
    color: #212529;
}

.light-theme .about-section {
    background: #f8f9fa;
}

.light-theme .tab-item,
.light-theme .service-card,
.light-theme .contact-form {
    background: #ffffff !important;
    border-color: rgba(191, 155, 48, 0.3) !important;
    color: #212529 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* New service section styling */
.service-category {
    margin-bottom: 30px;
    display: none;
}

.service-category.active {
    display: block;
}

/* Swiper styling */
.serviceSwiper {
    padding: 20px 10px 40px;
    position: relative;
}

.swiper-slide {
    height: auto;
    padding-bottom: 0;
    margin-bottom: 0;
}

.swiper-pagination {
    bottom: 0 !important;
    margin-top: 0;
    padding-top: 0;
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary);

    .swiper-slide {
        height: auto;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .tab-item {
        padding: 20px;
        /* other properties */
        margin-bottom: 0;
    }

    .swiper-pagination {
        bottom: 0 !important;
        margin-top: 0;
        padding-top: 0;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

/* Light theme swiper styling */
.light-theme .swiper-pagination-bullet-active {
    background: var(--secondary);
}

.light-theme .swiper-button-next,
.light-theme .swiper-button-prev {
    color: var(--secondary);
}

.category-title {
    font-size: 2.2rem;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.category-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

.services-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.service-filter-btn {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 10px 20px;
    margin: 0 10px 10px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-filter-btn:hover,
.service-filter-btn.active {
    background-color: var(--secondary);
    color: #000;
}

/* Light theme service section styles */
.light-theme .service-filter-btn {
    border: 2px solid var(--secondary);
    color: #212529;
}

.light-theme .service-filter-btn:hover,
.light-theme .service-filter-btn.active {
    background-color: var(--secondary);
    color: #000;
}

.light-theme .tab-item {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tab-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.tab-item:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(191, 155, 48, 0.2);
}

.tab-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.tab-item:hover .tab-icon {
    transform: scale(1.2) rotate(5deg);
}

.tab-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text);
    position: relative;
}

.tab-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

.tab-item:hover .tab-title:after {
    width: 60px;
}

.keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.keyword {
    background: rgba(191, 155, 48, 0.2);
    color: var(--secondary);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.tab-item:hover .keyword {
    background: rgba(191, 155, 48, 0.3);
}

.tab-item .btn {
    margin-top: auto;
}

.light-theme .keyword {
    background: rgba(191, 155, 48, 0.15);
    color: #8a6d1b;
}

.light-theme .category-title {
    color: #8a6d1b;
}

.light-theme .category-title:after {
    background: #BF9B30;
}

.light-theme .tab-title:after {
    background: #BF9B30;
}

.light-theme .tab-title,
.light-theme .section-title,
.light-theme .tab-item p,
.light-theme .tab-item li,
.light-theme .service-card h3,
.light-theme .service-card p,
.light-theme .service-body {
    color: #212529 !important;
}

.light-theme .section-title {
    color: #BF9B30 !important;
}

.light-theme .about-quote {
    color: #8a6d1b;
}

.light-theme .about-quote:before {
    color: rgba(191, 155, 48, 0.3);
}

.light-theme h1,
.light-theme h2,
.light-theme h3,
.light-theme h4,
.light-theme h5,
.light-theme h6 {
    color: #212529;
}

.light-theme .main-tabs {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.light-theme .form-control {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #212529;
}

.light-theme .form-control:focus {
    background: rgba(0, 0, 0, 0.1);
    color: #212529;
}

.light-theme .clients-section {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef) !important;
}

.light-theme .testimonials-section {
    background: #f8f9fa;
}

.light-theme .testimonials-overlay {
    background: rgba(255, 255, 255, 0.9);
}

.light-theme .testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(191, 155, 48, 0.3);
}

.light-theme .footer {
    background: #1a1a1a !important;
    color: #ffffff;
}

.light-theme .footer-links a {
    color: #cccccc;
}

.light-theme .footer-links a:hover {
    color: #BF9B30;
}

/* Theme toggle button styles */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.light-theme .theme-toggle {
    color: #ffffff;
}

.theme-toggle:hover {
    transform: rotate(30deg);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.logo {
    max-width: 400px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
    animation: pulse 2s infinite alternate;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-gold:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-gold:hover:before {
    left: 100%;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    color: var(--text) !important;
    margin: 0 10px;
    font-weight: 600;
    position: relative;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover:before {
    width: 100%;
}

.nav-link.active:before {
    width: 100%;
}

/* Main Tabs Section */
.main-tabs {
    padding: 80px 0;
    background: linear-gradient(to right, #000000, #1a1a1a);
}

.tab-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.5s ease;
    cursor: pointer;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    height: 100%;
}

.tab-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.tab-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.tab-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1511578314322-379afb476865?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}

.about-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary);
}

.about-quote {
    font-size: 2rem;
    font-style: italic;
    color: var(--secondary);
    margin: 40px 0;
    position: relative;
    padding-left: 30px;
}

.about-quote:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.3);
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: linear-gradient(to right, #1a1a1a, #000000);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text);
    padding: 8px 20px;
    margin: 0 10px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.filter-btn:hover:after,
.filter-btn.active:after {
    width: 100%;
}

.filter-btn.active {
    color: var(--secondary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-category {
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 10px;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #000000, #1a1a1a);
}

.client-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.client-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Client logos responsive */
@media (max-width: 991px) {
    .clients-section .row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .clients-section .col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        margin-bottom: 20px;
    }

    .client-logo {
        height: 60px;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .clients-section .col {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 15px;
    }

    .client-logo {
        height: 50px;
        padding: 8px;
    }

    .client-logo img {
        max-height: 45px;
    }
}

.tab-description-p {

    margin-top: 10px;
    margin-bottom: 1rem;
    min-height: 118px;
}


/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1511578314322-379afb476865?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    position: relative;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.3);
    position: absolute;
}

.testimonial-text:before {
    top: -20px;
    left: -10px;
}

.testimonial-text:after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--secondary);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: var(--secondary);
    margin-bottom: 5px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(to right, #1a1a1a, #000000);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border-top: 5px solid var(--secondary);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
    color: var(--text);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.event-type-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-type-btn:hover,
.event-type-btn.active {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 20px;
    position: relative;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-links h5 {
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.footer-links a:hover:before {
    width: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: var(--text-secondary);
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #198754;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .logo {
        max-width: 300px;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 250px;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .hero-overlay {
        padding: 0 15px;
    }

    .about-quote {
        font-size: 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .logo {
        max-width: 200px;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .btn-gold {
        padding: 10px 25px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        margin: 5px;
        padding: 5px 15px;
    }
}


/* Service Description Sections - Dark Mode (Default) */
        .service-short-description {
            /* background: var(--secondary-color, #1a1a1a); */
            padding: 60px 0;
        }

        .service-short-description .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color, #D4AF37);
            position: relative;
            display: inline-block;
        }

        .service-short-description .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent-color, #D4AF37);
            margin: 10px auto 0;
        }

        .service-short-description .lead {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text-muted, #aaaaaa);
        }

        .service-long-description {
            background: #1a1a1a !important;
            padding: 60px 0;
        }

        .service-long-description .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color, #D4AF37);
            position: relative;
            display: inline-block;
        }

        .service-long-description .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent-color, #D4AF37);
            margin: 10px auto 0;
        }

        .service-content-body {
            font-size: 1.05rem;
            line-height: 1.9;
            color: #cccccc !important;
        }

        .service-content-body h2,
        .service-content-body h3,
        .service-content-body h4 {
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--accent-color, #D4AF37) !important;
        }

        .service-content-body p {
            margin-bottom: 1rem;
            color: #cccccc !important;
        }

        .service-content-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1rem 0;
        }

        .service-content-body ul,
        .service-content-body ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
            color: #cccccc !important;
        }

        .service-content-body li {
            margin-bottom: 0.5rem;
        }

        /* Service Description Sections - Light Mode */
        .light-theme .service-short-description {
            background: #ffffff !important;
        }

        .light-theme .service-short-description .section-title {
            color: #BF9B30 !important;
        }

        .light-theme .service-short-description .section-title::after {
            background: #BF9B30;
        }

        .light-theme .service-short-description .lead {
            color: #555555 !important;
        }

        .light-theme .service-long-description {
            background: #f8f9fa !important;
        }

        .light-theme .service-long-description .section-title {
            color: #BF9B30 !important;
        }

        .light-theme .service-long-description .section-title::after {
            background: #BF9B30;
        }

        .light-theme .service-content-body,
        .light-theme .service-content-body p,
        .light-theme .service-content-body ul,
        .light-theme .service-content-body ol {
            color: #444444 !important;
        }

        .light-theme .service-content-body h2,
        .light-theme .service-content-body h3,
        .light-theme .service-content-body h4 {
            color: #212529 !important;
        }

/* Instagram Gallery Styles */
        .gallery-header {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1547153760-18fc86324498?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .gallery-filters {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .gallery-filter-btn {
            background: none;
            border: none;
            color: var(--text-muted);
            padding: 10px 20px;
            margin: 0 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        
        .gallery-filter-btn.active, 
        .gallery-filter-btn:hover {
            color: var(--accent-color);
            border-bottom: 2px solid var(--accent-color);
        }
        
        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }
        
        .instagram-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 1/1;
            cursor: pointer;
        }
        
        .instagram-item img,
        .instagram-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .instagram-item:hover img,
        .instagram-item:hover video {
            transform: scale(1.05);
        }
        
        .item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .instagram-item:hover .item-overlay {
            opacity: 1;
        }
        
        .item-type {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
        }
        
        .modal-content {
            background-color: var(--secondary-color);
            color: var(--text-color);
            border-radius: 15px;
            overflow: hidden;
        }
        
        .modal-header {
            border-bottom: 1px solid #333;
            padding: 15px 20px;
        }
        
        .modal-body {
            padding: 0;
        }
        
        .modal-body img,
        .modal-body video {
            width: 100%;
            max-height: 80vh;
            object-fit: contain;
        }
        
        .modal-body .item-caption {
            padding: 15px 20px;
        }
        
        .back-btn {
            position: fixed;
            top: 100px;
            left: 20px;
            z-index: 1000;
            background-color: var(--accent-color);
            color: #000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .back-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            color: #000;
        }
        
        @media (max-width: 768px) {
            .instagram-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 15px;
            }
            
            .gallery-filter-btn {
                padding: 8px 15px;
                margin: 0 5px;
                font-size: 0.9rem;
            }
            
            .back-btn {
                top: 90px;
                left: 15px;
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .instagram-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .gallery-header {
                padding: 70px 0;
            }
        }

        :root {
            --primary-color: #121212;
            --secondary-color: #1a1a1a;
            --accent-color: #D4AF37;
            --text-color: #ffffff;
            --text-muted: #aaaaaa;
        }
        
        body {
            background-color: var(--primary-color);
            color: var(--text-color);
            font-family: 'Montserrat', sans-serif;
            padding-top: 80px;
        }
        
        .navbar {
            background-color: rgba(18, 18, 18, 0.95) !important;
            backdrop-filter: blur(10px);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand img {
            height: 50px;
        }
        
        .btn-gold {
            background-color: var(--accent-color);
            color: #000;
            font-weight: bold;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-gold:hover {
            background-color: #c19b2e;
            transform: translateY(-2px);
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--accent-color);
        }

        .insta-content {
            position: absolute;
            top:68%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 103%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .insta-content-photo{
            position: absolute;
            top:68%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 103%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* Fullscreen Image Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.fullscreen-close:hover {
    color: var(--secondary);
}

.fullscreen-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(191, 155, 48, 0.3);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fullscreen-caption {
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    font-size: 18px;
    margin-top: 15px;
}

.fullscreen-caption .category {
    color: var(--secondary);
    font-weight: 700;
}

/* Make portfolio items clickable */
.portfolio-item {
    cursor: pointer;
}

/* ============================================
   Portfolio Slider - Mobile/Tablet Only
   ============================================ */

/* Desktop: Keep original grid layout (992px and above) */
@media (min-width: 992px) {
    .portfolio-grid.swiper {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        overflow: visible;
    }

    .portfolio-grid.swiper .swiper-wrapper {
        display: contents;
    }

    .portfolio-grid.swiper .portfolio-item.swiper-slide {
        width: 100% !important;
        height: 300px !important;
        margin: 0 !important;
        transform: none !important;
        background: #111;
    }

    .portfolio-grid .swiper-pagination.portfolio-pagination {
        display: none !important;
    }
}

/* Mobile/Tablet: Swiper slider (below 992px) */
@media (max-width: 991px) {
    .portfolio-grid.swiper {
        display: block;
        padding-bottom: 50px;
        overflow: hidden;
    }

    .portfolio-grid.swiper .swiper-wrapper {
        display: flex;
    }

    .portfolio-grid.swiper .portfolio-item.swiper-slide {
        width: 280px;
        height: 300px;
        flex-shrink: 0;
        background: #111;
    }

    .portfolio-grid .swiper-pagination.portfolio-pagination {
        display: block;
        bottom: 0;
    }

    .portfolio-grid .swiper-pagination-bullet {
        background: var(--text);
        opacity: 0.5;
    }

    .portfolio-grid .swiper-pagination-bullet-active {
        background: var(--secondary);
        opacity: 1;
    }
}

/* Small tablets */
@media (max-width: 768px) {
    .portfolio-grid.swiper .portfolio-item.swiper-slide {
        width: 250px;
        height: 280px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .portfolio-grid.swiper .portfolio-item.swiper-slide {
        width: 85vw;
        height: 280px;
    }
}

/* =========================================================================
   Consolidated page CSS — moved out of inline <style> blocks in blade views.
   ========================================================================= */

/* --- Shared utilities (used by product / gallery / infrastructure pages) --- */
.breadcrumb-banner {
    background-image: url('../../img/shortcode/breadcumb.jpg');
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: inherit;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.prose p {
    margin-bottom: 1em;
}

.prose ul, .prose ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

.prose li {
    margin: 0.5em 0;
}

.prose strong {
    font-weight: 600;
    color: inherit;
}

/* ============================ About page ============================ */
.about-header {
    padding-top: 120px;
}

.about-img {
    max-width: 100%;
    border: 3px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(191, 155, 48, 0.2);
}

.about-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-description p {
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    background: linear-gradient(to right, #1a1a1a, #000000);
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(191, 155, 48, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(191, 155, 48, 0.2);
    border-color: rgba(191, 155, 48, 0.3);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.team-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 155, 48, 0.1);
    font-size: 4rem;
    color: var(--secondary);
}

.team-info {
    padding: 25px;
}

.team-name {
    color: var(--text);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-designation {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(191, 155, 48, 0.2);
    border-radius: 50%;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.team-social:hover {
    background: var(--secondary);
    color: #000;
}

/* Highlights Section */
.highlights-section {
    background: linear-gradient(to bottom, #000000, #1a1a1a);
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.4s ease;
    height: 100%;
}

.highlight-item:hover {
    transform: translateY(-10px);
    background: rgba(191, 155, 48, 0.1);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 155, 48, 0.2);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--secondary);
}

.highlight-item h5 {
    color: var(--text);
    margin-bottom: 10px;
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Certificates Section */
.certificates-section {
    background: linear-gradient(to right, #1a1a1a, #000000);
}

.certificate-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.certificate-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.certificate-item:hover img {
    transform: scale(1.1);
}

.certificate-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px 15px 15px;
}

.certificate-overlay h6 {
    color: var(--text);
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to bottom, #1a1a1a, #000000);
}

/* Modal Styling */
.modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(191, 155, 48, 0.3);
}

.modal-header {
    border-bottom: 1px solid rgba(191, 155, 48, 0.2);
}

.modal-title {
    color: var(--secondary);
}

.modal-body p {
    color: var(--text-secondary);
}

/* Light Theme Adjustments */
.light-theme .team-section,
.light-theme .certificates-section,
.light-theme .cta-section {
    background: #ffffff !important;
}

.light-theme .highlights-section {
    background: #f8f9fa !important;
}

.light-theme .team-card,
.light-theme .highlight-item {
    background: rgba(0, 0, 0, 0.05) !important;
}

.light-theme .team-name,
.light-theme .highlight-item h5 {
    color: #212529 !important;
}

.light-theme .team-bio,
.light-theme .team-designation,
.light-theme .highlight-item p,
.light-theme .about-description {
    color: #6c757d !important;
}

@media (max-width: 768px) {
    .about-header {
        padding-top: 100px;
    }

    .team-image {
        height: 250px;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ============================ Contact page ============================ */
.contact-header {
    padding-top: 120px;
}

.contact-section {
    background: linear-gradient(to right, #000000, #1a1a1a);
}

/* Contact Form Styling */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border-top: 4px solid var(--secondary);
}

.contact-form h3 {
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.form-label {
    color: var(--text);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(191, 155, 48, 0.25);
    color: var(--text);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.form-select option {
    background: #1a1a1a;
    color: var(--text);
}

/* Contact Info Card */
.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    border-left: 4px solid var(--secondary);
}

.contact-info-card h3 {
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(191, 155, 48, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.contact-details h6 {
    color: var(--text);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details a,
.contact-details p {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.contact-details a:hover {
    color: var(--secondary);
}

.contact-social h6 {
    color: var(--text);
}

.contact-social .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.contact-social .social-links a:hover {
    background: var(--secondary);
    color: #000;
    transform: translateY(-3px);
}

.whatsapp-cta .btn-success {
    background: #25D366;
    border: none;
    font-weight: 600;
}

.whatsapp-cta .btn-success:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    margin-top: -1px;
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: 10px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Light Theme Adjustments */
.light-theme .contact-section {
    background: #f8f9fa !important;
}

.light-theme .contact-form,
.light-theme .contact-info-card {
    background: #ffffff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.light-theme .form-control,
.light-theme .form-select {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #212529;
}

.light-theme .form-control:focus,
.light-theme .form-select:focus {
    background: #ffffff;
}

.light-theme .form-label,
.light-theme .contact-details h6,
.light-theme .contact-social h6 {
    color: #212529 !important;
}

.light-theme .contact-details a,
.light-theme .contact-details p {
    color: #6c757d !important;
}

.light-theme .map-container iframe {
    filter: none;
}

@media (max-width: 768px) {
    .contact-header {
        padding-top: 100px;
    }

    .contact-form,
    .contact-info-card {
        padding: 25px;
    }

    .map-container {
        height: 300px;
    }
}
