/* Custom CSS for ALFADOOR Website */

/* Root Variables */
:root {
    --primary-color: #FFA500;
    --secondary-color: #FF8C00;
    --dark-bg: #2c2c2c;
    --darker-bg: #1a1a1a;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --text-dark: #333333;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
     font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}



/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation Styles */
.navbar {
    background-color: #000000 !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    max-width: 190px;
    width: 100%;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color) !important;
}

.brand-text {
    color: var(--primary-color) !important;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, var(--dark-bg) 0%, var(--medium-gray) 100%);
    min-height: 100vh;
    padding-top: 80px; */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/img/Hero1.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    padding: 2rem;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-image {
    padding: 2rem;
}

.image-placeholder {
    /* width: auto; */
    /* background-color: #e9ecef; */
    border-radius: 1rem;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

/* About Section */
.about-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color) !important;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
}

/* Accomplishments Section */
.accomplishments-section {
    background-color: var(--darker-bg);
    color: white;
    padding: 5rem 0;
}

.accomplishment-item h2 {
    color: var(--primary-color) !important;
    font-size: 90px;
    font-weight: 900 !important;
    margin-bottom: 0.5rem;
}

.accomplishment-item p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.4;
}

/* Service Section */
.service-section {
    padding: 5rem 0;
}

.service-section h2 {
    color: var(--primary-color) !important;
    font-size: 2.5rem;
    font-weight: bold;
}

.service-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.btn-warning {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #000000 !important;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

/* Icon Feature Sections */
.icon-feature-section,
.icon-feature-section-2 {
    background-color: var(--dark-bg);
    color: white;
    padding: 5rem 0;
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color) !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.icon-box i {
    color: #000000 !important;
}

/* Business Show Section */
.business-show-section {
    padding: 5rem 0;
}

.business-show-section h2 {
    color: var(--primary-color) !important;
    font-size: 2.5rem;
    font-weight: bold;
}

.business-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.business-item:hover {
    transform: translateY(-5px);
}

.business-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pagination */
.pagination .page-link {
    color: var(--text-dark);
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #000000 !important;
}

.pagination .page-link:hover {
    color: var(--primary-color);
    background-color: #f8f9fa;
}

/* Lorem Section */
.lorem-section {
    padding: 5rem 0;
}

.lorem-section h2 {
    color: var(--primary-color) !important;
    font-size: 2.5rem;
    font-weight: bold;
}

.lorem-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.faq-section h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: bold;
    text-align: left;
}

.accordion-item {
    border: 1px solid #dee2e6;
    margin-bottom: 1rem;
    border-radius: 5px !important;
}

.accordion-button {
    background-color: #ffffff;
    color: var(--text-dark);
    font-weight: 500;
    border: none;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-gray);
    color: var(--text-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background-color: #ffffff;
}

/* Footer */
/* Footer */
.footer-section {
    background-color: #000000;
    color: #fff;
}

.footer-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffc107;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffc107;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        text-align: center;
    }

    .accomplishments-section .row {
        text-align: center;
    }

    .business-item {
        margin-bottom: 2rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }


    .footer-nav {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .accomplishment-item h2 {
        font-size: 2.5rem;
    }

    .icon-box {
        width: 60px;
        height: 60px;
    }

    .icon-box i {
        font-size: 1.5rem;
    }
}

/* Animation Enhancements */
.wow {
    visibility: hidden;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth Transitions */
* {
    transition: all 0.3s ease;
}

/* Focus States for Accessibility */
/* .btn:focus,
.nav-link:focus,
.accordion-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
} */

/* Loading States */
.image-placeholder img {

    transition: opacity 0.3s ease;
}

.image-placeholder img:not([src]) {
    opacity: 0.5;
}

/* Hover Effects */
.business-item,
.icon-box,
.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon-box:hover {
    transform: scale(1.05);
}

/* Text Selection */
::selection {
    background-color: var(--primary-color);
    color: #000000;
}

::-moz-selection {
    background-color: var(--primary-color);
    color: #000000;
}



/* About Page Specific Styles */

/* About Hero Section */
.about-hero-section {
    background:
        url('/img/WhatsApp\ Image\ 2025-07-18\ at\ 23.32.10_86f258ef.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.31) 0%, rgba(26, 26, 26, 0.463) 100%);
    z-index: 1;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

/* Company Description Section */
.company-description-section {
    background-color: var(--light-gray);
}

.company-description-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

/* Vision Section */
.vision-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.vision-section h2 {
    color: var(--primary-color) !important;
    font-size: 2.5rem;
    font-weight: bold;
}

.vision-section h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.vision-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

/* Mission Section */
.mission-section {
    background-color: var(--dark-bg);
    color: white;
    padding: 5rem 0;
}

.mission-section h2 {
    color: var(--primary-color) !important;
    font-size: 2.5rem;
    font-weight: bold;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    text-align: justify;
}

/* Why Alfadoor Section */
.why-alfadoor-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.why-alfadoor-section h2 {
    color: var(--primary-color) !important;
    font-size: 2.5rem;
    font-weight: bold;
}

.why-alfadoor-section h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Waterproof Section */
.waterproof-section {
    background-color: var(--dark-bg);
    color: white;
    padding: 5rem 0;
}

.waterproof-section .icon-box {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color) !important;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.3);
}

.waterproof-section .icon-box i {
    color: #000000 !important;
}

.waterproof-section h4 {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Global Shift Section */
.global-shift-section {
    /* background: url(/img/the\ global.png);
    padding: 5rem 0; */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/img/the\ global.png);
    background-size: cover;
    background-position: center;

}

.global-shift-section h2 {
    color: var(--primary-color) !important;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.3;
}

.global-shift-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    text-align: justify;
}

