﻿/* =========================================
   HERO SECTION CSS
========================================= */

.interior-hero {
    position: relative;
    width: 100%;
    height: 550px;
    background: url('https://images.unsplash.com/photo-1600210492493-0946911123ea?q=80&w=1920&auto=format&fit=crop') center center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;

}

/* OVERLAY */

.interior-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.50) 42%,
        rgba(0,0,0,0.10) 100%
    );
}

/* CONTAINER */

.interior-hero .container {
      position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding-left: 65px;
    padding-right: 40px;
}

/* WRAPPER */

.interior-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================================
   LEFT CONTENT
========================================= */

.interior-hero-content {
    width: 52%;
}

.hero-subtitle {
    display: inline-block;
    color: #0A43B8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.interior-hero-content h1 {
    color: #ffffff;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    max-width: 720px;
}

.interior-hero-content p {
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 20px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-btn-primary,
.hero-btn-outline {
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.hero-btn-primary {
    background: #0A43B8;
    color: #ffffff;
    border: 1px solid #0A43B8;
    box-shadow: 0 10px 25px rgba(10,67,184,0.25);
}

.hero-btn-primary:hover {
    background: #08338d;
    transform: translateY(-4px);
}

.hero-btn-outline {
    border: 1px solid rgba(255,255,255,0.40);
    color: #ffffff;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.hero-btn-outline:hover {
    background: #ffffff;
    color: #0A43B8;
    transform: translateY(-4px);
}

/* =========================================
   RIGHT SIDE CARDS
========================================= */
/* =========================================
   RIGHT SIDE SMALL FLOATING CARDS
========================================= */

.interior-hero-cards {
    width: 290px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* CARD */

.hero-info-card {
    position: relative;
    background: rgba(255,255,255,0.96);
    border-radius: 18px;
    padding: 18px 20px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.5);
}

.hero-info-card:hover {
    transform: translateY(-4px);
}

/* TOP */

.hero-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

/* ICON */

.hero-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: rgba(10,67,184,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-icon i {
    font-size: 22px;
    color: #0A43B8;
}

/* NUMBER */

.hero-card-number {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
}

/* TEXT */

.hero-info-card h3 {
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 12px;
    padding-left: 66px;
}

/* BOTTOM LINE */

.hero-card-line {
    width: 72px;
    height: 3px;
    border-radius: 30px;
    background: #0A43B8;
    margin-left: 66px;
}

/* SHAPE EFFECT */

.hero-info-card::before {
    content: "";
    position: absolute;
    top: -35px;
    right: -35px;
    width: 90px;
    height: 90px;
    background: rgba(10,67,184,0.04);
    border-radius: 50%;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .interior-hero-cards {
        width: 100%;
        max-width: 320px;
    }

}

@media (max-width: 767px) {

    .interior-hero-cards {
        max-width: 100%;
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .interior-hero-content h1 {
        font-size: 56px;
    }

}

@media (max-width: 991px) {

    .interior-hero {
        height: auto;
        padding: 120px 0 90px;
    }

    .interior-hero-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }

    .interior-hero-content {
        width: 100%;
    }

    .interior-hero-cards {
        width: 100%;
        max-width: 450px;
    }

    .interior-hero-content h1 {
        font-size: 48px;
    }

}

@media (max-width: 767px) {

    .interior-hero {
        padding: 100px 0 70px;
    }

    .interior-hero-content h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .interior-hero-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        text-align: center;
    }

    .interior-hero-cards {
        max-width: 100%;
    }

    .hero-card-number {
        font-size: 28px;
    }

    .hero-info-card {
        padding: 22px;
    }

}

/* =========================================
   ABOUT SECTION
========================================= */

.interior-about-section {
    position: relative;
    padding: 85px 0;
    background: #ffffff;
}

.interior-about-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* WRAPPER */

.interior-about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

/* =========================================
   LEFT IMAGE
========================================= */

.interior-about-image {
    width: 47%;
}

.interior-about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* =========================================
   RIGHT CONTENT
========================================= */

.interior-about-content {
    width: 53%;
}

.interior-small-title {
    display: inline-block;
    color: #0A43B8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.interior-about-content h2 {
    font-size: 52px;
    line-height: 1.12;
    color: #111111;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    max-width: 620px;
}

.interior-about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #666666;
    margin-bottom: 38px;
    max-width: 620px;
}

/* =========================================
   FEATURE BOXES
========================================= */

.interior-about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* BOX */

.interior-feature-box {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    transition: 0.4s ease;
}

.interior-feature-box:hover {
    transform: translateY(-4px);
    border-color: #0A43B8;
    background: #ffffff;
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}

/* ICON */

.interior-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(10,67,184,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 16px;
}

.interior-feature-icon i {
    font-size: 22px;
    color: #0A43B8;
}

/* TEXT */

.interior-feature-box h3 {
    font-size: 15px;
    line-height: 1.5;
    color: #111111;
    font-weight: 600;
    margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .interior-about-content h2 {
        font-size: 44px;
    }

}

@media (max-width: 991px) {

    .interior-about-section {
        padding: 70px 0;
    }

    .interior-about-wrapper {
        flex-direction: column;
        gap: 45px;
    }

    .interior-about-image,
    .interior-about-content {
        width: 100%;
    }

    .interior-about-image img {
        height: auto;
    }

    .interior-about-features {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .interior-about-section {
        padding: 60px 0;
    }

    .interior-about-section .container {
        padding: 0 20px;
    }

    .interior-about-content h2 {
        font-size: 34px;
    }

    .interior-about-content p {
        font-size: 15px;
    }

    .interior-about-features {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   SERVICES SECTION
========================================= */

.interior-services-section {
    position: relative;
    padding: 30px 0;
    background:
    linear-gradient(
        180deg,
        #03162f 0%,
        #061b38 100%
    );
    overflow: hidden;
}

.interior-services-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* =========================================
   TITLE
========================================= */

.interior-services-title {
    text-align: center;
    margin-bottom: 55px;
}

.interior-services-title span {
    display: inline-block;
    color: #0A43B8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.interior-services-title h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.title-line {
    width: 70px;
    height: 4px;
    background: #0A43B8;
    border-radius: 30px;
    margin: auto;
}

/* =========================================
   GRID
========================================= */

.interior-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =========================================
   CARD
========================================= */

.interior-service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.interior-service-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */

.service-image {
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.interior-service-card:hover .service-image img {
    transform: scale(1.08);
}

/* CONTENT */

.service-content {
    display: flex;
    gap: 18px;
    padding: 24px;
}

/* ICON */

.service-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: rgba(10,67,184,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 22px;
    color: #0A43B8;
}

/* TEXT */

.service-text h3 {
    font-size: 20px;
    color: #111111;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
    margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .interior-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 991px) {

    .interior-services-section {
        padding: 70px 0;
    }

    .interior-services-title h2 {
        font-size: 42px;
    }

}

@media (max-width: 767px) {

    .interior-services-section {
        padding: 60px 0;
    }

    .interior-services-section .container {
        padding: 0 20px;
    }

    .interior-services-grid {
        grid-template-columns: 1fr;
    }

    .interior-services-title h2 {
        font-size: 34px;
    }

    .service-content {
        padding: 22px;
    }

    .service-text h3 {
        font-size: 20px;
    }

}



/* =========================================
   WHY CHOOSE US SECTION
========================================= */

.why-choose-section {
    position: relative;
    padding: 30px 0;
    background: #ffffff;
}

.why-choose-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* WRAPPER */

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr 0.8fr;
    gap: 28px;
    align-items: center;
}

/* =========================================
   LEFT CONTENT
========================================= */

.why-small-title {
    display: inline-block;
    color: #0A43B8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.why-choose-content h2 {
    font-size: 35px;
    line-height: 1.2;
    color: #111111;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* LIST */

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 14px;
    font-weight: 500;
}

.why-list li i {
    color: #0A43B8;
    margin-top: 5px;
    font-size: 16px;
}

/* =========================================
   CENTER IMAGE
========================================= */

.why-choose-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* =========================================
   RIGHT STATS
========================================= */

.why-choose-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* BOX */

.why-stat-box {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-left: 4px solid #0A43B8;
    border-radius: 12px;
    padding: 24px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: 0.4s ease;
}

.why-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ICON */

.why-stat-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 14px;
    background: rgba(10,67,184,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-stat-icon i {
    font-size: 26px;
    color: #0A43B8;
}

/* TEXT */

.why-stat-content h3 {
    font-size: 36px;
    color: #111111;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1;
}

.why-stat-content p {
    color: #666666;
    font-size: 15px;
    margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-image img {
        height: auto;
    }

}

@media (max-width: 991px) {

    .why-choose-section {
        padding: 70px 0;
    }

    .why-choose-content h2 {
        font-size: 36px;
    }

}

@media (max-width: 767px) {

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-section .container {
        padding: 0 20px;
    }

    .why-choose-content h2 {
        font-size: 30px;
    }

    .why-list li {
        font-size: 15px;
    }

    .why-stat-content h3 {
        font-size: 30px;
    }

    .why-stat-box {
        padding: 20px;
    }

}

/* =========================================
   PROCESS SECTION
========================================= */

.interior-process-section {
    position: relative;
    padding: 30px 0;
    background:
    linear-gradient(
        180deg,
        #03162f 0%,
        #061b38 100%
    );
    overflow: hidden;
}

.interior-process-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* =========================================
   TITLE
========================================= */

.process-section-title {
    text-align: center;
    margin-bottom: 75px;
}

.process-section-title span {
    display: inline-block;
    color: #4d7fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.process-section-title h2 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

/* =========================================
   WRAPPER
========================================= */

.process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

/* CENTER LINE */

.process-wrapper::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 8%;
    width: 84%;
    height: 2px;
    background: rgba(255,255,255,0.15);
    z-index: 1;
}

/* =========================================
   STEP
========================================= */

.process-step {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* ICON */

.process-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #0A43B8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    position: relative;
    z-index: 2;
    border: 6px solid #061b38;
    box-shadow: 0 10px 25px rgba(10,67,184,0.30);
}

.process-icon i {
    color: #ffffff;
    font-size: 24px;
}

/* NUMBER */

.process-number {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

/* TITLE */

.process-step h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

/* TEXT */

.process-step p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
    max-width: 180px;
    margin: auto;
}

/* =========================================
   HOVER EFFECT
========================================= */

.process-step:hover .process-icon {
    transform: translateY(-5px);
    transition: 0.4s ease;
    background: #ffffff;
}

.process-step:hover .process-icon i {
    color: #0A43B8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .process-wrapper {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 55px;
    }

    .process-wrapper::before {
        display: none;
    }

}

@media (max-width: 767px) {

    .interior-process-section {
        padding: 65px 0;
    }

    .interior-process-section .container {
        padding: 0 20px;
    }

    .process-section-title {
        margin-bottom: 50px;
    }

    .process-section-title h2 {
        font-size: 34px;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
    }

    .process-step h3 {
        font-size: 18px;
    }

    .process-step p {
        font-size: 14px;
    }

}