/*
Theme Name: Oraxis
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Architecture & Interior Html Template
Version: 1.0.0
*/

/*
=================================
|***    Table of contents:   ***|
=================================

Main Style file-> assets/css/main.css 

All the SCSS File in SCSS Folder of Assets Folder. You can read the doc file also for better understand.

// BASIC
@import 'basic';

// MIXIN
@import 'variables';

// TYPOGRAPHY
@import 'typography';

// MIX
@import 'mix';

// HELPER
@import 'helper';

// ICON FONTS
@import 'icon';

// ANIMATION
@import 'animation';

// Button 
@import 'btn';

// Colors 
@import 'colors';

// Preloader 
@import 'preloader';

/* ----------------------------------
    Template Section Styles
 ------------------------------------*/

 /* // Menu - Header Section 
 @import 'header';
 
 // Hero Slide - Section 
 @import 'hero';
 
 // Section Title - Heading 
 @import 'section';
 
 // About - Section 
 @import 'about';
 
 // Features - Section 
 @import 'features';
 
 // services - Section 
 @import 'services';
 
 // testimonial - Section 
 @import 'testimonial';
 
 // Portfolio - Cases - Section 
 @import 'project';
 
 // Price Table - Section 
 @import 'price';
 
 // Call To Action - Section 
 @import 'cta';
 
 // Content Block - Section 
 @import 'contentblock';
 
 // team - Section 
 @import 'team';
 
 // funfact - Section 
 @import 'funfact';
 
 // Download - Section 
 @import 'carousel';
 
 // FAQ - Section 
 @import 'faq';
 
 // Blog - Section 
 @import 'blog';
 
 // Contact Us - Section 
 @import 'contact';
 
 // footer - Section 
 @import 'footer';n facts */

.header-top-section.section-bg {
    background: #a6a59d47 !important;
}
/* ===== DREAM DOORS LUXURY COLOR PALETTE ===== */

body{
    background-color: #f8f5ef;
}

/* Header */
.hero-section{
   background-image: url('assets/img/header/background.png');
   background-repeat: no-repeat;
   
}

/* About Sections */
.about-section{
    background: #fcfaf6 !important;
}

/* Counter Section */
.counter-section{
    background: #efe6d6 !important;
}

/* Services / News Section */
.news-section{
    background: #f7f2e8 !important;
}

/* Portfolio Section */
.portfolio-section{
    background: #fdfbf7 !important;
}

/* Contact Info */
.contact-Info-section{
    background: #efe8da !important;
    
}

/* Contact Form */
.contact-section-4{
    background: #f9f6f0 !important;
}

/* Footer */
.footer-section{
    background: #1e1a17 !important;
}

/* Footer Bottom */
.footer-bottom{
    background: #151210 !important;
}

/* Cards */
.news-card-items,
.counter-box-items,
.contact-info-items{
    background: #ffffff !important;
    border: 1px solid #e8dcc7;
    border-radius: 20px;
}

/* Buttons */
.theme-btn{
    background: #c8a96b !important;
    border-color: #c8a96b !important;
}

.theme-btn:hover{
    background: #b89352 !important;
}

/* Section Headings Accent */
.section-title h6{
    color: #c8a96b !important;
}

/* Links Hover */
a:hover{
    color: #c8a96b !important;
}

/* ===== HERO SECTION ===== */

