/* ============================================
   IPOWER REALTY - Custom Styles
   Colors: #0e1111 (dark), #f37021 (orange), #004a26 (green)
   ============================================ */

:root {
    --color-dark: #0e1111;
    --color-dark-2: #121212;
    --color-dark-3: #1a1a1a;
    --color-orange: #f37021;
    --color-orange-hover: #e05e10;
    --color-green: #004a26;
    --color-green-light: #006633;
    --color-white: #ffffff;
    --color-gray: #aaaaaa;
    --color-gray-light: #cccccc;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    /* background-color: var(--color-dark); */
    color: var(--color-gray-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.text-orange {
    color: var(--color-orange) !important;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header-section .navbar {
    background: rgba(14, 17, 17, 0.85);
    padding: 15px 0;
    transition: var(--transition);
}

.header-section .navbar.scrolled {
    background: rgba(14, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.site-logo {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.footer-logo {
    height: 48px;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-white) !important;
    letter-spacing: 1.5px;
    padding: 8px 20px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 30px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-orange) !important;
}

.btn-contact {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--color-orange) !important;
    border: 1.5px solid #f1d8b9;
    border-radius: 30px;
    padding: 10px 24px;
    letter-spacing: 1px;
    background: transparent;
    transition: var(--transition);
}

.btn-contact:hover {
    background: var(--color-orange);
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(243, 112, 33, 0.3);
}

.navbar-toggler {
    border-color: var(--color-orange);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(243, 112, 33, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    background: rgba(14, 17, 17, 0.98);
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent;
        padding: 0;
        margin-top: 0;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
/* .hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--color-dark);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 58%;
    max-width: 720px;
    aspect-ratio: 1;
    border: 4px solid rgba(0, 74, 38, 0.2);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/banner-img.jpg') center top / cover no-repeat;
    z-index: 0;
}

.hero-bg-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(14, 17, 17, 0.97) 0%,
        rgba(14, 17, 17, 0.9) 28%,
        rgba(14, 17, 17, 0.65) 50%,
        rgba(14, 17, 17, 0.35) 70%,
        rgba(14, 17, 17, 0.15) 100%
    );
} */

.hero-q-shape {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    max-width: 620px;
    z-index: 2;
}


.hero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
}

.slide-1{
    background:url('../images/banner-img-3.jpg') center/cover;
}

.slide-2{
    background:url('../images/banner-img-4.jpg') center/cover;
}

.slide-3{
    background:url('../images/banner-img-5.jpg') center/cover;
}
.slide-4{
    background:url('../images/banner-img.jpg') center/cover;
}
.hero-bg-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:650px;
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.owl-item.active .hero-content{
    opacity:1;
    transform:translateY(0);
}

.hero-title{
    font-size:60px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.text-orange{
    color:#ff7a00;
}

.hero-subtitle{
    font-size:20px;
    margin-bottom:30px;
}

.btn-primary-orange{
    background:#ff7a00;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.btn-primary-orange:hover{
    background:#e66e00;
    color:#fff;
}

.btn-watch-story{
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:10px;
}

.play-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    color:#ff7a00;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-slider .owl-nav button{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:50px !important;
    color:#fff !important;
    background:none !important;
}

.hero-slider .owl-prev{
    left:30px;
}

.hero-slider .owl-next{
    right:30px;
}

.hero-slider .owl-dots{
    position:absolute;
    bottom:30px;
    width:100%;
}

@media(max-width:768px){

    .hero-title{
        font-size:38px;
    }

    .hero-subtitle{
        font-size:16px;
    }

    .hero-slider .owl-nav{
        display:none;
    }
}
.q-frame {
    position: relative;
    width: 100%;
    padding-bottom: 95%;
}

.q-frame-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.q-frame-img-wrap {
    position: absolute;
    top: 9%;
    left: 3%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.q-frame-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-content {
    padding-top: 60px;
    padding-bottom: 0px;
}

.hero-title {
       font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1   rem);
    color: var(--color-gray-light);
    margin-bottom: 35px;
    max-width: 480px;
    font-weight: 300;
}

.btn-primary-orange {
       font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--color-white);
    background: var(--color-orange);
    border: 2px solid var(--color-orange);
    border-radius: 30px;
    padding: 12px 17px;
    transition: var(--transition);

}

.btn-primary-orange:hover {
    background: var(--color-orange-hover);
    border-color: var(--color-orange-hover);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 112, 33, 0.4);
}

.btn-watch-story {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--color-white);
    background: transparent;
    border: none;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-watch-story:hover {
    color: var(--color-orange);
}

.play-icon {
    width: 45px;
    height: 45px;
    border: 2px solid var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-icon i {
    color: var(--color-orange);
    font-size: 0.8rem;
    margin-left: 3px;
}

.btn-watch-story:hover .play-icon {
    background: var(--color-orange);
}

.btn-watch-story:hover .play-icon i {
    color: var(--color-white);
}

/* ============================================
   STATISTICS BAR
   ============================================ */
.stats-section {
    /* background: rgba(18, 18, 18, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
       padding: 40px 0;
    position: absolute;
    width: 100%;
    top: 100%;
    z-index: 5;
    margin-top: -100px;
}


.hit-counter { 
    background: #0f1c14;
    padding: 18px;
    border-radius: 17px;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.stats-row {
    justify-content: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 10px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--color-orange);
    opacity: 0.9;
}

.stat-number {
        font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 7px;
    line-height: 1;
}

.stat-label {
      font-size: 13px;
    color: #efefef;
    margin-bottom: 0;
    line-height: 1.3;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-orange);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.3;
    color : #0e1d16;
    margin-bottom: 20px;
}

.section-text {
    font-size: 0.95rem;
    color: #5F6368;
    line-height: 1.8;
}

.view-all-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-orange);
    letter-spacing: 1px;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--color-white);
    letter-spacing: 2px;
}

/* ============================================
   BREADCRUMB SECTION
   ============================================ */
.breadcrumb-section {
    background: rgba(14, 17, 17, 0.85);
    margin-top: 90px;

}


.breadcrumb-card {
    background: rgba(14, 17, 17, 0.85);
    border: 1px solid rgba(243, 112, 33, 0.16);
    box-shadow: 0 38px 120px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(22px);
    overflow: hidden;
    position: relative;
    padding : 65px 0px
}

.breadcrumb-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(243, 112, 33, 0.14), transparent 28%),
                radial-gradient(circle at bottom right, rgba(0, 74, 38, 0.12), transparent 30%);
    pointer-events: none;
}

.breadcrumb-pill {
    display: inline-block;
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(227, 226, 224, 0.7);
    color: #0f1f18;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.breadcrumb-pill.active {
    background: var(--color-orange);
    color: #ffffff;
    border-color: transparent;
}

.breadcrumb-trail {
    display: flex;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    justify-content: flex-end;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '>'; 
    color: var(--color-orange);
    margin: 0 8px;
}

.breadcrumb a {
    font-size: 0.92rem;
    color: #fff;
    opacity: 0.78;
}

.breadcrumb-item.active {
    font-size: 0.92rem;
    color: var(--color-orange);
    opacity: 1;
}

.breadcrumb-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-orange);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.breadcrumb-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
}

