/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 25px;
    bottom: 119px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 45px;
    padding: 30px 0;
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: bolder;
    text-transform: none;
    outline: none;
}
.navbar-bg{
    background-color: #f5f5dd;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    border-bottom: 1px solid #80808024;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: #f5f5dd;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: gray;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    text-align: center;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 19px;
    color: #fff8f8;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
.fs-f{
        font-size: 17px;
}
.addres-d{
    font-size: 19px;
    color: #ffffff;
}
.footer .btn.btn-link::before {
    position: relative;
    /* content: "\f105"; */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #ffffff;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
/* arcee hero section */
.arcee-hero-section{
    overflow:hidden;
}

.arcee-content-box{
    background:#f5f5dd;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:80px;
}

.arcee-content-box h1{
    font-size:58px;
    font-weight:700;
    line-height:1.1;
    max-width:500px;
    margin-bottom:25px;
}

.arcee-content-box p{
    font-size:22px;
    line-height:1.8;
    max-width:550px;
    margin-bottom:40px;
}

.arcee-btn{
    display:inline-block;
    width:max-content;
    background:#4c4c4c;
    color:#fff;
   padding: 9px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight:600;
    transition:.4s;
}

.arcee-btn:hover{
    background:#000;
    color:#fff;
}

.arcee-image-box{
    height:100vh;
    overflow: hidden;
}

.arcee-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation: arceeZoomEffect 6s ease-in-out infinite alternate;
}
@keyframes arceeZoomEffect {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.12);
    }
}

.arcee-arrow{
    width:55px;
    height:55px;
    background:#fff;
    border-radius:50%;
    display: none;
    /* display:flex; */
    align-items:center;
    justify-content:center;
    color:#000;
    font-size:18px;
}

.arcee-thumbs{
    position:absolute;
    right:15%;
    bottom:20px;
    display:flex;
    gap:10px;
    z-index:5;
}

.arcee-thumbs img{
    width:85px;
    height:85px;
    object-fit:cover;
    border-radius:12px;
    border:3px solid #fff;
}

.arcee-book-btn{
    position:absolute;
    right:20px;
    bottom:20px;
    width:95px;
    height:95px;
    background:rgba(0,0,0,.45);
    color:#fff;
    border-radius:50%;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:22px;
    z-index:5;
}

.arcee-whatsapp{
    position:absolute;
    left:25px;
    bottom:25px;
    width:80px;
    height:80px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:40px;
    text-decoration:none;
    box-shadow:0 0 0 15px rgba(37,211,102,.25);
    z-index:5;
}

