* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #efefef;
    --white: #ffffff;
    --black: #181818;
    --text: #2a2a2a;
    --muted: #757575;
    --gold: #A8874A;
    --gold-dark: #CAA561;
    --dark-card: #494846;
    --soft-beige: #e9e2d4;
    --line: #dddddd;
    --radius-xl: 22px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

body {
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.5;
}

html{
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 28px 0;
}

.section-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 52px;
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.section-subtitle {
    max-width: 680px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px 12px 24px;
    border-radius: 999px;
    background: var(--gold);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;

    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
}

.btn svg {
    width: 18px;
    height: auto;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    transition: ease all 0.3s;
}

.btn:hover svg {
    transform: translateX(6px);
}

.btn-arrow {
    overflow: visible;
}

.arrow-line {
    transform-origin: right center;
    transition: transform 0.3s ease;
}

.btn:hover .arrow-line {
    transform: scaleX(1.25);
}

.btn:hover {
    background: var(--gold-dark);
    padding-right: 20px;
}

.btn.white {
    background: #fff;
    color: var(--gold);
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 36px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo img {
    width: 192px;
    height: auto;
    object-fit: cover;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav a {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Hero */
.hero-section-wrapper {
    width: 100%;
    padding: 5px;
}

.hero-section {
    width: 100%;
    height: calc(100vh - 10px);
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 100px 50px 70px;
    border-radius: 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.hero-title {
    color: #FFF;
    font-family: Oswald;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px;
    text-transform: uppercase;
    margin: 10px 0 17px;
}

.hero-content p {
    color: #FFF;
    font-family: Poppins;
    font-size: 16.8px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 142.857% */
    margin-bottom: 20px;
}

.hero-content h6 {
    color: rgba(255, 255, 255, 0.58);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
}

.hero-video {
    width: 340px;
    height: 453px;
    border-radius: 200px;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}



/* Why Choose */
.why-section {
    width: 100%;
    padding: 70px 50px;
}

.why-content-wrapper {
    width: 100%;
    display: flex;
    background-image: url('../images/why-section-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 50px 0;
    gap: 30px;
    border-radius: 30px;
    background-position: center;
}

.why-image {
    width: 100%;
    max-width: 479px;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content {
    color: #fff;
    width: 100%;
    padding-bottom: 20px;
}

.why-content h2 {
    color: #FFF;
    font-family: Oswald;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 49px;
    /* 122.5% */
    text-transform: uppercase;
    max-width: 478px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 50px 0 32px;
}

.why-box {
    padding: 22px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.16);
}

.why-box h4 {
    color: #FFF;
    font-family: Oswald;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 26px */
    text-transform: uppercase;
}

.why-box p {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 18px;
}

/* Logos */
.logos-section {
    width: 100%;
    padding: 36px 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #F7F7F7;
}

.logo-box {
    width: 100%;
    padding: 26px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.70);
}

.logo-box img {
    width: auto;
    height: 110px;
    object-fit: contain;
}

/* Testimonials */
.testimonial-section {
    width: 100%;
    padding: 70px 38px 50px;
    background: #F2EDE1;
}

.testimonial-section h2 {
    color: #000;
    font-family: Oswald;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
    /* 115% */
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-card {
    width: 100%;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.80);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-name {
    color: #1E1E1E;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin: 12px 0 4px;
}

.testimonial-card span {
    color: #2C170F;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 157.143% */
}

.testimonial-card p {
    color: #1E1E1E;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    margin: 16px 0;
}

.rating-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.rating-wrapper img {
    width: 17px;
    height: 16px;
}

.testimonial-time {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 12px;
    color: #5e5e5e;
    line-height: 1.7;
    margin-bottom: 12px;
}

.stars {
    color: #d7a340;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-arrows {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 24px;
}

.testimonial-arrows .splide__arrow {
    position: static;
    transform: none;
    background: transparent;
    opacity: 1;
    width: 32px;
    height: 32px;
    padding: 0;
    display: none;
}

.testimonial-arrows .splide__arrow svg {
    width: 20px;
    height: 20px;
}

/* Before After */
.ba-section {
    width: 100%;
    padding: 70px;
}

.ba-section h2 {
    color: #000;
    font-family: Oswald;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
    /* 115% */
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-card{
    height: 100%;
}

.ba-arrows {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 50px;
}

.ba-arrows .splide__arrow {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ba-divider {
    width: 2px;
    background: #000;
}

.ba-arrows .splide__arrow svg {
    width: 20px;
    height: 40px;
    aspect-ratio: 1/2;
}

.ba-arrows .splide__arrow span {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.ba-arrows .splide__arrow--prev svg {
    transform: none;
}

/* CTA intro */
.benefits-section {
    width: 100%;
    padding: 70px 70px 60px;
    background: #F7F7F7;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-section h2 {
    color: #000;
    font-family: Oswald;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
    /* 115% */
    text-transform: uppercase;
    text-align: center;
}

.benefits-section>p {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 133.333% */
    max-width: 757px;
    margin: 20px 0 24px;
}

/* Benefit cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.benefit-card {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.80);
    display: flex;
}

.benefit-card img {
    width: 100%;
    height: 100%;
    max-width: 246px;
    object-fit: cover;
    border-radius: 30px;
}

.benefit-content {
    padding: 36px 24px;
}

.benefit-content h3 {
    color: #000;
    font-family: Oswald;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 31.2px */
    text-transform: uppercase;
}

.benefit-content p {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 12px;
}

/* Technology */
.technology-section {
    width: 100%;
    padding: 50px 70px;
    background: #F2EDE1;
}

.tech-head {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.tech-head>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.tech-head h2 {
    color: #000;
    font-family: Oswald;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
    /* 115% */
    text-transform: uppercase;
}

.tech-head p {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 133.333% */
    margin-top: 20px;
    max-width: 634px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tech-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    display: flex;
    flex-direction: column;
}

.tech-card>div {
    background: #fff;
    padding: 30px 30px 34px;
    flex: 1;
    border-radius: 0 0 20px 20px;
}

.tech-card h3 {
    color: #000;
    font-family: Oswald;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
    /* 143.75% */
    text-transform: uppercase;
    padding: 30px;
}

.tech-item {
    margin-bottom: 18px;
}

.tech-item:last-child {
    margin-bottom: 0;
}

.tech-item span {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.tech-item p {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 133.333% */
    margin-top: 8px;
}

/* FAQ */
.faq-section {
    width: 100%;
    padding: 48px 20px 0;
}

.faq-section h2 {
    color: #111827;
    text-align: center;
    font-family: Oswald;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 70px;
    /* 175% */
    text-transform: capitalize;
    margin-bottom: 40px;
}

.faq-wrap {
    max-width: 1080px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 20px;
    background: #F7F7F7;
    margin-bottom: 14px;
    overflow: hidden;
    padding: 32px;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: #F2EDE1;
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #000;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Oswald;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
    text-align: left;
    /* 32.4px */
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon img {
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    color: #000;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 143%;
    /* 25.74px */
    padding-top: 24px;
    max-width: 750px;
    padding-left: 30px;
}

/* Appointment */
.appointment-section {
    width: 100%;
    padding: 70px 70px 90px;
}

.appointment-box {
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(180deg, #A8874A 0%, #D6B880 100%);
    padding: 36px 50px;
    display: flex;
    justify-content: space-between;
}

.appointment-left {
    width: 100%;
    max-width: 540px;
    padding: 36px;
}

.appointment-left h2 {
    color: #FFF;
    font-family: Oswald;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    /* 104.688% */
    text-transform: capitalize;
    max-width: 414px;
}

.appointment-left p {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 16px;

}

.appointment-form-wrap {
    width: 100%;
    padding: 33px 50px;
    max-width: 590px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
}

.appointment-form {
    display: grid;
    gap: 12px;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #fff;
    border-radius: 999px;
    padding: 20px 24px 17px;
    color: rgba(0, 0, 0, 0.50);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.iti--separate-dial-code .iti__selected-flag{
    border-radius: 99px 0 0 99px;
    background-color: transparent;
}


.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.50);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}



.appointment-form textarea {
    border-radius: 30px;
    resize: none;
    min-height: 200px;
}

/* Map */
.map-box {
    border-radius: 0;
    overflow: hidden;
    background: #d7d7d7;
}

.map-box iframe {
    width: 100%;
    border: 0;
    display: block;
}

/* Footer */
.site-footer {
    background: #3f3d38;
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.footer-logo .logo img {
    width: 238px;
    height: auto;
    object-fit: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 30px;
    padding: 46px 70px 70px;
}

.footer-col h4 {
    color: #FFF;
    font-family: Oswald;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 144.444% */
}

.footer-col p{
    max-width: 461px;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.06);
    padding: 16px 70px;
}

.footer-bottom a,
.footer-bottom p {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    /* 166.667% */
}

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 49px;
    height: 49px;
    z-index: 99999;
    transition: transform ease 0.3s;
}

.call-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99999;
    transition: transform ease 0.3s;
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 89px;
    background: #A8874A;
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.40);
}

.call-btn img {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

.whatsapp-btn:hover,
.call-btn:hover {
    transform: translateY(-10px);
}

.testimonial-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-card{
    height: 100%;
}