.breadcrumb-text {
    font-size: 1rem;
    color: #fff;
    max-width: 560px;
}

@media (max-width: 767px) {
    .breadcrumb-card {
        text-align: center;
    }

    .breadcrumb-card .text-lg-end {
        text-align: center !important;
    }

    .breadcrumb {
        justify-content: center;
    }
}

/* ============================================
   ABOUT US SECTION
   ============================================ */
.about-section {
    position: relative;
    padding: 60px 0px;
    background: #fff;
    overflow: hidden;
}

.home-page-about {


    padding : 120px 0px 80px
}

.about-section .shape {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(45px);
    opacity: 0.42;
    z-index: 0;
}

.about-section .shape-top {
    top: -60px;
    right: 6%;
    background: rgba(243, 112, 33, 0.18);
}

.about-section .shape-bottom {
    bottom: -80px;
    left: 4%;
    background: rgba(0, 74, 38, 0.14);
}

.about-pill-list .pill-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: rgb(249 141 3);
    border: 1px solid rgba(239, 153, 16, 0.85);
    color: #fff;
    font-size: 0.88rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
}

.about-meta-grid .meta-card {
    background: #fff;
    border-radius: 24px;
    padding: 26px 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(227, 226, 224, 0.82);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-meta-grid .meta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.08);
}