@media(max-width:991px){

    .arcee-content-box{
        min-height:auto;
        padding:60px 30px;
    }

    .arcee-content-box h1{
        font-size:40px;
    }

    .arcee-content-box p{
        font-size:18px;
    }

    .arcee-image-box{
        height:450px;
    }

    .arcee-thumbs{
        display:none;
    }
}
/* arcee hero section */
/* contact  */

    .contact-wrapper {
      max-width: 1100px;
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.18);
      display: flex;
      flex-direction: row;
    }
 
    /* ── LEFT PANEL ── */
    .left-panel {
      background: #3b3b3b;
      color: #fff;
      padding: 50px 38px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 42%;
      min-width: 300px;
    }
 
    .brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 10px;
    }
 
    .brand-tagline {
      font-size: 0.82rem;
      color: #c8c4bc;
      line-height: 1.5;
      margin-bottom: 40px;
    }
 
    .contact-info-box {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      padding: 24px 22px;
      margin-bottom: 36px;
    }
 
    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
    }
    .info-item:last-child { margin-bottom: 0; }
 
    .info-icon {
      width: 34px;
      height: 34px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #c9a96e;
      font-size: 0.85rem;
    }
 
    .info-text {
      font-size: 0.83rem;
      color: #ddd;
      line-height: 1.5;
    }
    .info-text strong {
      display: block;
      color: #fff;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 2px;
      color: #c9a96e;
    }
 
    .social-label {
      font-size: 0.75rem;
      color: #aaa;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }
 
    .social-icons {
      display: flex;
      gap: 10px;
    }
 
    .social-icons a {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    .social-icons a:hover {
      background: #c9a96e;
      border-color: #c9a96e;
      color: #fff;
      transform: translateY(-2px);
    }
 
    /* ── RIGHT PANEL ── */
    .right-panel {
      background: #ffffff;
      padding: 50px 42px;
      flex: 1;
    }
 
    .form-note {
      font-size: 0.78rem;
      color: #888;
      text-align: right;
      margin-bottom: 22px;
      border-bottom: 1px solid #e8e8e8;
      padding-bottom: 14px;
    }
    .form-note i { color: #c9a96e; margin-right: 5px; }
 
    .form-floating label {
      font-size: 0.85rem;
      color: #999;
    }
 
    .form-control, .form-select {
      border: 1px solid #e0ddd8;
      border-radius: 8px;
      font-size: 0.9rem;
      color: #333;
      background: #fafaf8;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-control:focus, .form-select:focus {
      border-color: #c9a96e;
      box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
      background: #fff;
    }
 
    .time-label {
      font-size: 0.82rem;
      color: #666;
      font-weight: 600;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
 
    .time-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 18px;
    }
 
    .time-option input[type="radio"] { display: none; }
 
    .time-option label {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border: 1.5px solid #e0ddd8;
      border-radius: 8px;
      cursor: pointer;
      font-size: 0.83rem;
      color: #555;
      background: #fafaf8;
      transition: all 0.2s;
    }
    .time-option label i { color: #aaa; font-size: 0.8rem; }
 
    .time-option input[type="radio"]:checked + label {
      border-color: #c9a96e;
      background: rgba(201,169,110,0.08);
      color: #8a6a2e;
      font-weight: 600;
    }
    .time-option input[type="radio"]:checked + label i { color: #c9a96e; }
 
    .time-option label:hover {
      border-color: #c9a96e;
      background: rgba(201,169,110,0.06);
    }
 
    .btn-submit {
      background: #3b3b3b;
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 14px 38px;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .btn-submit:hover {
      background: #c9a96e;
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(201,169,110,0.35);
    }
    .btn-submit i { font-size: 0.85rem; }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .contact-wrapper { flex-direction: column; }
      .left-panel { width: 100%; padding: 36px 24px; }
      .right-panel { padding: 34px 22px; }
      .time-options { grid-template-columns: 1fr 1fr; }
    }
 
    @media (max-width: 480px) {
      .brand-name { font-size: 1.4rem; }
      .time-options { grid-template-columns: 1fr; }
      .btn-submit { width: 100%; justify-content: center; }
    }
    /* contact form */
    .contact-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.contact-wrapper{
    width:100%;
    max-width:1400px;
    margin:auto;
    border-radius:0;
    overflow:hidden;
    box-shadow:0 0 25px rgba(0,0,0,0.08);
}
    .contact-wrapper{
    min-height:100vh;
}

/* LEFT PANEL */
.left-panel{
    background:#575452;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px;
    position:relative;
}

.company-title{
    font-size:44px;
    font-weight:700;
    margin-bottom:20px;
}

.tagline{
    font-size:20px;
    max-width:520px;
    margin:auto;
    margin-bottom:120px;
}

.contact-box{
    border:1px solid rgba(255,255,255,.8);
    border-radius:18px;
    padding:35px;
    max-width:420px;
    margin:auto;
}

.contact-item{
    
    gap:18px;
    font-size:20px;
    margin-bottom:18px;
}

.contact-item i{
    font-size:26px;
}

.social-area{
    margin-top:120px;
}

.social-area h5{
    font-weight:700;
    margin-bottom:25px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.social-icons a{
    width:65px;
    height:65px;
    background:#666;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 0 12px rgba(255,255,255,.25);
}

/* RIGHT PANEL */

.right-panel{
    background:#f7f7f7;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:50px 40px;
}

.form-wrapper{
    width:100%;
    max-width:800px;
}

.top-note{
    border:1px solid #555;
    display:inline-block;
    float:right;
    padding:5px 15px;
    margin-bottom:25px;
    font-size:14px;
}

.custom-input{
    height: 46px;
    border: 1px solid #bdbdbd;
    border-radius: 0;
    font-size: 16px;
}

.textarea{
    height:120px !important;
    resize:none;
}

.visit-title{
    font-size:20px;
    font-weight: 800;
    color: #000000;
    margin-bottom:20px;
}

.form-check{
    margin-bottom:20px;
}

.form-check-label{
    font-size: 17px;
    color: #000000;
}
.form-check-input:checked {
    background-color: #060000 !important;
    border-color: #060000 !important;
}

.submit-btn{
    border:none;
    background:#575452;
    color:#fff;
    width: 140px;
    height: 43px;
    border-radius: 50px;
    font-size: 21px;
    font-weight: 600;
}

/* Responsive */

@media(max-width:991px){

    .company-title{
        font-size:34px;
    }

    .tagline{
        margin-bottom:50px;
        font-size:18px;
    }

    .contact-item{
        font-size:18px;
    }

    .social-area{
        margin-top:50px;
    }

    .form-check-label{
        font-size:18px;
    }

    .submit-btn{
        width:150px;
        height:55px;
        font-size:24px;
    }
}
/* arcee servcie section */
.arcee-service-section {
    /* background: #575452; */
    padding: 30px;
}
.footer-bg{
    background: radial-gradient(#787876, #504f4d);
}
.arcee-service-list li{
    color: #000000;
}

.bg-whites{
    background-color: #ffffff !important;
}
.arcee-service-wrapper {
    min-height: 100%;
    background: #575452;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
}

.arcee-service-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
}

.arcee-service-content {
    color: #fff;
    padding: 20px 25px;
}

.arcee-service-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.arcee-service-text {
    font-size: 19px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
}

.arcee-service-list {
    padding-left: 35px;
    margin: 0;
}

.arcee-service-list li {
    font-size: 19px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 2px;
}

/* Responsive */

@media (max-width: 991px) {

    .arcee-service-section {
        padding: 20px;
    }

    .arcee-service-image img {
        height: auto;
    }

    .arcee-service-title {
        font-size: 32px;
    }

    .arcee-service-text,
    .arcee-service-list li {
        font-size: 17px;
        line-height: 1.7;
    }

    .arcee-service-content {
        padding: 10px 0;
    }
}
/* arcee servcie section */
/* arcee servcie section */
.arcee-infra-section {
    background: #575452;
    padding: 80px 0;
}

.arcee-infra-heading {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 9px;
}

.arcee-infra-subheading {
    color: #fff;
    font-size: 22px;
    line-height: 1.8;
    max-width: 1500px;
    margin: 0 auto;
}

.arcee-infra-box {
    padding: 20px;
}

.arcee-infra-icon {
    margin-bottom: 25px;
}

.arcee-infra-icon i {
    font-size: 55px;
    color: #9d9d9d;
}

.arcee-infra-title {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.arcee-infra-text {
    color: #fff;
    font-size: 20px;
    line-height: 1.7;
    max-width: 300px;
    margin: auto;
}

/* Responsive */

@media (max-width: 991px) {

    .arcee-infra-heading {
        font-size: 36px;
    }

    .arcee-infra-subheading {
        font-size: 18px;
    }

    .arcee-infra-title {
        font-size: 28px;
    }

    .arcee-infra-text {
        font-size: 17px;
    }

    .arcee-infra-icon i {
        font-size: 42px;
    }
}

/* servcies sections */
.arcee-infra-services {
    background: #efefd8;
}

.arcee-infra-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: all .4s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 20px;
}

/* Hover Background Gray */
.arcee-infra-card:hover {
    background: #575452;
    transform: translateY(-5px);
}

.arcee-infra-card:hover h3,
.arcee-infra-card:hover p {
    color: #fff;
}

.arcee-infra-content h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: .3s;
}

.arcee-infra-content p {
    font-size: 20px;
    line-height: 1.65;
    color: #222;
    transition: .3s;
    min-height: 180px;
}

.arcee-infra-image img {
    width: 100%;
    border-radius: 0 0 80px 0;
    object-fit: cover;
}

/* Arrow Button */

.arcee-infra-btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #575452;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: .3s;
}

.arcee-infra-btn:hover {
    background: #fff;
    color: #575452;
}

.arcee-infra-btn-light {
    background: #fff;
    color: #575452;
}

.arcee-infra-btn-light:hover {
    background: #575452;
    color: #fff;
}

/* Dark Card */

.arcee-infra-dark {
    background: #575452;
}

.arcee-infra-dark h3,
.arcee-infra-dark p {
    color: #fff;
}

/* Responsive */

@media(max-width:991px){

    .arcee-infra-content h3{
        font-size:28px;
    }

    .arcee-infra-content p{
        font-size:18px;
        min-height:auto;
    }
}
/* servcies sections */

/* conter stats */
.stats-card {
      background: #faf9f5;
      border: 1px solid #e4dfc8;
      border-radius: 18px;
      padding: 48px 44px;
      max-width: 720px;
      width: 100%;
      box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    }
 
    .section-heading {
      /* font-family: 'Playfair Display', serif; */
      font-size: 2.2rem;
      font-weight: 800;
      color: #1a1a1a;
      line-height: 1.2;
      margin-bottom: 16px;
    }
 
    .section-desc {
      font-size: 0.92rem;
      color: #666;
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 520px;
    }
 
    /* Divider line between heading and stats */
    .stats-divider {
      border: none;
      border-top: 1.5px solid #e4dfc8;
      margin-bottom: 32px;
    }
 
    /* Stat Item */
    .stat-item {
      padding: 10px 0;
    }
 
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 900;
      color: #1a1a1a;
      line-height: 1;
      display: flex;
      align-items: baseline;
      gap: 2px;
    }
 
    .stat-number .plus {
      font-size: 1.8rem;
      color: #1a1a1a;
      font-weight: 800;
    }
 
    .stat-label {
      font-size: 0.83rem;
      color: #888;
      margin-top: 6px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
 
    /* Vertical separator between left and right stats */
    .stats-row {
      border-bottom: 1px solid #e4dfc8;
      padding-bottom: 20px;
      margin-bottom: 20px;
    }
    .stats-row:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
 
    .stat-col-right {
      border-left: 1px solid #e4dfc8;
    }
 
    /* Button */
    .btn-check-more {
      background: #3b3b3b;
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 14px 36px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 36px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }
    .btn-check-more:hover {
      background: #c9a96e;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(201,169,110,0.35);
    }
 
    @media (max-width: 576px) {
      .stats-card { padding: 32px 22px; }
      .section-heading { font-size: 1.7rem; }
      .stat-number { font-size: 2rem; }
      .stat-col-right { border-left: none; border-top: 1px solid #e4dfc8; padding-top: 16px; margin-top: 4px; }
      .btn-check-more { width: 100%; text-align: center; }
    }
/* conter stats */
.arcee-video-wrapper{
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:15px;
}

.arcee-video{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:15px;
    display:block;
}

.arcee-p .bg-light{
    background:#f5f5f5 !important;
}

.arcee-p h2{
    line-height:1.1;
}

.arcee-p .process-icon{
    width:48px;
    height:48px;
    border:2px solid #444;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#444;
    background:#fff;
}

.arcee-p .process-line{
    width:1px;
    height:95px;
    background:#bdbdbd;
    margin:0 auto;
}

.arcee-p img{
    height:100%;
    object-fit:cover;
}

@media(max-width:991px){
    .arcee-p .process-line{
        height:70px;
    }
}

/* arcee testimonial */
.arcee-testi{
    background:#ecebd8;
}

.arcee-title{
    font-size:50px;
    font-weight:700;
    margin-bottom:10px;
}

.arcee-subtitle{
    font-size:18px;
    color:#000;
}

.arcee-nav{
    width:45px;
    height:45px;
    border:none;
    background:transparent;
    font-size:26px;
    color:#555;
    transition:.3s;
}

.arcee-nav:hover{
    transform:translateY(-2px);
}

.arcee-card{
    background:#5b5858;
    color:#fff;
    padding:25px;
    border-radius:10px;
    min-height:590px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.arcee-quote{
    font-size:90px;
    line-height:60px;
    font-weight:700;
    color:#fff;
    margin-bottom:20px;
}

.arcee-card p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:40px;
}

.arcee-user h5{
    font-size:30px;
    color: #ffffff;
    font-weight:700 !important;
    margin-bottom:5px;
}

.arcee-user span{
    font-size:16px;
    color:#eee;
}

.arcee-testi-slider .owl-stage{
    display:flex;
}

.arcee-testi-slider .owl-item{
    display:flex;
}

.arcee-testi-slider .owl-item .arcee-card{
    width:100%;
}

@media(max-width:768px){

    .arcee-title{
        font-size:36px;
    }

    .arcee-card{
        min-height:auto;
    }
}
/* arcee testimonial */
/* faq */
.arcee-faq{
    background:#efefdb;
    padding:100px 0;
}

.arcee-faq-title{
    font-size:60px;
    font-weight:700;
    line-height:1.1;
    color:#000;
}

.arcee-faq .accordion-item{
    background:transparent;
    border:none;
    border-bottom:1px solid #d8d8d8;
}

.arcee-faq .accordion-button{
    background:transparent;
    box-shadow:none !important;
    font-size:20px;
    font-weight:700;
    color:#000;
    padding:22px 40px 22px 0;
}

.arcee-faq .accordion-button:not(.collapsed){
    background:transparent;
    color:#000;
}

.arcee-faq .accordion-body{
    padding:0 0 25px;
    color:#555;
    font-size:16px;
    line-height:1.8;
}

.arcee-faq .accordion-button::after{
    background-image:none !important;
    content:"+";
    font-size:40px;
    font-weight:300;
    width:auto;
    height:auto;
    transform:none !important;
}

.arcee-faq .accordion-button:not(.collapsed)::after{
    content:"−";
}

@media(max-width:991px){

    .arcee-faq-title{
        font-size:42px;
        margin-bottom:20px;
    }

    .arcee-faq .accordion-button{
        font-size:18px;
    }
}
/* faq */
/* subscribe news */
.arcee-news{
    background:#f4f4f4;
    padding:80px 0;
}

.arcee-news-title{
    font-size:58px;
    font-weight:700;
    color:#000;
    margin-bottom:20px;
}

.arcee-news-input{
    height: 52px;
    border: 1px solid #666;
    border-radius: 50px;
    padding: 0px 26px;
    font-size: 17px;
    box-shadow: none !important;
}

.arcee-news-input:focus{
    border-color:#666;
}

.arcee-news-btn{
    height:52px;
    border-radius:50px;
    background:#5b5858;
    color:#fff;
    font-size:17px;
    font-weight:600;
    border:none;
    transition:.3s;
}

.arcee-news-btn:hover{
    background:#444;
    color:#fff;
}

@media(max-width:991px){

    .arcee-news-title{
        font-size:38px;
    }

    .arcee-news-btn,
    .arcee-news-input{
        height:55px;
    }
}
/* subscribe news */
/* about page */
.about-arcee{
    background:#f5f5dd;
    padding:80px 0;
}

.about-arcee-title{
    font-size:52px;
    font-weight:700;
    color:#000;
    margin-bottom:15px;
}

.about-arcee-subtitle{
    display:inline-block;
    padding:6px 0;
    border-top:1px solid #222;
    border-bottom:1px solid #222;
    font-size:18px;
}

.about-arcee-intro{
    font-size:18px;
    line-height:1.9;
    color:#111;
    margin-bottom:20px;
}

.about-arcee-card{
    background:#f1f0de;
    padding:35px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.10);
}

.about-arcee-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
    color:#000;
}

.about-arcee-card p{
    margin:0;
    line-height:1.9;
    font-size:17px;
}

.about-arcee-apart-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
    color:#000;
}

.about-arcee-feature{
    background:#f1f0de;
    padding:22px 20px;
    margin-bottom:20px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    font-size:17px;
    line-height:1.8;
}

.about-arcee-feature strong{
    font-weight:700;
}

@media(max-width:991px){

    .about-arcee-title{
        font-size:40px;
    }

    .about-arcee-apart-title{
        font-size:32px;
    }

    .about-arcee-card{
        padding:25px;
    }

    .about-arcee-intro{
        font-size:16px;
    }
}
/* about page */
.shader{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 10px;
    border-radius: 8px;
}
.my-team{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: 1px solid gray;
}

/* filter gallery */
 .filter-nav {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px 36px;
      margin-bottom: 36px;
      padding: 0 16px;
    }
 
    .filter-btn {
      background: none;
      border: none;
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #aaa;
      padding: 6px 0;
      cursor: pointer;
      position: relative;
      transition: color 0.25s;
    }
 
    .filter-btn::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1.5px;
      background: #1a1a1a;
      transition: width 0.3s ease;
    }
 
    .filter-btn.active,
    .filter-btn:hover { color: #1a1a1a; }
 
    .filter-btn.active::after { width: 100%; }
 
    /* ── GALLERY GRID ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 6px;
      padding: 0 6px;
    }
 
    /* Gallery Item */
    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 4/3;
      background: #e0ddd8;
    }
 
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease;
    }
 
    /* Hover Overlay */
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: background 0.35s ease;
      gap: 10px;
    }
 
    .overlay-icon {
      color: #fff;
      font-size: 1.4rem;
      opacity: 0;
      transform: translateY(8px);
      transition: all 0.3s ease 0.05s;
    }
 
    .overlay-text {
      color: #fff;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(8px);
      transition: all 0.3s ease 0.1s;
    }
 
    .gallery-item:hover .gallery-overlay {
      background: rgba(0,0,0,0.62);
    }
    .gallery-item:hover img {
      transform: scale(1.06);
    }
    .gallery-item:hover .overlay-icon,
    .gallery-item:hover .overlay-text {
      opacity: 1;
      transform: translateY(0);
    }
 
    /* Hidden item (filter) */
    .gallery-item.hidden {
      display: none;
    }
 
    /* ── LIGHTBOX ── */
    .lightbox-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 20px;
      animation: fadeIn 0.25s ease;
    }
 
    .lightbox-backdrop.show {
      display: flex;
    }
 
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
 
    .lightbox-inner {
      position: relative;
      max-width: 90vw;
      max-height: 88vh;
    }
 
    .lightbox-inner img {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      border-radius: 6px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.6);
      display: block;
    }
 
    .lightbox-close {
      position: absolute;
      top: -14px;
      right: -14px;
      width: 36px;
      height: 36px;
      background: #fff;
      color: #1a1a1a;
      border: none;
      border-radius: 50%;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 2;
      transition: background 0.2s, color 0.2s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    .lightbox-close:hover {
      background: #c9a96e;
      color: #fff;
    }
 
    /* Nav arrows */
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 0.9rem;
      transition: background 0.2s;
      z-index: 2;
    }
    .lightbox-nav:hover { background: #c9a96e; border-color: #c9a96e; }
    .lightbox-prev { left: -54px; }
    .lightbox-next { right: -54px; }
 
    @media (max-width: 992px) {
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 680px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .lightbox-prev { left: -44px; }
      .lightbox-next { right: -44px; }
    }
    @media (max-width: 420px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
      .lightbox-prev, .lightbox-next { display: none; }
    }
/* filter gallery */
:root {
      --arce-primary: #2c3e50;
      --arce-accent: #2c3e50;
      --arce-light: #f5f5f5;
      --arce-white: #ffffff;
      --arce-shadow: 0 4px 18px rgba(0,0,0,0.10);
    }
.arce-section {
      padding: 60px 0;
      background: var(--arce-white);
    }

    /* ── Heading ── */
    .arce-heading {
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--arce-primary);
      margin-bottom: 2rem;
    }

    /* ── Tab pills ── */
    .arce-tab-list {
      display: flex;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin-bottom: 2rem;
      gap: 0;
    }
    .arce-tab-list li {
      cursor: pointer;
    }
    .arce-tab-btn {
      display: block;
      padding: 10px 48px;
      font-weight: 700;
      font-size: 0.95rem;
      border: 2px solid var(--arce-accent);
      color: var(--arce-accent);
      background: var(--arce-white);
      transition: background 0.2s, color 0.2s;
      user-select: none;
    }
    .arce-tab-btn.arce-active {
      background: var(--arce-accent);
      color: var(--arce-white);
    }

    /* ── Sub-tab buttons ── */
    .arce-subtab-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      list-style: none;
      padding: 0;
      gap: 8px;
      margin-bottom: 2rem;
    }
    .arce-subtab-btn {
      padding: 8px 24px;
      background: var(--arce-primary);
      color: var(--arce-white);
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: background 0.2s;
    }
    .arce-subtab-btn:hover,
    .arce-subtab-btn.arce-active {
      background: var(--arce-accent);
    }

    /* ── Project panel ── */
    .arce-project-panel {
      display: none;
    }
    .arce-project-panel.arce-show {
      display: block;
    }

    /* ── Project image ── */
    .arce-project-img {
      width: 100%;
      max-width: 400px;
      border-radius: 8px;
      display: block;
      margin: 0 auto 1rem;
    }

    /* ── Location label ── */
    .arce-location-label {
      display: inline-block;
      padding: 8px 32px;
      border-radius: 50px;
      box-shadow: var(--arce-shadow);
      font-size: 0.92rem;
      color: var(--arce-primary);
      background: var(--arce-white);
      margin-top: 8px;
    }

    /* ── Project card grid ── */
    .arce-card {
      background: var(--arce-white);
      border-radius: 8px;
      box-shadow: var(--arce-shadow);
      padding: 18px 20px;
      text-align: center;
      height: 100%;
    }
    .arce-card-title {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--arce-primary);
      margin-bottom: 4px;
    }
    .arce-card-sub {
      font-size: 0.82rem;
      color: #666;
    }

    /* ── Category heading ── */
    .arce-category-heading {
      font-weight: 700;
      color: var(--arce-primary);
      text-align: center;
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
    }

    .arce-more-btn {
  background: #3d3d3d;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 52px;
  transition: all 0.3s ease;
}

/* Text */
.arce-btn-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

/* Arrow - hidden by default */
.arce-btn-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover state */
.arce-more-btn:hover .arce-btn-text {
  opacity: 0;
  transform: translate(-50%, -150%);
}

.arce-more-btn:hover .arce-btn-arrow {
  opacity: 1;
  transform: translate(-50%, -50%);
}