.luxury-hero{
    min-height:100vh;
    background:linear-gradient(135deg,#f8f5ef,#efe5d6);
    display:flex;
    align-items:center;
    padding:120px 8%;
    overflow:hidden;
}

.hero-container{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* ===== LEFT CONTENT ===== */

.hero-content{
    flex:1;
}

.hero-subtitle{
    display:inline-block;
    color:#c8a96b;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:18px;
    text-transform:uppercase;
}

.hero-content h1{
    font-size:68px;
    line-height:1.1;
    color:#241c15;
    margin-bottom:24px;
}

.hero-content p{
    color:#5a5248;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    max-width:550px;
}

/* ===== BUTTONS ===== */

.hero-buttons{
    display:flex;
    gap:18px;
}

.hero-btn{
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.primary-btn{
    background:#c8a96b;
    color:white;
}

.primary-btn:hover{
    background:#b89352;
    transform:translateY(-3px);
}

.secondary-btn{
    border:1px solid #c8a96b;
    color:#241c15;
    background:white;
}

.secondary-btn:hover{
    background:#241c15;
    color:white;
}

/* ===== HORIZONTAL CAROUSEL ===== */

.hero-carousel{
    flex:1;
    overflow:hidden;
    position:relative;
}

.carousel-track{
    display:flex;
    gap:24px;
    width:max-content;

    animation:scrollCarousel 18s linear infinite;
}

.carousel-item{
    min-width:320px;
    height:480px;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.12);

    transition:.4s ease;
}

.carousel-item:hover{
    transform:translateY(-10px);
}

.carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ===== CAROUSEL ANIMATION ===== */

@keyframes scrollCarousel{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .carousel-item{
        min-width:260px;
        height:380px;
    }
}

@media(max-width:576px){

    .luxury-hero{
        padding:120px 20px 80px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .carousel-item{
        min-width:220px;
        height:320px;
    }
}

.aetherCarousel__wrapper {
            max-width: 1400px;
            width: 100%;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(8px);
            border-radius: 2.5rem;
            padding: 1.5rem 1.8rem;
            box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255,255,255,0.7);
            transition: all 0.2s;
        }

        /* flex container: RIGHT side focus */
        .aetherCarousel__container {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            justify-content: flex-end;   /* pushes carousel content to the right side */
        }

        /* left side - poetic description (unique branding) */
        .aetherCarousel__info {
            flex: 1;
            min-width: 190px;
            background: rgba(255, 255, 245, 0.7);
            backdrop-filter: blur(12px);
            border-radius: 2rem;
            padding: 1.6rem 1.8rem;
            border: 1px solid rgba(255,255,240,0.9);
            box-shadow: 0 12px 28px -12px rgba(0,0,0,0.15);
            transition: transform 0.25s ease;
        }

        .aetherCarousel__info:hover {
            transform: translateY(-3px);
        }

        .aetherCarousel__title {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(130deg, #1f3b4c, #2c6280);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.3px;
            margin-bottom: 0.7rem;
        }

        .aetherCarousel__desc {
            font-size: 0.95rem;
            color: #2c3e50;
            line-height: 1.45;
            font-weight: 500;
        }

        .aetherCarousel__badge {
            display: inline-block;
            margin-top: 1.2rem;
            background: #2c6280;
            padding: 0.3rem 1.1rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            color: white;
            letter-spacing: 0.4px;
            backdrop-filter: blur(2px);
        }

        /* ---------- CAROUSEL CORE (RIGHT SIDE) ---------- */
        .aetherCarousel__stage {
            flex: 1.4;
            min-width: 300px;
            position: relative;
            overflow: hidden;
            border-radius: 2rem;
            background: #fef7e8;
            box-shadow: 0 18px 35px -12px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255,255,245,0.6);
        }

        /* sliding track */
        .aetherCarousel__track {
            display: flex;
            flex-direction: row;
            transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            will-change: transform;
        }

        /* each slide */
        .aetherCarousel__slide {
            flex: 0 0 100%;
            aspect-ratio: 16 / 10;
            position: relative;
            overflow: hidden;
            background: #cfdfed;
        }

        .aetherCarousel__slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.4, 1), filter 0.3s ease;
            filter: brightness(0.99) contrast(1.02);
        }

        /* zoom on hover + subtle glow (extra delight) */
        .aetherCarousel__slide:hover img {
            transform: scale(1.04);
            filter: brightness(1.02) contrast(1.04);
        }

        /* elegant caption overlay */
        .aetherCarousel__caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 1rem 1.2rem 0.7rem;
            font-weight: 600;
            font-size: 1rem;
            backdrop-filter: blur(5px);
            pointer-events: none;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            letter-spacing: 0.3px;
        }

        /* navigation panel (aligned right) */
        .aetherCarousel__nav {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 1.2rem;
            margin-top: 1.5rem;
            padding-right: 0.3rem;
        }

        /* unique button styling */
        .aetherCarousel__btn {
            background: rgba(25, 45, 60, 0.85);
            backdrop-filter: blur(10px);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 60px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.2, 0.85, 0.4, 1.1);
            color: #f0f3f8;
            font-size: 1.7rem;
            font-weight: 500;
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255,255,240,0.5);
        }

        .aetherCarousel__btn:hover {
            background: #1f5068;
            transform: scale(1.07);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
            color: white;
        }

        .aetherCarousel__btn:active {
            transform: scale(0.94);
        }

        /* custom dots */
        .aetherCarousel__dots {
            display: flex;
            gap: 0.8rem;
            margin-right: 0.6rem;
        }

        .aetherCarousel__dot {
            width: 9px;
            height: 9px;
            background: rgba(40, 60, 80, 0.45);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.28s ease;
            backdrop-filter: blur(3px);
        }

        .aetherCarousel__dot--active {
            background: #2f6c8f;
            width: 28px;
            box-shadow: 0 0 8px #84b9db;
        }

        /* entrance keyframe animation for each slide (fade + slight rise) */
        @keyframes aetherRise {
            0% {
                opacity: 0;
                transform: translateY(14px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .aetherCarousel__slide {
            animation: aetherRise 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.1) forwards;
        }

        /* shimmer effect over carousel (unique flair) */
        .aetherCarousel__stage::after {
            content: '';
            position: absolute;
            top: 0;
            left: -60%;
            width: 45%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,245,0.2), transparent);
            transform: skewX(-18deg);
            pointer-events: none;
            z-index: 3;
            animation: aetherShimmer 8s infinite;
        }

        @keyframes aetherShimmer {
            0% { left: -60%; }
            25% { left: 150%; }
            100% { left: 150%; }
        }

        /* responsive stacking */
        @media (max-width: 800px) {
            .aetherCarousel__container {
                flex-direction: column;
                align-items: stretch;
            }
            .aetherCarousel__wrapper {
                padding: 1.2rem;
            }
            .aetherCarousel__info {
                text-align: center;
            }
        }

        /* accessibility focus */
        .aetherCarousel__btn:focus-visible, .aetherCarousel__dot:focus-visible {
            outline: 3px solid #ffad60;
            outline-offset: 2px;
        }

     * contact --------------------------------------------------------------------------------------------------------*/
