.container{
    max-width: 1320px;
    width: 100%;
}
body{
    font-family: "Libre Franklin", sans-serif;
}
img{
    max-width: 100%;
}
.header-section{
    width:100%;
    padding:18px 0;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    /* background:#fff; */
     background: rgba(255, 255, 255, 0.12);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255,255,255,0.18);
    border-bottom:1px solid #ececec;
}
.nav-container{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}
.logo{
    max-width: 25%;
}

.logo img{
    max-width: 25%;
}

.nav-bar ul{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-bar ul li a{
    text-decoration:none;
    color:#fff;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
    position:relative;
}

.nav-bar ul li a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    left:0;
    bottom:-5px;
    background:#fff;
    transition:0.3s;
}

.nav-bar ul li a:hover::after{
    width:100%;
}


.btn-appointment{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    background:#111;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.btn-appointment:hover{
    background:#333;
    color:#fff;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#111;
}
.dropdown-menu-custom{
    position:relative;
}

.dropdown-menu-custom a i{
    font-size:12px;
    margin-left:5px;
}

.sub-menu{
    position:absolute;
    top:120%;
    left: -632px;
    width:1200px;
    background:#fff;
    padding:15px 0;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:0.4s;
    z-index:999;
}
.nav-text{
    color: #111 !important;
}
.sub-menu li{
    width:100%;
    list-style:none;
}

.sub-menu li a{
    display:block;
    padding:12px 22px;
    color:#111;
    font-size:15px;
    font-weight:500;
    text-decoration:none;
    transition:0.3s;
}

/* .sub-menu li a:hover{
    background:#111;
    color:#fff;
} */

.dropdown-menu-custom:hover .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.sub-img{
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.banner-section{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

/* VIDEO */

.banner-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* DARK OVERLAY */

.banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

.banner-content{
    position:relative;
    z-index:2;
    width:100%;
    height:100vh;
    margin-top: 185px;
    display:flex;
    flex-direction:column;
    justify-content:center;

    padding-left:8%;
    color:#fff;
}
.banner-content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:760px;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding-left:8%;
    color:#fff;
}

.banner-tag{
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
    color:#d6d6d6;
    font-weight:600;
}

.banner-content h1{
    font-size:78px;
    line-height:1;
    font-weight:700;
    margin-bottom:28px;
    text-transform:capitalize;
}

.banner-content p{
    max-width:650px;
    font-size:18px;
    line-height:1.9;
    color:#e5e5e5;
    margin-bottom:35px;
}

.banner-btns{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.banner-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    background:#fff;
    color:#111;
    text-decoration:none;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    transition:0.4s;
}

.banner-btn:hover{
    background:#111;
    color:#fff;
}

.banner-btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border:1px solid rgba(255,255,255,0.4);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    transition:0.4s;
}

.banner-btn-outline:hover{
    background:#fff;
    color:#111;
}

.appointment-note{
    font-size:14px;
    color:#cfcfcf;
    letter-spacing:0.5px;
}

.about-section{
    padding:120px 0;
    background:#f8f8f8;
    overflow:hidden;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:30px;
}

.about-floating-card{
    position:absolute;
    bottom:30px;
    left:30px;

    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.2);

    padding:25px 30px;
    border-radius:20px;
    color:#fff;
}

.about-floating-card span{
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    display:block;
    margin-bottom:8px;
}

.about-floating-card h4{
    font-size:28px;
    margin:0;
    font-weight:700;
}

.about-content{
    padding-left:20px;
}

.about-tag{
    display:inline-block;
    margin-bottom:18px;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#777;
    font-weight:600;
}

.about-content h2{
    font-size:54px;
    line-height:1.2;
    font-weight:700;
    color:#111;
    margin-bottom:25px;
}

.about-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:22px;
}

.about-points{
    margin-top:35px;
    margin-bottom:40px;
}

.point-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
}

.point-item i{
    width:32px;
    height:32px;
    background:#111;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    font-size:12px;
    margin-top:3px;
}

.point-item span{
    font-size:16px;
    line-height:1.7;
    color:#333;
}
.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;
    background:#111;
    color:#fff;

    text-decoration:none;
    border-radius:50px;

    font-size:14px;
    font-weight:600;
    transition:0.4s;
}

