.about-img-full {
    width: 100%;
    height: 80vh; /* control height */
    overflow: hidden;
}

.about-img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* VERY IMPORTANT */
}

.features-section {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
    padding: 100px 0;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2b49;
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

/* CARD DESIGN */
.feature-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ICON */
.feature-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff5a3c, #ff8c66);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
    transition: 0.4s;
}

/* HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-card:hover .icon {
    transform: rotate(10deg) scale(1.1);
}

/* TEXT */
.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

/* GLOW EFFECT */
.feature-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,90,60,0.15), transparent);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
}


/* BENEFITS */
.benefits {
    background: #111;
    color: #fff;
}

/* GALLERY */
.gallery img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
}

/* CTA */


section.section.about {
    margin-top: 17px;
}

.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 18px;
    background: #fff;
    transition: 0.3s;
}

.accordion-button:not(.collapsed) {
    background: #ff5a3c;
    color: #fff;
}

.accordion-body {
    background: #fff;
    color: #555;
    padding: 20px;
}

.accordion-button:focus {
    box-shadow: none;
}


.luxury-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
}

/* TEXT */
.benefits-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color:aliceblue;
}

.benefits-content p {
    color: #cbd5e1;
    margin-bottom: 30px;
}

/* LIST */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 12px;
    transition: 0.4s;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
}

/* ICON */
.benefit-item i {
    font-size: 22px;
    color: #ff5a3c;
    margin-top: 5px;
}

/* TEXT */
.benefit-item h5 {
    margin: 0;
    font-weight: 600;
    color: antiquewhite;
}

.benefit-item p {
    margin: 0;
    font-size: 14px;
    color: #cbd5e1;
}

/* HOVER EFFECT */
.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.1);
}

/* IMAGE */
.benefits-img {
    position: relative;
}

.benefits-img img {
    width: 100%;
    border-radius: 20px;
    transition: 0.4s;
}

.benefits-img:hover img {
    transform: scale(1.05);
}

/* GLOW BORDER */
.benefits-img::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 25px;
    background: linear-gradient(45deg, #ff5a3c, transparent);
    z-index: -1;
    opacity: 0.4;
}


.luxury-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

/* IMAGE */
.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    transition: 0.5s;
}

.about-img:hover img {
    transform: scale(1.08);
}

/* BADGE */
.img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ff5a3c;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
}

/* CONTENT */
.about-content {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
}

/* SUBTITLE */
.subtitle {
    color: #ff5a3c;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

/* HEADING */
.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0;
    color: #1a2b49;
}

/* TEXT */
.about-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* FEATURES */
.about-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
}

.feature-item i {
    color: #ff5a3c;
    font-size: 18px;
}

.na-intro {
    padding: 100px 0;
    background: #ffffff;
}

/* HEADINGS */
.subtitle {
    color: #ff5a3c;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.title {
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0;
}

.desc {
    max-width: 600px;
    margin: auto;
    color: #666;
}

/* CARDS */
.na-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.na-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    transition: 0.4s;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.na-card i {
    font-size: 24px;
    color: #ff5a3c;
}

.na-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* IMAGE BOX */
.na-image-box {
    position: relative;
}

.na-image-box img {
    width: 100%;
    border-radius: 20px;
}

/* FLOATING INFO BOX */
.info-box {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 250px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .title {
        font-size: 28px;
    }
}


.na-infographic {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa, #eef2f7);
    position: relative;
}

/* HEADER */
.na-infographic .subtitle {
    color: #ff5a3c;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.na-infographic h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0;
}

.na-infographic p {
    color: #666;
}

/* STEPS LAYOUT */
.na-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

/* CONNECTING LINE */
.na-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg, #ff5a3c, #ff8c66);
    z-index: 0;
}

/* STEP */
.step {
    width: 23%;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ICON */
.step .icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    transition: 0.4s;
}

.step .icon i {
    font-size: 28px;
    color: #ff5a3c;
}

/* HOVER EFFECT */
.step:hover .icon {
    transform: translateY(-10px) scale(1.1);
    background: linear-gradient(135deg, #ff5a3c, #ff8c66);
}

.step:hover .icon i {
    color: #fff;
}

/* TEXT */
.step h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #666;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .na-steps {
        flex-direction: column;
        gap: 40px;
    }

    .na-steps::before {
        display: none;
    }

    .step {
        width: 100%;
    }
}


.na-image-box {
    position: relative;
}

.na-image-box .main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

/* FLOATING IMAGES */
.float-img {
    position: absolute;
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    animation: floatMove 4s ease-in-out infinite;
}

