.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(15, 15, 15, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.sub-mg {
    margin-top: -45px;
}

.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;
}

.dropdown-menu-custom {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    background: rgba(10, 10, 10, .98);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 25px;
    padding: 25px;
    display: none;

    grid-template-columns: 320px 1fr 1fr 1fr;
    gap: 40px;

    backdrop-filter: blur(20px);
    z-index: 999;
}

.dropdown-menu-custom:hover .mega-menu {
    display: grid;
}

.mega-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    margin-top: 15px;
}

.mega-column h5 {
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
          margin-top: 15px;

}

.mega-column a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    margin-bottom: 25px;
    transition: .3s;
}

.mega-column a:hover {
    color: #fff;
    padding-left: 10px;
}

.mega-footer {
    grid-column: 1/-1;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top: 1px solid rgba(255, 255, 255, .08);

    margin-top: 15px;
    padding-top: 25px;
}

.footer-text {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.footer-text i {
    color: #fff;
    font-size: 32px;
}

.footer-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
}

.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;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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;
}

.international-section {
    padding: 120px 0;
    background: #f8f8f8;
}

.international-card,
.pricing-card {
    height: 100%;
    border-radius: 30px;
    padding: 50px 40px;
}

.international-card {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.pricing-card {
    background: #111;
}

.section-tag {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
}

.section-tag.light {
    color: #cfcfcf;
}

.international-card h2,
.pricing-card h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.international-card h2 {
    color: #111;
}

.pricing-card h2 {
    color: #fff;
}

.section-desc,
.pricing-desc {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.section-desc {
    color: #666;
}

.pricing-desc {
    color: #d2d2d2;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #111;

    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    color: #fff;
    font-size: 20px;
}

.info-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.info-text p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.fit-note {
    margin-top: 40px;
    padding: 25px;
    border-radius: 20px;
    background: #f4f4f4;
    border-left: 4px solid #111;
}

.fit-note p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.pricing-table {
    margin-top: 35px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-item span {
    color: #f1f1f1;
    font-size: 16px;
}

.price-item strong {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.faq-booking-section {
    background: #fff;
    padding: 100px 0;
}

.section-header .sub-title {
    color: #777;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.faq-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 40px;
    border-radius: 25px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 25px 60px rgba(0, 0, 0, 0.10);
}

.faq-box h3 {
    font-size: 30px;
    color: #000;
    margin-bottom: 25px;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #eaeaea;
}

.accordion-button {
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 20px 0;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #000;
}

.accordion-body {
    color: #666;
    padding: 0 0 20px;
}

.consultation-box {
    background: #000;
    color: #fff;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 25px 60px rgba(0, 0, 0, 0.10);
}

.consultation-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

.form-label-top {
    color: #999;
    letter-spacing: 3px;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.consultation-box h3 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.consultation-box .form-control {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 14px 18px;
    border-radius: 0;
}

.consultation-box .form-control::placeholder {
    color: #999;
}

.consultation-box .form-control:focus {
    box-shadow: none;
    border-color: #fff;
    background: transparent;
    color: #fff;
}

.btn-submit {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .4s;
    border-radius: 25px !important;
}

.btn-submit:hover {
    background: #dcdcdc;
}

.appointment-note {
    margin-top: 25px;
    color: #aaa;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
}


.footer-section {
    background-image: url("../images/tie.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    padding: 100px 0 20px 0;
}

.footer-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-col p {
    color: #bdbdbd;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdbdbd;
    text-decoration: none;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info li {
    color: #bdbdbd;
}

.contact-info i {
    color: #fff;
    margin-right: 10px;
}

.social-icons {
    margin-top: 25px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1d1d1d;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    background: #fff;
    color: #111;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #999;
}

.sub-mg-1 {
    margin-top: -90px;
}

.hero-section {
    position: relative;
}

.hero-section .container-fluid {
    padding: 0;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: absolute;
    top: 30%;
    left: 10%;
    /* transform: translate(-50%, -50%); */
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-subtitle {
    color: #f8f8f8;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

.hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;

}

.hero-content p {
    color: #e5e5e5;
    font-size: 18px;
    line-height: 1.8;
    max-width: 750px;
    margin-bottom: 25px;
    text-align: left;

}

.breadcrumb-text {
    color: #f8f8f8;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;

}

/* 
.hero-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-subtitle{
    color:#f8f8f8;
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    color:#fff;
    font-size:72px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    color:#e5e5e5;
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin-bottom:25px;
}

.breadcrumb-text{
    color:#f8f8f8;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
} */

.breadcrumb-text span {
    margin: 0 10px;
    color: #fff;
}


.atelier-about {
    background: #fff;
    padding: 120px 0;
    overflow: hidden;
}


.aboutme-top {
    max-width: 900px;
    margin: auto;
    margin-bottom: 90px;
}

.sub-title {
    color: #222;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.aboutme-top h2 {
    color: #000;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.aboutme-top p {
    color: #222;
    font-size: 18px;
    line-height: 1.9;
}

.aboutme-showcase {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 100px;
}

.aboutme-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 30px;
}

.aboutme-card {
    background: #171717;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 50px;
    border-radius: 30px;
}

.aboutme-card h3 {
    color: #f4f4f4;
    font-size: 40px;
    margin-bottom: 25px;
}

.aboutme-card p {
    color: #cfcfcf;
    line-height: 1.9;
    margin-bottom: 40px;
}

.aboutme-points {
    display: grid;
    gap: 20px;
}

.aboutme-points div {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 15px;
}

.aboutme-points span {
    font-size: 34px;
    color: #fff;
    font-weight: 700;
}

.aboutme-points h5 {
    color: #fff;
    margin: 0;
}

.process-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.process-box {
    background: #171717;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
}

.process-box:hover {
    transform: translateY(-8px);
}

.process-box span {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
}

.process-box h4 {
    color: #000;
    margin: 20px 0;
}

.process-box p {
    color: #222;
    line-height: 1.8;
}

.appointment-banner {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    padding: 45px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.appointment-banner span {
    color: #fff;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
}

.appointment-banner h3 {
    font-size: 42px;
    margin-top: 10px;
    color: #fff;
}

.book-btn {
    background: #fff;
    color: #111;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 60px;
    font-weight: 600;
    transition: .3s;
}

.book-btn:hover {
    background: #e5e5e5;
    color: #111;
}

.our-leather {
    background: #fff;
    color: #111;
}

.small-heading {
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #666;
}

.lead {
    max-width: 800px;
    color: #555;
}

.leather-image {
    height: 650px;
    width: 100%;
    object-fit: cover;
}

.leather-card {
    background: #111;
    color: #fff;
    padding: 45px;
    border-radius: 20px;
    transition: .4s;
}

.leather-card:hover {
    transform: translateY(-8px);
}

.card-number {
    font-size: 60px;
    font-weight: 700;
    color: #888;
    display: block;
    margin-bottom: 15px;
}

.leather-card h3 {
    margin-bottom: 20px;
}

.leather-card p {
    color: #cfcfcf;
}

.leather-card ul {
    margin: 0;
    padding-left: 18px;
}

.leather-card li {
    margin-bottom: 10px;
}

.other-leather {
    background: #f5f5f5;
    padding: 70px 40px;
    border-radius: 20px;
}

.other-leather p {
    max-width: 850px;
    margin: 20px auto 0;
    color: #555;
}

.process-box {
    border: 1px solid #ddd;
    padding: 35px;
    border-radius: 20px;
    height: 100%;
    background: #fff;
    transition: .3s;
}

.process-box:hover {
    background: #111;
    color: #fff;
}

.process-box:hover h4 {
    color: #ddd;

}

.process-box:hover p {
    color: #ddd;
}

.consultation-box {
    background: #111;
    color: #fff;
    padding: 80px 40px;
    border-radius: 25px;
}

.consultation-box p {
    color: #cfcfcf;
    max-width: 700px;
    margin: 20px auto 30px;
}

.contact-section {
    background: #fff;
    padding: 100px 0;
}

.section-subtitle {
    display: block;
    letter-spacing: 4px;
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.section-text {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.contact-info-box {
    background: #000;
    color: #fff;
    padding: 50px;
    height: 100%;
    border-radius: 20px;
}

.info-item {
    margin-bottom: 40px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #999;
}

.info-item a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.info-item p {
    color: #cfcfcf;
    line-height: 1.8;
    margin: 0;
}

.contact-form-box {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    margin-top: 16px;

}

.form-control {
    height: 58px;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 15px 20px;
    box-shadow: none !important;
}

textarea.form-control {
    height: auto;
}

.form-control:focus {
    border-color: #000;
}

.btn-contact {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.btn-contact:hover {
    background: #222;
    color: #fff;
}

.appointment-page {
    padding: 100px 0;
    background: #fff;
}

.section-tag {
    display: block;
    letter-spacing: 4px;
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 15px;
}

.section-title {
    font-size: 54px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.section-text {
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

.consultation-box {
    background: #000;
    color: #fff;
    padding: 50px;
    border-radius: 25px;
    height: 100%;
}

.consultation-box h3 {
    margin-bottom: 40px;
    font-size: 32px;
}

.consultation-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.consultation-item span {
    min-width: 55px;
    height: 55px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.consultation-item h5 {
    margin-bottom: 8px;
}

.consultation-item p {
    color: #cfcfcf;
    margin: 0;
}

.booking-form {
    padding: 50px;
    border-radius: 25px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .06);
}

.booking-form h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.form-control {
    height: 58px;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 15px 20px;
    box-shadow: none !important;
}

textarea.form-control {
    height: auto;
}

.form-control:focus {
    border-color: #000;
}

.appointment-notice {
    background: #f7f7f7;
    border-left: 4px solid #000;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.appointment-notice p {
    margin: 10px 0 0;
    color: #666;
}

.btn-book {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-book:hover {
    background: #222;
    color: #fff;
}

.international-box {
    background: #f8f8f8;
    padding: 50px;
    border-radius: 25px;
    margin-top: 30px;
}

.international-box h3 {
    margin-bottom: 20px;
}

.international-box p {
    color: #666;
    line-height: 1.9;
}

.international-orders {
    padding: 100px 0;
    background: #fff;
}

.section-tag {
    display: block;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

.section-title {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-text {
    color: #666;
    line-height: 1.9;
}

.process-card {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: .3s;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card span {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-card h4 {
    margin-bottom: 15px;
}

.process-card p {
    color: #666;
    margin: 0;
}

.content-box {
    padding: 50px;
    background: #000;
    color: #fff;
    border-radius: 25px;
}

.content-box p {
    color: #d5d5d5;
    line-height: 1.9;
}

.shipping-box {
    padding: 50px;
    background: #f8f8f8;
    border-radius: 25px;
    height: 100%;
}

.shipping-box ul {
    padding: 0;
    list-style: none;
}

.shipping-box li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.ddp-box {
    background: #111;
    color: #fff;
    padding: 60px;
    border-radius: 25px;
}

.ddp-box p {
    color: #d5d5d5;
    line-height: 1.9;
}

.small-note {
    margin-top: 25px;
    font-size: 14px;
    color: #aaa !important;
}

.pricing-section {
    padding: 100px 0;
    background: #fff;
}

.section-subtitle {
    display: block;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.section-text {
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

.pricing-table-wrapper {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .06);
    margin-bottom: 50px;
}

.pricing-table {
    margin: 0;
}

.pricing-table thead {
    background: #000;
}

.pricing-table thead th {
    color: #fff;
    padding: 25px;
    border: none;
    font-weight: 600;
}

.pricing-table tbody td {
    padding: 30px 25px;
    vertical-align: middle;
    border-color: #efefef;
}

.pricing-table h5 {
    margin-bottom: 8px;
    font-weight: 600;
}

.pricing-table p {
    margin: 0;
    color: #777;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-align: right;
    white-space: nowrap;
}

.pricing-note {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.pricing-note h4 {
    margin-bottom: 15px;
}

.pricing-note p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 10px;
}

.pricing-cta {
    background: #000;
    color: #fff;
    padding: 60px;
    border-radius: 25px;
}

.pricing-cta h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

.pricing-cta p {
    color: #cfcfcf;
    max-width: 700px;
    margin: auto auto 25px;
}

.btn-pricing {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.btn-pricing:hover {
    background: #f0f0f0;
    color: #000;
}


.hero-section-1 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: #f8f8f8;
    padding: 80px 0;
}

.story-section-1 {
    padding: 80px 0 0px 0;
}

.hero-img {
    border-radius: 25px;
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.btn-dark-custom {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    transition: .3s;
    text-decoration: none;
}

.btn-dark-custom:hover {
    background: #222;
    color: #fff;
}

.atelier-story-section {
    padding: 120px 0 50px 0;
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.atelier-story-section::before {
    content: "ATELIER";
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    letter-spacing: 15px;
    white-space: nowrap;
}

.story-wrapper {
    position: relative;
    min-height: 650px;
}

.story-content {
    width: 50%;
    padding: 70px;
    border-radius: 25px;
    position: relative;
    z-index: 2;
}

.story-image {
    position: absolute;
    right: 0;
    top: 60px;
    width: 45%;
}

.story-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 25px;
    filter: grayscale(100%);
}

.story-tag {
    display: inline-block;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    color: #777;
    margin-bottom: 20px;
}

.story-content h2 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #000;
}

.story-content p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-features {
    margin: 35px 0;
}

.story-features div {
    margin-bottom: 15px;
    font-weight: 500;
}

.story-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: .3s;
}

.story-btn:hover {
    background: #222;
    color: #fff;
}

.gallery-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    transition: .4s;
}

.gallery-img:hover {
    transform: scale(1.03);
}


.story-box {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.story-box h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

.story-box p {
    color: #666;
    line-height: 2;
}

.features-section-1 {
    padding: 100px 0;
}

.feature-card {
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 25px;
    height: 100%;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.feature-card h5 {
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    margin: 0;
}


.material-box {
    padding: 50px;
}

.material-box p {
    color: #000;
    line-height: 1.9;
}

.cta-section-1 {
    padding-bottom: 100px;
}

.step-box {
    text-align: center;
    padding: 40px;
}

.step-box span {
    width: 80px;
    height: 80px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    font-weight: 700;
    margin-bottom: 25px;
}

.step-box p {
    color: #666;
}


.cta-box {
    background: #000;
    color: #fff;
    padding: 80px;
    text-align: center;
    border-radius: 30px;
}

.cta-box p {
    color: #d0d0d0;
    max-width: 700px;
    margin: 20px auto 35px;
}

.btn-light-custom {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

.btn-light-custom:hover {
    color: #000;
}