
/* ========================================
   GOLD NAVIGATION WITH BLACK BACKGROUND
   ======================================== */

/* Main navigation container - ensure black background */
#navbar {
    background-color: #000000 !important; /* Black background */
     z-index: 3 !important; 
}

/* Main navigation menu items - gold text */
#navbar .rd-navbar-nav > li > a {
    color: #D4AF37 !important; /* Gold color */
    transition: all 0.3s ease;
    font-size: medium;
}

/* Hover effect for main menu items */
#navbar .rd-navbar-nav > li > a:hover {
    color: #FFD700 !important; /* Brighter gold on hover */
    background-color: rgba(212, 175, 55, 0.1); /* Subtle gold background */
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Active menu item */
#navbar .rd-navbar-nav > li.active > a {
    color: #FFD700 !important; /* Brighter gold for active */
    font-weight: 600;
}

/* ========================================
   DROPDOWN MENUS (ul li ul)
   ======================================== */

/* Dropdown menu container */
#navbar .rd-navbar-dropdown,
#navbar .rd-navbar-megamenu {
    background-color: #1a1a1a !important; /* Dark gray/black for dropdown */
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Dropdown items - gold text */
#navbar .rd-navbar-dropdown .rd-dropdown-link,
#navbar .rd-navbar-megamenu .rd-megamenu-list-link {
    color: #D4AF37 !important; /* Gold color */
    transition: all 0.3s ease;
    padding: 5px 5px;
}

/* Hover effect for dropdown items */
#navbar .rd-navbar-dropdown .rd-dropdown-link:hover,
#navbar .rd-navbar-megamenu .rd-megamenu-list-link:hover {
    color: #FFD700 !important; /* Brighter gold on hover */
    background-color: rgba(212, 175, 55, 0.15);
    padding-left: 25px; /* Slide effect on hover */
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

/* ========================================
   MEGAMENU SPECIFIC STYLES
   ======================================== */

/* Megamenu container */
#navbar .rd-navbar-megamenu {
    background-color: #1a1a1a !important;
}

/* Megamenu list items */
#navbar .rd-megamenu-list {
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

/* Megamenu list link hover */
#navbar .rd-megamenu-list .rd-megamenu-list-link {
    color: #D4AF37 !important;
    transition: all 0.3s ease;
}

#navbar .rd-megamenu-list .rd-megamenu-list-link:hover {
    color: #FFD700 !important;
    background-color: rgba(212, 175, 55, 0.1);
    padding-left: 15px;
}

/* ========================================
   MOBILE MENU (TOGGLE)
   ======================================== */

/* Mobile menu toggle button */
#navbar .rd-navbar-toggle {
    background-color: transparent;
}

#navbar .rd-navbar-toggle span,
#navbar .rd-navbar-toggle::before,
#navbar .rd-navbar-toggle::after {
    background-color: #D4AF37 !important; /* Gold lines */
}

/* Mobile menu panel */
#navbar .rd-navbar-nav-wrap {
    background-color: #000000 !important; /* Black background for mobile menu */
}

/* Mobile menu items */
.rd-navbar-fixed .rd-navbar-nav li > a {
    color: #D4AF37 !important;
}

.rd-navbar-fixed .rd-navbar-nav li > a:hover {
    color: #FFD700 !important;
    background-color: rgba(212, 175, 55, 0.1);
}

/* ========================================
   HOVER EFFECTS - ALL IN ONE (ALTERNATIVE)
   ======================================== */

/* Gold hover effect for all links in navbar */
#navbar a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar a:hover {
    color: #FFD700 !important;
    transform: translateY(-2px); /* Slight lift effect */
}

/* Remove transform from dropdown items to avoid issues */
#navbar .rd-navbar-dropdown a:hover,
#navbar .rd-navbar-megamenu a:hover {
    transform: translateY(0);
    padding-left: 25px;
}

/* ========================================
   GOLD UNDERLINE EFFECT ON HOVER
   ======================================== */

/* Main menu items with underline effect */
#navbar .rd-navbar-nav > li > a {
    position: relative;
    color: #D4AF37 !important;
    text-decoration: none;
}

#navbar .rd-navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#navbar .rd-navbar-nav > li > a:hover::after {
    width: 80%; /* Underline appears on hover */
}

/* Remove underline for dropdown items */
#navbar .rd-navbar-dropdown a::after,
#navbar .rd-navbar-megamenu a::after {
    display: none;
}
/* ========================================
   VIDEO SECTION WITH OVERLAY CONTENT
   ======================================== */