.about-meta-grid .meta-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0e1d16;
}

.about-meta-grid .meta-card p {
    font-size: 0.93rem;
    line-height: 1.75;
    color: #5a645d;
    margin-bottom: 0;
}


.about-visual-canvas {
    position: relative;
    /* wider canvas to better match visual reference */
    width: min(100%, 620px);
    margin-inline: auto;
    min-height: 560px;
}

.visual-layer {
    position: absolute;
    border-radius: 32px;
    opacity: 0.82;
    filter: blur(12px);
    z-index: 0;
}

.layer-back {
    width: 100%;
    height: 460px;
    top: 18px;
    left: 0;
    background: linear-gradient(135deg, rgba(243,112,33,0.12), rgba(0,74,38,0.05));
    transform: rotate(-6deg);
}

.layer-middle {
    width: 78%;
    height: 400px;
    top: 8px;
    right: 0;
    background: linear-gradient(145deg, rgba(0,74,38,0.14), rgba(243,112,33,0.1));
    transform: rotate(4deg);
}

.visual-photo {
    position: relative;
    z-index: 2;
    border-radius: 36px;
    overflow: hidden;
    /* stronger shadow and softer spread */
    box-shadow: 0 50px 120px rgba(6, 12, 10, 0.12);
    /* animation: float 7s ease-in-out infinite alternate; */
}

.visual-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.visual-widget {
    position: absolute;
    width: max-content;
    padding: 16px 20px;
    border-radius: 20px;
    background: rgb(255 249 240);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(237, 200, 124, 0.8);
    color: #0f1f18;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.visual-widget span {
    font-size: 0.8rem;
    display: block;
    color: #f78800;
    margin-bottom: 6px;
}

.visual-widget strong {
    font-size: 1.25rem;
    color: #0e1d16;
}

.widget-top {
    top: 18px;
    left: 16px;
    z-index: 3;
}

.widget-bottom {
    bottom: 18px;
    right: 16px;
        z-index: 3;
}

.floating-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(243,112,33,0.32);
    box-shadow: 0 0 30px rgba(243,112,33,0.18);
    animation: float 6s ease-in-out infinite;
}

.dot-1 {
    top: 14%;
    right: 8%;
}

.dot-2 {
    bottom: 18%;
    left: 8%;
    background: rgba(0,74,38,0.22);
}

/* Utility shadows used by components */
.shadow-3d {
    box-shadow: 0 48px 140px rgba(3,9,12,0.45) !important;
}

.shadow-xl {
    box-shadow: 0 40px 120px rgba(3,9,12,0.18) !important;
}

.process-flow {
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(227, 226, 224, 0.86);
    box-shadow: 0 30px 90px rgba(0,0,0,0.06);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(227,226,224,0.6);
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-orange);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(243,112,33,0.25);
}

.process-step h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0e1d16;
}

.process-step p {
    margin-bottom: 0;
    color: #5a645d;
    line-height: 1.75;
}

.about-quote-card {
    background: linear-gradient(180deg, #fff 0%, #f9f6f2 100%);
    border-radius: 28px;
    border: 1px solid rgba(227,226,224,0.8);
    box-shadow: 0 24px 70px rgba(0,0,0,0.05);
}

.about-quote-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0e1d16;
}