.global-shift-section ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
}

.global-shift-section .fa-check {
    color: var(--primary-color) !important;
}


/* Custom Bootstrap Grid for 5 columns */
.col-md-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 768px) {
    .col-md-2-4 {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .col-md-2-4 {
        width: 100%;
    }
}

/* Door Gallery Section */
.door-gallery-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.gallery-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Door Cards */
.door-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: grab;
}

.door-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.door-card.dragging {
    cursor: grabbing;
}

/* Door Image Container */
.door-image-container {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #f8f9fa;
}

.door-image {
    width: 120%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.1s ease;
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.door-card:not(.dragging):hover .door-image {
    transform: scale(1.02);
}

.door-image.panning {
    transition: none;
}

/* Door Info */
.door-info {
    padding: 1rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.door-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    flex-grow: 1;
}

.door-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: left;
}

/* Carousel Customization */
.carousel {
    position: relative;
}

.carousel-inner {
    border-radius: 0;
    overflow: visible;
}

.carousel-item {
    padding: 1rem 0;
}

/* Custom Navigation Dots */
.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    position: static;
}

.carousel-indicators-custom button {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background-color: #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
}

.carousel-indicators-custom button:hover {
    background-color: #bdbdbd;
}

.carousel-indicators-custom button.active {
    background-color: #e0e0e0;
}

.carousel-indicators-custom button.active-orange {
    background-color: #d2691e;
    width: 45px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .door-image-container {
        height: 280px;
    }

    .door-info {
        padding: 0.8rem 0;
    }

    .door-description {
        font-size: 0.85rem;
    }

    .door-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .door-gallery-section {
        padding: 1rem 0;
    }

    .door-image-container {
        height: 250px;
    }

    .door-info {
        padding: 0.7rem 0;
    }

    .door-description {
        font-size: 0.8rem;
    }

    .door-title {
        font-size: 0.95rem;
    }

    .carousel-indicators-custom {
        margin-top: 1.5rem;
        gap: 6px;
    }

    .carousel-indicators-custom button {
        width: 30px;
        height: 3px;
    }

    .carousel-indicators-custom button.active-orange {
        width: 35px;
    }
}

@media (max-width: 576px) {
    .door-image-container {
        height: 220px;
    }

    .gallery-container {
        padding: 0 0.5rem;
    }

    .carousel-item {
        padding: 0.5rem 0;
    }
}