/* Wrapper to maintain position */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
}

/* Conteneur principal de la section vidéo */
.video-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Fixed state when scrolling up */
.video-section.fixed-video {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

/* Animation for fixed video */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Spacer to prevent content jump */
.video-spacer {
    width: 100%;
    height: 100vh;
    display: none;
}

.video-spacer.active {
    display: block;
}

/* Style de la vidéo */
.myVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenu superposé sur la vidéo - MODIFIED for bottom-left */
.video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end; /* Align to bottom */
    justify-content: flex-start; /* Align to left */
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
    padding-bottom: 80px; /* Space from bottom */
    padding-left: 60px; /* Space from left */
}

/* Conteneur interne - MODIFIED */
#text_video {
    max-width: 800px; /* Reduced width for better left alignment */
    margin-bottom: -100px; /* Adjusted to move content up */
    padding: 0 20px;
    width: 100%;
}

/* Row pour le contenu */
.row {
    text-align: left;
    pointer-events: auto;
}

/* Bannière "STAFFING" */
.banner-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    transform: translateX(-100%); /* Start from left */
    animation: slideInFromLeft 0.8s ease forwards;
    animation-delay: 0.2s;
}

/* Style du titre principal */
.row h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    transform: translateX(-100%); /* Start from left */
    animation: slideInFromLeft 0.8s ease forwards;
    animation-delay: 0.4s;
}

/* Couleur grise pour le span */
.row h2 span {
    color: #858789 !important;
}

/* Style du paragraphe */
.row p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    transform: translateX(-100%); /* Start from left */
    animation: slideInFromLeft 0.8s ease forwards;
    animation-delay: 0.6s;
}
#about-text-1 {
    font-size: 1.1rem;
    color: #0f0e0e;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    transform: translateX(-100%); /* Start from left */
    animation: slideInFromLeft 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* NEW: Slide in from left animation */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Keep fadeInUp for fallback, but override with slideInFromLeft */
.row .banner-title,
.row h2,
.row p {
    opacity: 0; /* Start hidden */
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablettes */
@media (max-width: 992px) {
    .row h2 {
        font-size: 3rem;
    }
    
    .row p {
        font-size: 1rem;
    }
    
    .banner-title {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .video-content {
        padding-left: 40px;
        padding-bottom: 60px;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .video-wrapper {
        height: 80vh;
        min-height: 600px;
    }
    
    .row h2 {
        font-size: 2rem;
    }
    
    .row p {
        font-size: 0.9rem;
    }
    
    .banner-title {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .row br {
        display: none;
    }
    
    .video-content {
        padding-left: 25px;
        padding-bottom: 40px;
    }
}

/* Très petits mobiles */
@media (max-width: 480px) {
    .video-wrapper {
        height: 40vh;
        min-height: 650px;
    }
    
    .row h2 {
        font-size: 1.5rem;
    }
    
    .row p {
        font-size: 0.8rem;
    }
    
    .video-content {
        padding-left: 20px;
        padding-bottom: 30px;
    }
    #about-let-col h2 {
       font-size: 1rem!important;
    }
     #about-button-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: -70px;
        width: 100%;
    }
    .button-style {
    
    right: 0;
}
}
#about-let-col h2 {
    font-size: 3rem;
}


/* ========================================
   ANIMATIONS
   ======================================== */

/* Animation for content when video is fixed */
.video-section.fixed-video ~ .video-content {
    background: rgba(0, 0, 0, 0.7);
}

/* Bouton CTA - Optional if you want to add a button */
.btn-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #858789;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    transform: translateX(-100%);
    animation: slideInFromLeft 0.8s ease forwards;
    animation-delay: 0.8s;
}

.btn-cta:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

/* ========================================
   SERVICES SECTION - GOLD & BLACK THEME
   ======================================== */

/* Section principale */
#services-section {
    background-color: #0a0a0a;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Ajout d'un effet de fond subtil */
#services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Container */
#services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Titre principal */
#services-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Highlight "Offer" en or */
#services-highlight {
    color: #D4AF37 !important;
    position: relative;
    display: inline-block;
}

#services-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}

/* Row des services */
#services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
}

/* Service items */
.service-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