.contact{
  padding: 80px 0;
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.contact-info-wrapper{
  background: #ffffff;
  padding: 40px;
  border-radius: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.contzact-title{
  font-size: 36%;
  font-weight: 700;
  color: #151515;
  margin-bottom: 15px;
}

.contact-text{
  font-size: 16px;
  color: #666666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-deatils{
  margin-bottom: 30px;
}

.contact-item{
  display:flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover{
  transform: translate(5px);
  background: rgba(5, 255, 243, 0.05);
}

.contact-icon{
  width: 50px;
  height:50px;
  background: rgba(5, 255, 243, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon{
  background: #2460f7;
}

.contact-icon i{
  font-size:24px;
  color:#C8A96B;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon{
  color: #C8A96B;
}

.contact-content h4{
  font-size: 18px;
  font-weight: 600;
  color: #151515;
  margin-bottom: 8px;
}

.contact-content p{
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.contact-content a:hover{
  color: #ffffff;
}


.contact-map{
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:0 5px 15px rgba(0, 0, 0, 0.1) ;
}

.contact-map iframe{
  width: 100%;
  height: 280px;
  display: block;
}

/*inquiry form*/
.inquiry-form{
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.inquiry-form::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ffffff ,#fcfcfc );
}

.form-header {
    margin-bottom: 30px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #C8A96B;
    margin: 10px 0 5px;
}

.form-subtitle {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group .form-control {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group .form-control:focus {
    border-color: #C8A96B;
    outline: none;
    box-shadow: 0 0 0 3px rgba(253, 74, 24, 0.1);
}

.form-group textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-group select.form-control {
    appearance: none;
    cursor: pointer;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #C8A96B;
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-group textarea ~ .input-icon {
    top: 18px;
    transform: none;
}

.form-group .form-control:focus ~ .input-icon {
    color: #C8A96B;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    background:#C8A96B ;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #151515;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.form-success h4 {
    font-size: 24px;
    color: #151515;
    margin-bottom: 10px;
}

.form-success p {
    color: #666666;
}   
.contact{
    padding-top: 50px;
    padding-bottom: 50px;
}

/* ========== FLOATING ICONS - LEFT SIDE ========== */
.floating-icons-left {
    position: fixed;
    left: 20px;
    bottom: 40px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    cursor: pointer;
}

/* WhatsApp Icon */
.whatsapp-icon {
    background: #25D366;
    color: #ffffff;
    padding-left: 0px;
}

/* Call Icon */
.call-icon {
    background: #C8A96B;
    color: #ffffff;
    padding-left: 0px;
}

/* Hover Effects */
.float-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.float-icon i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.float-icon:hover i {
    transform: scale(1.1);
}

/* Tooltip for Left Side Icons */
.tooltip {
    position: absolute;
    left: 70px;
    background: #151515;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
}

.tooltip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent #151515 transparent transparent;
}

.float-icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
    left: 60px;
}

/* Pulse Animation for WhatsApp */
@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-icon {
    animation: pulseGreen 2s infinite;
}

/* Pulse Animation for Call Icon */
@keyframes pulseOrange {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 74, 24, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(253, 74, 24, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(253, 74, 24, 0);
    }
}

.call-icon {
    animation: pulseOrange 2s infinite;
    animation-delay: 0.5s;
}


/* Mobile Header */
.header__hamburger{
    display:none;
}


@media (max-width: 991px){

    .header-main{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .header-button{
        display:none;
    }

    .mean__menu-wrapper{
        display:none;
    }

    .header__hamburger{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .sidebar__toggle{
        width:45px;
        height:45px;
        background:#C8A96B;
        border-radius:8px;
        display:flex;
        align-items:center;
        justify-content:center;
        cursor:pointer;
    }

    .sidebar__toggle i{
        color:#fff;
        font-size:20px;
    }

    .header-logo-2 img{
        max-height:55px;
        width:auto;
    }
}