.about-quote-card p {
    margin-bottom: 0;
    color: #5a645d;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .about-visual-canvas {
        min-height: 420px;
    }

    .visual-layer.layer-back,
    .visual-layer.layer-middle {
        display: none;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding-top: 90px;
    }

    .about-pill-list {
        justify-content: center;
    }

    .about-actions {
        justify-content: center;
    }

    .about-meta-grid {
        margin-top: 1rem;
    }

    .about-highlights .about-highlight-card {
        min-height: auto;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 72px 0;
    background: radial-gradient(circle at top left, rgba(243, 112, 33, 0.18), transparent 18%),
                radial-gradient(circle at bottom right, rgba(0, 74, 38, 0.16), transparent 24%),
                linear-gradient(180deg, #0d1510 0%, #111913 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 20%),
                radial-gradient(circle at 85% 15%, rgba(255, 118, 34, 0.08), transparent 18%),
                linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.18));
    pointer-events: none;
}

.services-section .section-label {
    color: #f8a05f;
    letter-spacing: 2px;
}

.services-section .section-title {
    color: #fdfdf8;
}

.services-section .section-text {
    color: #b8c6b9;
}

.service-highlight-card {
    background: rgba(22, 34, 28, 0.96);
    border-radius: 24px;
    padding: 32px 34px;
    border-left: 4px solid rgba(243, 112, 33, 0.8);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
}

/* .service-highlight-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(243, 112, 33, 0.9), rgba(236, 151, 56, 0.4));
} */

.service-highlight-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-highlight-card p {
    color: #c6cec0;
    line-height: 1.8;
    margin-bottom: 0;
}

.service-card {
    background: rgba(12, 20, 16, 0.92);
    border-radius: 32px;
    padding: 32px 28px;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(94, 117, 92, 0.18);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.homepage-services .service-card {

    background: rgb(255 248 243);
    padding : 25px 20px;

}
 

.services-section .service-icon {

    box-shadow : inherit !important;
}

.homepage-services .section-title {

    color: #0e1d16;
}

.homepage-services .service-card h4{

    color: #0e1d16;
}

.homepage-services .service-card p {

    color: #5a645d;
    font-size: 13px
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02), transparent 35%);
    pointer-events: none;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    right: -36px;
    top: -36px;
    width: 120px;
    height: 120px;
    background: rgba(243, 112, 33, 0.14);
    border-radius: 50%;
    filter: blur(6px);
    z-index: 0;
}

.service-card:nth-child(2)::after { background: rgba(31, 138, 221, 0.18); }
.service-card:nth-child(3)::after { background: rgba(83, 152, 106, 0.18); }
.service-card:nth-child(4)::after { background: rgba(141, 88, 211, 0.18); }

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.34);
    border-color: rgba(255, 255, 255, 0.14);
}

.services-section .service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 22px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
    position: relative;
}