/* Animation for smooth transitions */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Loading animation */
.door-image {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility improvements */
.carousel-indicators-custom button:focus {
    outline: 2px solid #d2691e;
    outline-offset: 2px;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Hover effects for better UX */
.door-card {
    position: relative;
}

.door-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(210, 105, 30, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.door-card:hover::before {
    opacity: 1;
}


/* Partners Section */
.partners-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.partners-section h2 {
    color: var(--primary-color) !important;
    font-size: 2.5rem;
    font-weight: bold;
}

.partner-logo {
    padding: 1rem;
}

.logo-placeholder {
    /* background-color: #f8f9fa;
    border: 2px dashed #dee2e6; */
    border-radius: 10px;
    /* padding: 2rem 1rem; */
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    border-color: var(--primary-color);
    background-color: rgba(255, 165, 0, 0.1);
}

.logo-placeholder span {
    font-size: 1rem;
    font-weight: 500;
}

/* Enhanced Image Styling for About Page */
.about-hero-section .image-placeholder,
.company-description-section .image-placeholder,
.vision-section .image-placeholder,
.mission-section .image-placeholder,
.why-alfadoor-section .image-placeholder,
.waterproof-section .image-placeholder,
.global-shift-section .image-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-section .image-placeholder:hover,
.company-description-section .image-placeholder:hover,
.vision-section .image-placeholder:hover,
.mission-section .image-placeholder:hover,
.why-alfadoor-section .image-placeholder:hover,
.waterproof-section .image-placeholder:hover,
.global-shift-section .image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-section {
        background-attachment: scroll;
    }

    .about-hero-section .hero-text h1 {
        font-size: 2.5rem;
    }

    .vision-section h2,
    .mission-section h2,
    .why-alfadoor-section h2,
    .global-shift-section h2,
    .partners-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .company-description-section,
    .vision-section,
    .mission-section,
    .why-alfadoor-section,
    .waterproof-section,
    .global-shift-section,
    .partners-section {
        text-align: center;
    }

    .waterproof-section .icon-box {
        width: 80px;
        height: 80px;
        margin: 0 auto 1rem auto;
    }

    .waterproof-section .d-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-hero-section .hero-text h1 {
        font-size: 2rem;
    }

    .vision-section h2,
    .mission-section h2,
    .why-alfadoor-section h2,
    .global-shift-section h2 {
        font-size: 1.8rem;
    }

    .partners-section h2 {
        font-size: 1.8rem;
    }

    .company-description-section p,
    .vision-section p,
    .mission-section p,
    .global-shift-section p {
        text-align: left;
    }
}

/* Additional Animation Classes for About Page */
.about-hero-section .hero-text {
    animation-delay: 0.5s;
}

/* Section Spacing */
.company-description-section,
.vision-section,
.mission-section,
.why-alfadoor-section,
.waterproof-section,
.global-shift-section,
.partners-section {
    padding: 5rem 0;
}

/* Text Styling Enhancements */
.company-description-section p:first-child {
    font-weight: 500;
}

.global-shift-section ul {
    padding-left: 0;
}

.global-shift-section ul li {
    padding-left: 0;
    margin-bottom: 0.75rem;
}

/* Button Hover Effects for About Page */
.why-alfadoor-section .btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}

/* /////////////////////// */


/* Container for the entire carousel */
.multi-carousel-container {
    cursor: grab;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

/* Cursor styles for dragging */
.multi-carousel-container.dragging,
#multiCarousel.dragging {
    cursor: grabbing;
}

/* Wrapper for all slides */
.multi-carousel-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Individual slide */
.multi-carousel-item,
.clone {
    box-sizing: border-box;
    flex: 0 0 33.333333%;
    padding: 57px;
    position: relative;
    /* Essential for item-number positioning */
}

/* Control buttons */
.multi-carousel-control-prev,
.multi-carousel-control-next {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    text-decoration: none;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
    width: 40px;
    z-index: 10;
}

.multi-carousel-control-prev:hover,
.multi-carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.multi-carousel-control-prev {
    left: 10px;
}

.multi-carousel-control-next {
    right: 10px;
}

/* Image container with dynamic height */
.img-container {
    border-radius: 1.5rem;
    height: var(--carousel-height, 80vh);
    overflow: hidden;
    position: relative;
}

/* Image styling */
.img-container img,
#carouselInner img {
    height: 100%;
    /* object-fit: cover; */
    object-position: top;
    pointer-events: none;
    user-drag: none;
    width: 100%;
    -webkit-user-drag: none;
    transition: transform 0.3s ease;
}

.img-container:hover img {
    transform: translateZ(0) scale(1.02);
}

/* Item number styling - guaranteed visibility */
.item-number {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    display: inline-flex;
    font-size: 120%;
    font-weight: bold;
    height: 35px;
    justify-content: center;
    left: 1rem;
    position: absolute;
    top: 1rem;
    width: 35px;
    z-index: 2;
    /* Higher than default but below controls */
    /* Isolation prevents z-index context issues */
    isolation: isolate;
}

/* Carousel cursor styling */
#multiCarousel {
    cursor: grab;
    touch-action: pan-y;
}

/* Disable text selection during drag */
#multiCarousel.dragging {
    user-select: none;
    -webkit-user-select: none;
}

/* Responsive adjustments for screens smaller than 720px (45em) */
@media (max-width: 45em) {

    .multi-carousel-item,
    .clone {
        flex: 0 0 100%;
    }
}


/* products Page Specific Styles */

/* products Hero Section */
.products-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/img/simple-clean-newly-built-generic-modern-new-real-estate-block-flats-interior-long-black-corridor-with-black-doors-perspective-new-bought-apartment-new-home-hallway-abstract-concept-copy-space.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

.products-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(44, 44, 44, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%); */
    z-index: 1;
}

.products-hero-section .container {
    position: relative;
    z-index: 2;
}