/* Cartes de service */
.box-icon-modern {
    background: linear-gradient(135deg, #111111, #0a0a0a);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.box-icon-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.box-icon-modern:hover::before {
    left: 100%;
}

.box-icon-modern:hover {
    border-color: #D4AF37;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

/* Icônes */
.box-icon-modern-icon {
    font-size: 3.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.box-icon-modern:hover .box-icon-modern-icon {
    transform: scale(1.1);
    color: #F5D061;
}

/* Titres des services */
.box-icon-modern-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.box-icon-modern-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.box-icon-modern-title a:hover {
    color: #D4AF37;
}

/* Texte descriptif */
.box-icon-modern-text {
    color: #aaaaaa !important;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Lien Explore More */
.explore-link {
    display: inline-block;
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.service-item:hover .explore-link {
    opacity: 1;
    transform: translateX(0);
}

.explore-link:hover {
    color: #F5D061;
    letter-spacing: 2px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    #services-title {
        font-size: 2.5rem;
    }
    
    .box-icon-modern {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    #services-section {
        padding: 60px 0;
    }
    
    #services-title {
        font-size: 2rem;
    }
    
    .box-icon-modern-title {
        font-size: 1.1rem;
    }
    
    .explore-link {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Style spécifique pour les liens Explore more */
#service-explore-1, #service-explore-2, #service-explore-3,
#service-explore-4, #service-explore-5, #service-explore-6,
#service-explore-7, #service-explore-8 ,#service-explore-9, #service-explore-10 , #service-explore-11, #service-explore-12 ,
#service-explore-13, #service-explore-14 , #service-explore-15, #service-explore-16 ,
#service-explore-17, #service-explore-18 , #service-explore-19, #service-explore-20 ,
#service-explore-21, #service-explore-22 , #service-explore-23, #service-explore-24 ,
#service-explore-25, #service-explore-26 , #service-explore-27, #service-explore-28 ,
#service-explore-29, #service-explore-30 , #service-explore, #service-explore-31, #service-explore-32 {
    background: linear-gradient(135deg, #D4AF37, #C5A028);
    color: #000000;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

#service-explore-1:hover, #service-explore-2:hover,
#service-explore-3:hover, #service-explore-4:hover,
#service-explore-5:hover, #service-explore-6:hover,
#service-explore-7:hover, #service-explore-8:hover ,
 #service-explore-9:hover, #service-explore-10:hover , #service-explore-11:hover, #service-explore-12:hover ,
 #service-explore-13:hover, #service-explore-14:hover , #service-explore-15:hover, #service-explore-16:hover ,
 #service-explore-17:hover, #service-explore-18:hover , #service-explore-19:hover, #service-explore-20:hover ,
 #service-explore-21:hover, #service-explore-22:hover , #service-explore-23:hover, #service-explore-24:hover ,
 #service-explore-25:hover, #service-explore-26:hover , #service-explore-27:hover, #service-explore-28:hover ,
 #service-explore-29:hover, #service-explore-30:hover , #service-explore-31:hover, #service-explore-32:hover {
    background: linear-gradient(135deg, #C5A028, #D4AF37);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}


/* Category Titles */
.category-title {
    margin: 50px 0 20px 0;
    position: relative;
}

.category-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 4px solid #D4AF37;
    padding-left: 20px;
    margin-bottom: 30px;
}

.category-icon {
    font-size: 1.8rem;
    margin-right: 15px;
}

/* Subtitle */
#services-subtitle {
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* View All Services Button */
.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #C5A028);
    color: #000000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #C5A028, #D4AF37);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    letter-spacing: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .category-heading {
        font-size: 1.3rem;
    }
    
    .btn-gold {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Style pour les images dans les cartes */
.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 20px;
}

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

.box-icon-modern:hover .service-image img {
    transform: scale(1.05);
}

/* Ajustement de la carte pour l'image */
.box-icon-modern {
    padding: 0 0 30px 0;
    overflow: hidden;
}

.box-icon-modern-icon {
    margin-top: 20px;
}

.box-icon-modern-title,
.box-icon-modern-text,
.explore-link {
    padding-left: 25px;
    padding-right: 25px;
}

.box-icon-modern-icon {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-size: 3.5rem;
    color: #C9A96E;  /* Or plus doux, moins jaune */
    text-align: center;
    line-height: 1;
    width: 60px;
    height: 60px;
    margin: 20px auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.box-icon-modern-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Filtre pour or doux - moins jaune */
    filter: invert(58%) sepia(42%) saturate(420%) hue-rotate(2deg) brightness(92%) contrast(88%);
}

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

.box-icon-modern:hover .box-icon-modern-icon img {
    /* Or plus clair au survol, toujours doux */
    filter: invert(65%) sepia(38%) saturate(380%) hue-rotate(2deg) brightness(96%) contrast(86%);
}

/* about section */

#about h2{
    
    color: #f7f7f7;
    
}

/* ========================================
   VERTICAL STACK TITLE - TOP RIGHT ENTRANCE
   ONE BY ONE (SEQUENTIAL, NO OVERLAP)
   ======================================== */

/* Parent container */
.vertical-stack-title {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align to the right */
    gap: 10px;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Individual words */
.vertical-stack-title .word {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-style: italic;
    color: #D4AF37;
    line-height: 1.1;
    white-space: nowrap;
    opacity: 0;
    transform: translate(150px, -150px);
    animation: flyFromTopRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Delays - ONE BY ONE (each word waits for previous to finish) */
.vertical-stack-title .word:nth-child(1) {
    animation-delay: 0s;
}
.vertical-stack-title .word:nth-child(2) {
    animation-delay: 0.7s;  /* Waits for word 1 to finish (0.6s + buffer) */
}
.vertical-stack-title .word:nth-child(3) {
    animation-delay: 1.4s;  /* Waits for word 2 to finish */
}

/* Animation keyframes - simplified for cleaner one-by-one effect */
@keyframes flyFromTopRight {
    0% {
        opacity: 0;
        transform: translate(150px, -150px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Optional: Add a subtle bounce at the end */
@keyframes flyFromTopRightBounce {
    0% {
        opacity: 0;
        transform: translate(150px, -150px);
    }
    70% {
        opacity: 0.9;
        transform: translate(-5px, 5px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Responsive font size */
@media (max-width: 768px) {
    .vertical-stack-title .word {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    .vertical-stack-title {
        gap: 5px;
    }
    .vertical-stack-title .word:nth-child(2) {
        animation-delay: 0.8s;
    }
    .vertical-stack-title .word:nth-child(3) {
        animation-delay: 1.6s;
    }
}

@media (max-width: 480px) {
    .vertical-stack-title .word {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    .vertical-stack-title .word:nth-child(2) {
        animation-delay: 0.9s;
    }
    .vertical-stack-title .word:nth-child(3) {
        animation-delay: 1.8s;
    }
}

.services-title {
    margin-bottom: 15px;
    font-weight: 600;
}

.services-two-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-column {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 150px;
}

.service-column li {
    margin-bottom: 10px;
    color: #dddddd;
    font-size: 1rem;
    line-height: 1.6;
}


.thumbnail-classic-caption {
    
    background: #D4AF37 !important;
   
}

/* Conteneur des images de galerie */
.gallery-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;  /* 1200/800 = 1.5 = 3:2 */
    object-fit: cover;
    display: block;
}

/* Version alternative avec dimensions fixes */
.gallery-image-fixed {
    width: 1200px;
    height: 800px;
    object-fit: cover;
}

/* Version responsive */
.gallery-image-responsive {
    width: 100%;
    height: auto;
    object-fit: cover;
}



/* ===== COUNTER SECTION ===== */
#counter {
  background: linear-gradient(135deg, #140000 0%, #3b0a1a 45%, #1a0000 100%);
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
#counter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Remove image/parallax */
#counter .parallax-container {
  background: transparent !important;
}

#counter .parallax-content {
  position: relative;
  z-index: 2;
}

/* Main box */
#counter .border-classic {
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 45px 25px;
  background: rgba(25, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Counter card */
#counter .counter-classic {
  text-align: center;
  padding: 25px 15px;
  border-radius: 16px;
  transition: all 0.35s ease;
}

#counter .counter-classic:hover {
  transform: translateY(-8px);
  background: rgba(212, 175, 55, 0.05);
}

/* Numbers */
#counter .counter-classic-number {
  font-size: 58px;
  font-weight: 700;
  color: #d4af37 !important;
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
  margin-bottom: 12px;
  line-height: 1;
}

/* k symbol */
#counter .symbol {
  font-size: 28px;
  color: #f5d76e;
}

/* Titles */
#counter .counter-classic-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 10px;
}

/* Gold line */
#counter .counter-classic::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin: 15px auto 0;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
}


/* ===== ABOUT SECTION ===== */
#about-section {
  background: linear-gradient(135deg, #140000 0%, #3b0a1a 45%, #1a0000 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

/* Dark luxury overlay */
#about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Keep content above overlay */
#about-container {
  position: relative;
  z-index: 2;
}

/* Title */
#about-title {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
}

/* Gold highlighted text */
#about-highlight {
  color: #d4af37 !important;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

/* Secondary heading */
#about-agency {
  color: #f5f5f5;
}

/* Right text box */
#about-right-col {
  background: rgba(20, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

/* Main paragraph */
#about-text-1 {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Secondary paragraph */
#about-text-2 {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

/* Button wrapper */
#about-button-wrapper {
  margin-top: 50px;
  text-align: center;
}

/* Luxury button */
#about-button {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #1a0000 !important;
  border: none;
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

/* Button hover */
#about-button:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

/* Button icon */
#about-button-icon {
  color: #3b0a1a;
  margin-right: 10px;
  font-size: 18px;
}

/* Decorative gold line */
#about-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin-top: 22px;
  background: linear-gradient(to right, #d4af37, transparent);
}

/* Responsive */
@media (max-width: 991px) {
  #about-title {
    font-size: 38px;
    text-align: center !important;
  }

  #about-right-col {
    margin-top: 40px;
  }

  #about-button-wrapper {
    text-align: center;
  }
}
@media (min-width: 768px) {
   #about-button {
        right: calc(50% - 85px);
        bottom: -81px;
    }
}