.services-section .service-icon i {
    font-size: 1.55rem;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.services-section .service-icon.bg-gradient-soft-green {
    background: linear-gradient(135deg, #23b06b, #63e4a1);
}

.services-section .service-icon.bg-gradient-soft-orange {
    background: linear-gradient(135deg, #ffac48, #ff7d23);
}

.services-section .service-icon.bg-gradient-soft-blue {
    background: linear-gradient(135deg, #4fb7ff, #5e8dff);
}

.services-section .service-icon.bg-gradient-soft-purple {
    background: linear-gradient(135deg, #be6dff, #7d5ffb);
}

.service-card h4 {
    font-size: 1.12rem;
    font-weight: 700;
    color: #f7fdf7;
    margin-bottom: 14px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.96rem;
    color: #b8c8b6;
    margin-bottom: 0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .service-highlight-card {
        margin-top: 24px;
    }
}

.team-section,
.testimonials-section {
    padding: 72px 0;
    position: relative;
}

.team-section {
    background: radial-gradient(circle at top left, rgba(243, 112, 33, 0.12), transparent 26%),
                radial-gradient(circle at bottom right, rgba(0, 74, 38, 0.10), transparent 24%),
                #fbfaf7;
}

.team-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.55), transparent 32%);
    pointer-events: none;
}

.team-highlight-card {
    background: linear-gradient(135deg, rgba(255, 248, 238, 0.96), rgba(255, 255, 255, 0.92));
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid rgba(227, 225, 220, 0.9);
    box-shadow: 0 32px 90px rgba(20, 32, 28, 0.06);
}

.team-highlight-card p {
    color: #4f6053;
    margin-bottom: 14px;
}

.team-highlight-card strong {
    display: block;
    font-size: 2rem;
    margin-top: 6px;
    color: #0e3425;
    line-height: 1.05;
}

.team-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
    border-radius: 30px;
    padding: 34px 28px;
    border: 1px solid rgba(220, 220, 220, 0.9);
    box-shadow: 0 30px 80px rgba(16, 31, 22, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.team-card::after {
    content: '';
    position: absolute;
    top: -18px;
    right: -18px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(243, 112, 33, 0.12);
    z-index: 0;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(15, 31, 26, 0.14);
}

.team-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 18px;
    box-shadow: 0 18px 38px rgba(11, 38, 23, 0.12);
    position: relative;
    z-index: 1;
}

.team-role {
    font-size: 0.95rem;
    color: #5d665c;
    margin-bottom: 14px;
}

.team-card h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #102e1f;
    position: relative;
    z-index: 1;
}

.team-card p {
    color: #586158;
    line-height: 1.85;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.testimonials-section {
    background: linear-gradient(180deg, #f8faf4 0%, #ffffff 100%);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    right: 12%;
    top: 14%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(30, 127, 73, 0.08);
    pointer-events: none;
}

.testimonial-summary-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 241, 0.96));
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid rgba(209, 229, 213, 0.95);
    box-shadow: 0 30px 80px rgba(16, 29, 22, 0.06);
}

.summary-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-green), var(--color-orange));
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 16px;
}

.testimonial-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
    border-radius: 32px;
    padding: 32px 32px 30px;
    border: 1px solid rgba(243, 112, 33, 0.12);
    box-shadow: 0 40px 120px rgba(19, 37, 27, 0.08);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 22px;
    left: 24px;
    font-size: 4.8rem;
    line-height: 1;
    color: rgba(243, 112, 33, 0.16);
}

.testimonial-card p {
    font-size: 1rem;
    color: #3f4a41;
    line-height: 1.95;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.testimonial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 26px;
    position: relative;
    z-index: 1;
}

.testimonial-meta strong {
    font-size: 1rem;
    color: var(--color-green);
}

.testimonial-meta span {
    color: #5d655b;
    font-size: 0.95rem;
}

.testimonial-card-wide {
    background: linear-gradient(135deg, rgba(255, 248, 238, 0.95), #ffffff 55%);
    border-color: rgba(30, 127, 73, 0.16);
}

.testimonials-carousel .item {
    padding: 0 12px;
}

.owl-dots {
    margin-top: 30px;
}

.owl-dot button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(120, 137, 118, 0.32);
    transition: background 0.3s ease, transform 0.3s ease;
}

.owl-dot.active button,
.owl-dot:hover button {
    background: var(--color-orange);
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .team-highlight-card,
    .testimonial-summary-card {
        margin-top: 24px;
    }
    .team-card,
    .testimonial-card {
        padding: 26px 22px;
    }
    .team-avatar {
        width: 72px;
        height: 72px;
        font-size: 1rem;
    }
}

/* ============================================
   FEATURED PROJECTS
   ============================================ */
.projects-section {
    padding: 60px 0;
    background: var(--color-dark);
    overflow: hidden;
}

.project-nav-buttons {
    display: inline-flex;
    gap: 10px;
}

.proj-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.proj-nav-btn:hover {
    border-color: var(--color-orange);
    background: var(--color-orange);
    color: var(--color-white);
}