.about-btn:hover{
    background:#333;
    color:#fff;
}

.speciality-section{
    padding:120px 0;
    background:#111;
    overflow:hidden;
}


.speciality-title{
    max-width:750px;
    margin:0 auto 70px;
}

.speciality-title span{
    display:inline-block;
    margin-bottom:18px;
    color:#bcbcbc;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
}

.speciality-title h2{
    font-size:58px;
    line-height:1.2;
    color:#fff;
    margin-bottom:25px;
    font-weight:700;
}

.speciality-title p{
    color:#cfcfcf;
    font-size:17px;
    line-height:1.8;
}

.speciality-card{
    position:relative;
    border-radius:28px;
    overflow:hidden;
    height:580px;
}

.speciality-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.speciality-card:hover img{
    transform:scale(1.08);
}

.speciality-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.05));
    z-index:1;
}

.speciality-content{
    position:absolute;
    left:0;
    bottom:0;
    z-index:2;
    padding:35px;
}

.speciality-content span{
    display:block;
    font-size:30px;
    font-weight:700;
    color:#fff;
    margin-bottom:15px;
}

.speciality-content p{
    color:#e4e4e4;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

.atelier-section{
    padding:120px 0;
    background:#f8f8f8;
}

.atelier-title{
    max-width:750px;
    margin:0 auto 70px;
}

.section-tag{
    display:inline-block;
    margin-bottom:18px;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#777;
    font-weight:600;
}

.atelier-title h2{
    font-size:58px;
    line-height:1.2;
    font-weight:700;
    color:#111;
}

.atelier-card{
    background:#fff;
    padding:50px 40px;
    border-radius:30px;
    height:100%;
    box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.dark-card{
    background:#111;
}

.dark-card .card-heading span,
.dark-card .card-heading h3,
.dark-card .process-text h4,
.dark-card .process-text p{
    color:#fff;
}

.card-heading{
    margin-bottom:45px;
}

.card-heading span{
    display:inline-block;
    margin-bottom:15px;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#777;
    font-weight:600;
}

.card-heading h3{
    font-size:38px;
    line-height:1.3;
    font-weight:700;
    color:#111;
}

.atelier-box{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:35px;
}

.atelier-icon{
    min-width:60px;
    height:60px;
    border-radius:50%;
    background:#111;

    display:flex;
    align-items:center;
    justify-content:center;
}

.atelier-icon i{
    color:#fff;
    font-size:20px;
}

.atelier-text h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
    color:#111;
}

.atelier-text p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin:0;
}

.process-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:35px;
}

.step-number{
    min-width:60px;
    height:60px;
    border-radius:50%;

    background:#fff;
    color:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    font-weight:700;
}

.process-text h4{
    font-size:24px;
    margin-bottom:10px;
    font-weight:700;
}

.process-text p{
    font-size:16px;
    line-height:1.8;
    color:#d2d2d2;
    margin:0;
}

.testimonial-section{
    position:relative;
    padding:120px 0;

    background:url('../images/tie.jpg');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    overflow:hidden;
}

.testimonial-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.75);
}

.testimonial-section .container{
    position:relative;
    z-index:2;
}

.testimonial-title{
    max-width:700px;
    margin:0 auto 70px;
}

.testimonial-title span{
    display:inline-block;
    margin-bottom:18px;

    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;

    color:#d2d2d2;
    font-weight:600;
}

.testimonial-title h2{
    font-size:58px;
    line-height:1.2;
    font-weight:700;
    color:#fff;
}

.testimonial-card{

    height:100%;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,0.12);

    border-radius:30px;

    padding:40px 35px;

    transition:0.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.quote-icon{
    width:70px;
    height:70px;

    border-radius:50%;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;
}

.quote-icon i{
    font-size:28px;
    color:#111;
}

.testimonial-card p{
    font-size:16px;
    line-height:1.9;
    color:#f1f1f1;

    margin-bottom:35px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:18px;
}

.client-info img{
    width:70px;
    height:70px;

    object-fit:cover;
    border-radius:50%;
}

.client-info h4{
    font-size:20px;
    color:#fff;
    margin-bottom:5px;
    font-weight:700;
}

.client-info span{
    color:#cfcfcf;
    font-size:14px;
}