/* ===== SERVICES SECTION ===== */
#service {
  background: linear-gradient(135deg, #140000 0%, #3b0a1a 45%, #1a0000 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
#service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Content above overlay */
#service .container {
  position: relative;
  z-index: 2;
}

/* Equal height layout */
#service .row.align-items-stretch {
  display: flex;
  align-items: stretch;
}

/* Image card */
#service .service-detail-img {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: rgba(20, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

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

/* Hover zoom */
#service .service-detail-img:hover img {
  transform: scale(1.05);
}

/* Info box */
#service .info-box {
  height: 100%;
  background: rgba(20, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 45px;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

/* Heading */
#service .info-box h3 {
  color: #d4af37 !important;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 25px;
  position: relative;
}

/* Gold line */
#service .info-box h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 16px;
  background: linear-gradient(to right, #d4af37, transparent);
}

/* Paragraphs */
#service .info-box p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Services title */
#service .services-title {
  color: #ffffff !important;
  font-size: 20px;
  font-weight: 700;
  margin-top: 25px;
}

/* Two columns */
#service .services-two-columns {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}

/* Lists */
#service .service-column {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

/* List items */
#service .service-column li {
  color: #f5f5f5;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: all 0.3s ease;
}

/* Hover effect */
#service .service-column li:hover {
  color: #d4af37;
  padding-left: 8px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991px) {
  #service {
    padding: 80px 0;
  }

  #service .info-box {
    padding: 35px;
    margin-top: 30px;
  }

  #service .info-box h3 {
    font-size: 30px;
  }

  #service .services-two-columns {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {

  #service .row.align-items-stretch {
    display: block;
  }

  #service .service-detail-img {
    height: auto;
    margin-bottom: 30px;
  }

  #service .service-detail-img img {
    height: auto;
  }

  #service .info-box {
    padding: 28px 22px;
  }

  #service .info-box h3 {
    font-size: 26px;
    text-align: center;
  }

  #service .info-box h3::after {
    margin: 14px auto 0;
  }

  #service .info-box p {
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
  }

  #service .services-title {
    text-align: center;
    font-size: 18px;
  }

  /* Stack service columns */
  #service .services-two-columns {
    flex-direction: column;
    gap: 0;
  }

  #service .service-column li {
    text-align: center;
    font-size: 15px;
  }
}