.projects-carousel-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.projects-carousel {
    flex: 1;
    overflow: hidden;
}

.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 320px;
    margin: 0 10px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    transition: var(--transition);
}

.project-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.project-type {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: 6px;
}

.project-location {
    font-size: 0.8rem;
    color: var(--color-gray-light);
}

.project-location i {
    color: var(--color-orange);
    margin-right: 5px;
}

.project-arrow-btn {
    position: absolute;
    right: 20px;
    bottom: 25px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    transition: var(--transition);
}

.project-arrow-btn:hover {
    background: var(--color-orange);
    color: var(--color-white);
}

.view-all-projects-card {
    flex-shrink: 0;
    width: 180px;
    display: none;
}

.view-all-projects-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 235px;
    background: #e37205;
    border-radius: 10px;
    color: var(--color-white);
    text-align: center;
    padding: 30px 20px;
    position: relative;
    transition: var(--transition);
}

.view-all-projects-card a:hover {
    background: var(--color-orange-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(243, 112, 33, 0.4);
}

.view-all-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.view-all-projects-card span {
        font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

.view-all-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 1rem;
}

@media (min-width: 1200px) {
    .view-all-projects-card {
        display: block;
    }
}

/* Owl Carousel overrides */
.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.owl-carousel .owl-item {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.owl-carousel .owl-item.active {
    opacity: 1;
}

/* ============================================
   PROJECTS SHOWCASE
   ============================================ */
.projects-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9f6 0%, #f0f2ed 100%);
    position: relative;
    overflow: hidden;
}

.projects-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(243, 112, 33, 0.06), transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(0, 74, 38, 0.05), transparent 30%);
    pointer-events: none;
}

.project-item {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.project-image-wrapper:hover {
    transform: scale(1.04);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.project-image-wrapper img {
    width: 100%;
    height: 550px;
    display: block;
    transition: transform 0.5s ease;
}

.project-image-wrapper:hover img {
    transform: scale(1.02);
}

.project-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.project-badge {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 25px;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.project-content {
    background: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-item:hover .project-content {
    transform: translateY(-6px);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.14);
}

.project-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.project-location {
    font-size: 0.95rem;
    color: var(--color-orange);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-location i {
    font-size: 1rem;
}

.project-description {
    font-size: 15px;
    color: #646f63;
    line-height: 1.8;
    margin-bottom: 18px;
}

.project-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}

.project-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 700;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 13px;
    border-top: 1px solid #e8e8e8;
}

.meta-item {
    font-size: 0.95rem;
    color: #555;
}

.meta-item strong {
    color: var(--color-dark);
    font-weight: 600;
}

.project-contact {
    border-color: #e8e8e8 !important;
}

.contact-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-heading::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 16px;
    background: var(--color-orange);
    border-radius: 2px;
}

.contact-item {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.contact-item i {
    color: var(--color-orange);
    width: 18px;
    text-align: center;
    font-size: 1rem;
}

.contact-item:hover {
    color: var(--color-orange);
    transform: translateX(4px);
}

.contact-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .projects-showcase {
        padding: 60px 0;
    }

    .project-item {
        margin-bottom: 60px;
    }

    .project-content {
        padding: 30px;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .project-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .projects-showcase {
        padding: 40px 0;
    }

    .project-item {
        margin-bottom: 40px;
    }

    .project-image-wrapper {
        margin-bottom: 24px;
    }

    .project-content {
        padding: 24px;
        border-radius: 8px;
    }

    .projects-slider-wrap {
        position: relative;
        padding: 20px 0 0;
    }

    .projects-swiper {
        width: 100%;
        padding-bottom: 50px;
    }

    .projects-swiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .projects-swiper .swiper-pagination {
        bottom: 0 !important;
    }

    .projects-swiper .swiper-button-prev,
    .projects-swiper .swiper-button-next {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(14, 17, 17, 0.85);
        color: var(--color-white);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
        transition: var(--transition);
    }

    .projects-swiper .swiper-button-prev:hover,
    .projects-swiper .swiper-button-next:hover {
        background: var(--color-orange);
        color: #fff;
        transform: translateY(-2px);
    }

    .projects-swiper .swiper-button-prev::after,
    .projects-swiper .swiper-button-next::after {
        font-size: 1rem;
        font-weight: 700;
    }

    .projects-swiper .swiper-button-prev {
        left: -10px;
    }

    .projects-swiper .swiper-button-next {
        right: -10px;
    }

    .project-title {
        font-size: 1.25rem;
    }

    .project-description {
        font-size: 0.9rem;
    }

    .project-meta {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 20px 0;
    background: var(--color-dark-3);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background: url('../images/cta_bg.png') center/cover no-repeat;
    opacity: 0.08;
}

.cta-bg-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--color-dark-3) 0%, rgba(26, 26, 26, 0.8) 70%, transparent 100%);
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.cta-text {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 0;
}

.btn-cta {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--color-orange);
    border: 1.5px solid var(--color-orange);
    border-radius: 30px;
    padding: 14px 30px;
    background: transparent;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--color-orange);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 112, 33, 0.3);
}