/* Global Shift Section */
.products-shift-section {
    /* /* background: url(/img/the\ global.png); */
    /* padding: 5rem 0; */
    background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.716));
    background-size: auto;
    background-position: center;

}

.products-shift-section h2 {
    text-align: center;
    color: var(--primary-color) !important;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.3;
}




.products-shift-section h3 {
    text-align: center;
    
    
    font-weight: bold;
    line-height: 1.3;
}

.products-shift-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    /* text-align: justify; */
}

.products-shift-section ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
}

.products-shift-section .fa-check {
    color: var(--primary-color) !important;
}






/* gallery Page Specific Styles */

/* gallery Hero Section */
.gallery-hero-section {
    background: linear-gradient(rgba(168, 168, 168, 0.4), rgba(0, 0, 0, 0.4)),
        url('/img/IMG-20250722-WA0151.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

.gallery-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.gallery-hero-section .container {
    position: relative;
    z-index: 2;
}



/* container.gallery */

.container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    padding: 30px 50px;
}

.gallery-container h1 {
    /* text-align: center; */
    color: #f5a800;
    margin-top: 50px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    /* text-align: center; */
    margin: 25px auto;
    font-size: 18px;
    color: #999;
}

.tz-gallery {
    padding: 40px;
}

/* Override bootstrap column paddings */
.tz-gallery .row>div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '\e003';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}


.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}

@media(max-width: 768px) {
    body {
        padding: 0;
    }
}






/* certificates Hero Section */
.certificates-hero-section {
    background: linear-gradient(rgba(168, 168, 168, 0.078), rgba(0, 0, 0, 0.089)),
        url('/img/modern-interior-design-with-wooden-door-closet.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

.certificates-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.certificates-hero-section .container {
    position: relative;
    z-index: 2;
}




/* catalog Hero Section */
.catalog-hero-section {
    background: linear-gradient(rgba(168, 168, 168, 0.078), rgba(0, 0, 0, 0.089)),
        url('/img/gallery/16.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

.catalog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.catalog-hero-section .container {
    position: relative;
    z-index: 2;
}



/* contact Hero Section */
.contact-hero-section {
    background: linear-gradient(rgba(168, 168, 168, 0.078), rgba(0, 0, 0, 0.089)),
        url('/img/factory.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.contact-hero-section .container {
    position: relative;
    z-index: 2;
}


.map {
    border-radius: 1rem;
    border: none;
    opacity: 0.7;
    transition: 0.3 ease-in-out
}

.map:hover {
    transform: scale(1.1);
    opacity: 1;
}

.nav-link {
    text-decoration: none;
    position: relative;
    transition: 0.4s;
}

.nav-link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    bottom: 0;
    left: 50%;
    background-color: #e5b712;
    transition: all 0.4s;
}

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



/* TESTIMONIAL */

.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
}

#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}

.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: #e7b331;
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

#customers-testimonials .item {
    text-align: center;
    padding: 50px;
    margin-bottom: 80px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    /* max-width: 90px;
    		margin: 0 auto 17px; */
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: #e7cc31;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #e7b331;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}



/* filter */

.filter_links {
  margin-top: 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter_links ul {
  position: relative;
  overflow-x: auto;
  list-style: none;
  display: flex;
  background: #1f1f1f;
  border-radius: 12px;
}

.active_box {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(0px);
  z-index: 1;
  width: 120px;
  height: 100%;
  background: rgb(220, 163, 20);
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}

.filter_links ul li {
  width: 200px;
  z-index: 2;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 8px 0px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
}

.filter_image_container {
  margin-top: 12px;
  padding-inline: 20px;
  max-width: 100%;
  column-count: 3;
  column-gap: 0px;
}

.filter_image_container img {
  transition: width 0.3s height 0.4s ease-out;
  width: 100%;
  padding: 4px;
  border-radius: 12px;
}

.image_box {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease;
}

.hide_image {
  display: none;
}

@media screen and (max-width: 768px) {
  .filter_links {
    padding-block: 12px;
    margin-top: 18px;
    width: 100%;
    margin: 0 auto;
  }
  .filter_image_container {
    margin-top: 12px;
    padding-inline: 20px;
    max-width: 100%;
    column-count: 2;
    column-gap: 0px;
  }
  .active_box {
    width: 70px;
  }

  .filter_links ul li {
    width: 70px;
    padding: 6px 0px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
  }
}

@media screen and (max-width: 368px) {
  .filter_image_container {
    margin-top: 12px;
    padding-inline: 20px;
    max-width: 100%;
    column-count: 1;
    column-gap: 0px;
  }
  .filter_links {
    padding-block: 12px;
    margin-top: 18px;
    width: 100%;
    margin: 0 auto;
  }
}

.icon-padding{
    padding-bottom: 30px;
}