/* ===== CLIENT TESTIMONIAL SECTION ===== */
#client {
  background: linear-gradient(135deg, #140000 0%, #3b0a1a 45%, #1a0000 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Remove old background image effect */
#client.bg-image-2 {
  background-image: none !important;
}

/* Luxury dark overlay */
#client::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 30%),
    rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Content above overlay */
#client .container {
  position: relative;
  z-index: 2;
}

/* Section title */
#client h2 {
  color: #ffffff;
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 70px;
  letter-spacing: 1px;
}

/* Gold text */
#client .text-third {
  color: #d4af37 !important;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

/* Carousel spacing */
#client .owl-modern {
  position: relative;
}

/* Testimonial card */
#client .quote-lisa {
  padding: 20px;
}

/* Main card */
#client .quote-lisa-body {
  background: rgba(20, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 28px;
  padding: 55px 45px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
#client .quote-lisa-body:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* Decorative glow */
#client .quote-lisa-body::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
  border-radius: 50%;
}

/* Quote text */
#client .quote-lisa-text .q {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 2;
  font-style: italic;
  margin-bottom: 40px;
  position: relative;
}

/* Gold quote icon effect */
#client .quote-lisa-text .q::before {
  content: "“";
  font-size: 90px;
  color: rgba(212, 175, 55, 0.18);
  position: absolute;
  top: -45px;
  left: -10px;
  font-family: serif;
}