.cta-q-logo {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background: #000000;
    padding: 80px 0 0;
}

.footer-brand .logo-name {
    font-size: 1rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-top: 10px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--color-white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-contact li i {
    color: var(--color-orange);
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--color-orange);
    background: var(--color-orange);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 20px;
    padding: 25px 0;
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: 0;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--color-gray);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--color-orange);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .hero-q-shape {
        width: 50%;
        right: 0;
    }

    .hero-section::before {
        right: -8%;
        width: 55%;
    }
}

@media (max-width: 991px) {
    .hero-q-shape {
        width: 55%;
        right: -5%;
        opacity: 0.85;
    }

    .hero-content {
        padding-top: 140px;
    }

    .about-section,
    .services-section,
    .projects-section {
        padding: 70px 0;
    }

    .cta-q-logo {
        display: none;
    }

    .btn-contact {
        margin-top: 15px;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .hero-q-shape {
        display: none;
    }

    .hero-content {
        text-align: center;
        padding-top: 120px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 20px 5px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .view-all-link {
        display: inline-block;
        margin-top: 15px;
    }

    .project-card {
        height: 300px;
    }

    .cta-section {
        text-align: center;
        padding: 60px 0;
    }

    .btn-cta {
        margin-top: 20px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-legal {
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .btn-primary-orange {
        width: 100%;
        text-align: center;
    }

    .btn-watch-story {
        width: 100%;
        justify-content: center;
    }

    .stats-section {
        padding: 25px 0;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-52%) translateX(-5px); }
}

.hero-q-shape {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 74, 38, 0.4)); }
    50% { filter: drop-shadow(0 0 40px rgba(243, 112, 33, 0.3)); }
}

.q-frame-svg,
.about-q-svg {
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Counter animation class */
.stat-number.counting {
    transition: all 0.3s ease;
}


.cta-image-wrap img {
    filter: grayscale(1);
}

.why-choose-card {
    background: #032218;
    padding: 30px 21px;
    border-radius: 11px;
}

.why-choose-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #e36920;
}
ul.why-choose-list {
    padding-left: 0;
    margin-top: 18px;
}

ul.why-choose-list li {
    list-style: none;
    font-size: 14px;
    color: #f3f7f4;
    line-height: 1.75;
    margin-bottom: 12px;
    position: relative;
     
}


.about-icon-item h5 {

    font-size: 16px;
    font-weight: 600;
    color: #e36920;
    margin-top: 5px;
}

.about-icon-item p {
    font-size: 11px;
    margin-right: 10px;
    color: #000;
    line-height: 1.75;
    margin-bottom: 0;
}

ul.why-choose-list li i {

    margin-right: 5px;
}

.breadcrumb-title span {
    color: #e36920;
}