/* Client image */
#client .quote-lisa-figure {
  display: inline-block;
  margin-bottom: 18px;
}

#client .quote-lisa-figure img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #d4af37;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
  transition: all 0.35s ease;
}

/* Image hover */
#client .quote-lisa-body:hover .quote-lisa-figure img {
  transform: scale(1.06);
}

/* Client name */
#client .quote-lisa-cite {
  margin-top: 10px;
}

#client .quote-lisa-cite a {
  color: #d4af37 !important;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

#client .quote-lisa-cite a:hover {
  color: #f5d76e !important;
}

/* Owl dots */
#client .owl-dots {
  margin-top: 40px;
  text-align: center;
}

#client .owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
  display: block;
  border-radius: 50%;
  margin: 5px;
  transition: all 0.3s ease;
}

#client .owl-dot.active span,
#client .owl-dot:hover span {
  background: #d4af37;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991px) {

  #client {
    padding: 90px 0;
  }

  #client h2 {
    font-size: 40px;
    margin-bottom: 50px;
  }

  #client .quote-lisa-body {
    padding: 45px 30px;
  }

  #client .quote-lisa-text .q {
    font-size: 17px;
    line-height: 1.9;
  }
}

/* Mobile */
@media (max-width: 767px) {

  #client {
    padding: 70px 0;
  }

  #client h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 40px;
  }

  #client .quote-lisa {
    padding: 10px;
  }

  #client .quote-lisa-body {
    padding: 35px 22px;
    border-radius: 22px;
  }

  #client .quote-lisa-text .q {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  #client .quote-lisa-text .q::before {
    font-size: 65px;
    top: -35px;
  }

  #client .quote-lisa-figure img {
    width: 80px;
    height: 80px;
  }

  #client .quote-lisa-cite a {
    font-size: 16px;
  }
}


/* ================================
   NEWS SECTION - 2026 LUXURY THEME
   Burgundy + Gold + Black
================================ */

#news {
  background: linear-gradient(135deg, #120708 0%, #1d0b0d 50%, #0a0a0a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#news::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(180, 30, 60, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.12), transparent 30%);
  pointer-events: none;
}

/* SECTION TITLE */
#news h2 {
  color: #ffffff;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

#news h2::after {
  content: "";
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #ffde7a);
  display: block;
  margin: 18px auto 0;
  border-radius: 50px;
}

/* GRID */
#news .row {
  position: relative;
  z-index: 2;
}

/* NEWS CARDS */
#news .post-classic,
#news .post-quote,
#news .post-picture {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

#news .post-classic:hover,
#news .post-quote:hover,
#news .post-picture:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

/* IMAGE */
#news .media-link {
  overflow: hidden;
}

#news .media-link img,
#news .post-picture img {
  width: 100%;
  transition: transform 0.6s ease;
}

#news .post-classic:hover img,
#news .post-picture:hover img {
  transform: scale(1.08);
}

/* CONTENT SPACING */
#news .post-classic,
#news .post-quote {
  padding: 35px 30px;
}

/* DATE */
#news .post-classic-date {
  color: #b98a95;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

/* CATEGORY LINK */
#news .post-classic-date a,
#news .text-third {
  color: #d4af37 !important;
  text-decoration: none;
  transition: 0.3s ease;
}

#news .post-classic-date a:hover {
  color: #ffe08a !important;
}

/* TITLES */
#news .post-classic-title {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 28px;
  transition: 0.3s ease;
}

#news .post-classic:hover .post-classic-title,
#news .post-quote:hover .post-classic-title {
  color: #f7d774;
}

/* LEARN MORE BUTTON */
#news .post-classic-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d4af37;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

#news .post-classic-link::after {
  content: "";
  width: 0;
  height: 2px;
  background: #d4af37;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}

#news .post-classic-link:hover {
  color: #ffe08a;
}

#news .post-classic-link:hover::after {
  width: 100%;
}

/* QUOTE CARD STYLE */
#news .post-quote {
  background: linear-gradient(
    145deg,
    rgba(90, 12, 28, 0.95),
    rgba(25, 7, 10, 0.95)
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* INSTAGRAM CARD */
#news .post-picture {
  position: relative;
}

#news .post-picture .icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: 0.4s ease;
}

#news .post-picture:hover .icon {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  #news {
    padding: 80px 0;
  }

  #news h2 {
    font-size: 40px;
    margin-bottom: 50px;
  }

  #news .post-classic-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  #news {
    padding: 70px 0;
  }

  #news h2 {
    font-size: 32px;
    letter-spacing: 2px;
  }

  #news .post-classic,
  #news .post-quote {
    padding: 28px 22px;
  }

  #news .post-classic-title {
    font-size: 20px;
    line-height: 1.4;
  }

  #news .post-classic-link {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #news h2 {
    font-size: 28px;
  }

  #news .post-classic-title {
    font-size: 18px;
  }

  #news .post-classic-date {
    font-size: 12px;
  }
}


/* ==========================================
   OUR GALLERY - 2026 LUXURY BURGUNDY THEME
   Black + Gold + Double Burgundy
========================================== */

#our-gallery {
  background: linear-gradient(
    135deg,
    #090909 0%,
    #14070a 35%,
    #2a0c14 70%,
    #090909 100%
  );
  padding: 110px 0;
  position: relative;
 
}

/* GLOW EFFECTS */
#our-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left,
      rgba(122, 18, 42, 0.22),
      transparent 35%),
    radial-gradient(circle at bottom right,
      rgba(212, 175, 55, 0.12),
      transparent 30%);
  pointer-events: none;
}

/* SECTION TITLE */
#our-gallery h2 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

#our-gallery h2::after {
  content: "";
  width: 130px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #ffe08a);
  display: block;
  margin: 18px auto 0;
  border-radius: 50px;
}

/* GRID */
#our-gallery .row {
  position: relative;
  z-index: 2;
}

/* CARD */
#our-gallery .thumbnail-classic {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.45s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  margin-bottom: 30px;
}

/* HOVER */
#our-gallery .thumbnail-classic:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
}

/* IMAGE */
#our-gallery .thumbnail-classic-figure {
  overflow: hidden;
  position: relative;
}

#our-gallery .thumbnail-classic-figure img {
  width: 100%;
  transition: transform 0.7s ease;
}

#our-gallery .thumbnail-classic:hover img {
  transform: scale(1.08);
}

/* IMAGE OVERLAY */
#our-gallery .thumbnail-classic-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.88),
    rgba(122, 18, 42, 0.12),
    transparent
  );
  opacity: 0;
  transition: 0.4s ease;
}

#our-gallery .thumbnail-classic:hover .thumbnail-classic-figure::after {
  opacity: 1;
}

/* CAPTION */
#our-gallery .thumbnail-classic-caption {
  padding: 28px 24px 30px;
  text-align: center;
}

/* TITLE */
#our-gallery .thumbnail-classic-title {
  margin-top: 12px;
}

#our-gallery .thumbnail-classic-title a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

#our-gallery .thumbnail-classic:hover .thumbnail-classic-title a {
  color: #f7d774;
}

/* TEXT */
#our-gallery .thumbnail-classic-text {
  color: #d6c7cb;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
}

/* ICON */
#our-gallery .icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #d4af37, #f7d774);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 24px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
  margin-right: 20px;
}

#our-gallery .thumbnail-classic:hover .icon {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}



/* BUTTON */
#our-gallery .button-third {
  background: linear-gradient(135deg, #7a122a, #4b0918);
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 10px 80px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

#our-gallery .button-third:hover {
  background: linear-gradient(135deg, #d4af37, #f7d774);
  color: #111111;
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.35);
}