/* Selected card animation */
.is-selected {
    /* play the pop once, then continue a gentle infinite breathe loop */
    animation: selected-pop 900ms cubic-bezier(.2,.9,.2,1) both,
               selected-breathe 4s ease-out infinite alternate;
    transform-origin: center top;
}

@keyframes selected-pop {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    }
    40% {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 60px 160px rgba(3,9,12,0.18);
    }
    100% {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 48px 140px rgba(3,9,12,0.22);
    }
}

@keyframes selected-breathe {
    0% {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 48px 140px rgba(3,9,12,0.22);
    }
    100% {
        transform: translateY(-14px) scale(1.035);
        box-shadow: 0 60px 160px rgba(3,9,12,0.24);
    }
}

/* Make selected appearance persistent while class present */
.is-selected .meta-card,
.is-selected .feature-box,
.is-selected .stat-card {
    transform: translateY(-10px) scale(1.02);
}

/* Vision & Mission cards */
.vision-mission-section {
    padding-top: 48px;
    padding-bottom: 32px;
    position: relative;
   
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.68), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 0;
}

.vm-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(231, 242, 235, 0.95);
    box-shadow: 0 40px 85px rgba(12, 28, 19, 0.12);
}

.vm-vision {
    background: linear-gradient(180deg, rgba(255, 241, 224, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.vm-mission {
    background: linear-gradient(180deg, rgba(255, 241, 224, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.vm-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0c301f;
}

.vm-text {
    color: #516054;
    line-height: 1.75;
}

.vm-list {
    list-style: none;
    padding-left: 0;
    margin: 1.2rem 0 0;
}

.vm-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #3f4a3f;
    font-weight: 500;
}

.vm-vision .vm-list li::before,
.vm-mission .vm-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px rgba(255,255,255,0.9);
}

.vm-vision .vm-list li::before {
    background: var(--color-green);
}

.vm-mission .vm-list li::before {
    background: var(--color-orange);
}

.vm-list-ol {
    counter-reset: vm-counter;
    margin: 1.2rem 0 0;
}

.vm-list-ol li {
    counter-increment: vm-counter;
    padding-left: 34px;
    margin-bottom: 12px;
    color: #3f4a3f;
    font-weight: 500;
}

.vm-list-ol li::before {
    content: counter(vm-counter, decimal) '.';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--color-green);
    font-weight: 800;
}

.vm-mission .vm-list-ol li::before {
    color: var(--color-orange);
}

.vm-accent {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 30px;
    opacity: 0.16;
    filter: blur(28px);
    z-index: 0;
}

.vm-accent-left {
    right: -30px;
    top: -30px;
    background: linear-gradient(135deg, rgba(0, 74, 38, 0.14), rgba(243, 112, 33, 0.1));
}

.vm-accent-right {
    left: -30px;
    bottom: -30px;
    background: linear-gradient(135deg, rgba(243, 112, 33, 0.14), rgba(0, 74, 38, 0.1));
}

.vm-icon-wrap {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: rgb(251 140 2);
    display: grid;
    place-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    z-index: 2;
}

.vm-icon-wrap img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter : invert(1)
}

.vm-icon-left {
       top: 0px;
    right: 0px;
    margin-bottom: 24px;
}

.vm-icon-right {
       top: 0px;
    right: 0px;
    margin-bottom: 24px;
}

.vm-card > * { position: relative; z-index: 2; }

@media (max-width: 767px) {
    .vision-mission-section {
        padding-top: 32px;
        padding-bottom: 24px;
    }
    .vm-accent { display: none; }
    .vm-icon-wrap {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 18px;
        right: auto;
    }
    .vm-title { font-size: 1.25rem; }
}

.project-contact ul {

    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 0;
}

.project-contact ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-contact ul li i {
    color: var(--color-orange);
    font-size: 1.1rem;
}

.project-contact ul li a {
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

section.homepage-services.services-section {
    background: #fcf3ee;
}