/* REMOVE DUPLICATE BUTTON */
#our-gallery .row > .button-style-2 {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  #our-gallery h2 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  #our-gallery {
    padding: 90px 0;
  }

  #our-gallery h2 {
    font-size: 40px;
    margin-bottom: 55px;
  }

  #our-gallery .thumbnail-classic-title a {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  #our-gallery {
    padding: 75px 0;
  }

  #our-gallery h2 {
    font-size: 34px;
    letter-spacing: 2px;
  }

  #our-gallery .thumbnail-classic-caption {
    padding: 24px 20px;
  }

  #our-gallery .thumbnail-classic-title a {
    font-size: 20px;
  }

  #our-gallery .thumbnail-classic-text {
    font-size: 14px;
  }

  #our-gallery .button-third {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  #our-gallery h2 {
    font-size: 28px;
  }

  #our-gallery .thumbnail-classic-title a {
    font-size: 18px;
  }

  #our-gallery .thumbnail-classic-text {
    font-size: 13px;
  }
}



/* =========================
   2026 LUXURY BODY THEME
   Gold + Black + Burgundy
========================= */

:root{
  --black: #0b0b0d;
  --black-soft: #121217;

  --gold: #d4af37;
  --gold-light: #f6e7a1;

  --burgundy: #6b0f1a;
  --burgundy-dark: #3b0710;

  --text: #e9e9e9;
  --muted: #b5b5b5;
}

/* BODY BASE */
body {
  background: var(--black);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* GENERAL SECTIONS */
section {
  background: transparent;
  position: relative;
  padding:  0;
}

/* HEADINGS */
h1, h2, h3, h4, h5 {
  color: var(--gold);
  letter-spacing: 1px;
  font-weight: 600;
}

/* TEXT STYLING */
p {
  color: var(--muted);
}

/* LINKS */
a {
  color: var(--gold-light);
  transition: 0.3s ease;
}

a:hover {
  color: var(--burgundy);
}

/* =========================
   GOLD + BURGUNDY ACCENTS
========================= */

.text-third {
  color: var(--gold) !important;
}

.text-secondary {
  color: var(--burgundy) !important;
}

/* BUTTONS */
.button,
.button-2 {
  background: linear-gradient(135deg, var(--burgundy), var(--black-soft));
  border: 1px solid var(--gold);
  color: var(--gold-light);
  border-radius: 0;
  transition: all 0.4s ease;
}

.button:hover,
.button-2:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* =========================
   NAVBAR
========================= */

.rd-navbar {
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--burgundy-dark);
}

.rd-nav-link {
  color: var(--text);
}

.rd-nav-link:hover {
  color: var(--gold);
}

/* =========================
   HERO SECTION
========================= */

.bg-image-2 {
  position: relative;
  background-size: cover;
  background-position: center;
}

.bg-image-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85),
    rgba(107,15,26,0.55)
  );
}

/* =========================
   COUNTER / STATS SECTION
========================= */

.counter-classic {
  text-align: center;
  padding: 20px;
  border: 1px solid var(--burgundy-dark);
  background: rgba(18,18,23,0.7);
}

.counter-classic-number {
  font-size: 40px;
  color: var(--gold);
}

.counter-classic-title {
  color: var(--muted);
}

/* =========================
   ABOUT SECTION
========================= */

#about-section,
.section-xxl {
  background: linear-gradient(
    135deg,
    var(--black),
    var(--burgundy-dark)
  );
}

/* =========================
   SERVICES BOX
========================= */

.service-detail-img img {
  border: 3px solid var(--gold);
  filter: contrast(1.05);
}

.info-box {
  background: var(--black-soft);
  border: 1px solid var(--burgundy-dark);
  padding: 30px;
}

/* =========================
   GALLERY HOVER
========================= */

.thumbnail-classic:hover {
  transform: scale(1.03);
  transition: 0.4s ease;
  border: 1px solid var(--gold);
}

/* =========================
   CLIENTS / TESTIMONIALS
========================= */

.quote-lisa-body {
  background: var(--black-soft);
  border-left: 3px solid var(--burgundy);
  padding: 25px;
}

/* =========================
   FOOTER
========================= */

footer {
  background: linear-gradient(
    180deg,
    var(--black),
    var(--burgundy-dark)
  );
  border-top: 1px solid var(--gold);
}

footer h2 {
  color: var(--gold);
}

footer p {
  color: var(--muted);
}

/* =========================
   SCROLL / SELECTION
========================= */

::selection {
  background: var(--gold);
  color: var(--black);
}

#mission-about {
   
    margin-top: 0px !important;
}

#partners img {
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}

#partners img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.contact-box {
  border-radius: 12px;
}



.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 20px;
  box-sizing: border-box;
}

.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.8);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
  background: #D4AF37;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.slider-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #D4AF37;
  transform: scale(1.2);
}



