/********** Template CSS **********/
:root {
    --primary: #1a1a1a;
    --secondary: #525368;
    --light: #faf8f3;
    --dark: #1a1a1a;
    --light01: #8c8479;
    --line: #cfc7b9;
    --muted: #6b6359;
    --bg-cream:#ebe6dd;
}

.back-to-top
 {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background-color: var(--light);
    box-shadow: 0 0 3px var(--light);
    color: #111;
}
.btn-check:focus+.btn, .btn:focus {
    box-shadow: none;
}

body {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

a {
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
    padding: 6px 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 2px;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600;
    
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500;
}


/*** 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 {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.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;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}



.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 5px 0;
    font-size: .8rem;
    font-weight: 500;
    color: var(--primary);
    position: relative;
    outline: none;
}
.navbar .navbar-nav .nav-link:last-child {
    margin-right: 0;
}
.navbar .navbar-nav .nav-link::after,
.navbar .navbar-nav .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--primary);
    transition: right 0.35s cubic-bezier(.2, .7, .2, 1);
}

.navbar .navbar-nav .nav-link.active::after,
.navbar .navbar-nav .nav-link:hover::after {
    right: 0;
}

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.navbar-toggler{
    border:none;
    box-shadow:none;
    padding:0;
    width:45px;
    height:45px;
    position:relative;
    background:transparent;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* Hide Bootstrap Default Icon */

.navbar-toggler-icon{
    display:none;
}

/* ================= MENU ICON ================= */

.menu-icon{
    width:30px;
    height:24px;
    position:relative;
    margin:auto;
}

.menu-icon span{
    position:absolute;
    width:100%;
    height:2px;
    background:var(--primary);
    left:0;
    transition:.4s;
}

/* Line Positions */

.menu-icon span:nth-child(1){
    top:0;
}

.menu-icon span:nth-child(2){
    top:10px;
}

.menu-icon span:nth-child(3){
    top:20px;
}

/* ================= CLOSE ICON ================= */

.navbar-toggler.active .menu-icon span:nth-child(1){
    transform:rotate(45deg);
    top:10px;
}

.navbar-toggler.active .menu-icon span:nth-child(2){
    opacity:0;
}

.navbar-toggler.active .menu-icon span:nth-child(3){
    transform:rotate(-45deg);
    top:10px;
}

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

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
    .navbar .navbar-nav .nav-link.active::after,
    .navbar .navbar-nav .nav-link:hover::after {
       display: none;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, .6);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}



/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(1,1,1, .4);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: var(--light);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: var(--light);
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

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


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(1, 1, 1, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-title {
    position: absolute;
    bottom: 2%;
    padding: 0 5px;
    left: 2%;
    font-size: .9rem;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    color: #111;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 3;
    opacity: 1;
}
.portfolio-inner:hover .portfolio-title {
    opacity: 0;
}

.portfolio-inner {
    height: 300px;
}
.portfolio-inner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.portfolio-inner .portfolio-text {
    position: absolute;
    width: 90%;
    height: 100%;
    top: 0;
    left: 5%;
    right: 5%;
    display: flex;
    text-align: center;
    color: var(--light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}
.portfolio-inner .portfolio-text h5 {
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

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

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

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 50%;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}
.testimonial-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #dee2e6;
    height: 110px;
}

.testimonial-carousel .owl-item img {
    padding: 5px 0;
    width: 65%;
    margin: 0 auto;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer {
    background-color: #1a1a1a;
}

.footer .title {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #8b6b3d;
}
.footer .title ~a,
.footer .title ~p,
.footer .title ~div {
    font-size: .9rem;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer-logo {
      filter: invert(1);
      max-width: 120px;
}

.social-icon {
    background-color: var(--light);
    color: var(--primary);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icon:hover {
    color: #8b6b3d;
}

.copyright {
    color: var(--light);
    background: #111;
}

.copyright a {
    color: #8b6b3d;
    font-size: .9rem;
}

.copyright a:hover {
    color: #8b6b3d;
}


/* home slider start */
/* ================= HERO SLIDER ================= */

.hero-slider{
    height: calc(100vh - 80px);
    position:relative;
}

.slide{
    position:relative;
    height: calc(100vh - 80px);
    overflow:hidden;
}

.slide img{
    width:100%;
    height:100%;
    object-fit: cover;
    transform:scale(1);
    transition:8s ease;
}

.slick-active img{
    transform:scale(1.1);
}

/* ================= OVERLAY ================= */

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:linear-gradient(
        to right,
        rgba(1,1,1,.6),
        rgba(0,0,0,.15)
    );
    z-index:1;
}

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

.hero-content{
    position:absolute;
    bottom:0;
    left:8%;
    z-index:5;
    max-width:750px;
}

.hero-content h1{
    font-size:2.2rem;
    line-height:1.2;
    color:var(--light);
    margin-bottom:25px;
    text-transform: uppercase;
    opacity:0;
    transform:translateX(-100px);
    transition:1s;
    transition-delay:.4s;
}

.slick-active h1{
    opacity:1;
    transform:translateX(0);
}

/* ================= SLICK ARROWS ================= */

.slick-prev,
.slick-next{
    width:55px;
    height:55px;
    z-index:1000;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    transition:.4s;
    display:flex;
    justify-content:center;
    align-items:center;
}

button.slick-prev:hover,
button.slick-next:hover{
     background:rgba(255,255,255,.2);
}

/* Arrow Position */

.slick-prev{
    left:25px;
}

.slick-next{
    right:25px;
}

/* Default Icon Remove */

.slick-prev:before,
.slick-next:before{
    font-weight:900;
    font-size:20px;
    color:var(--light);
    opacity:1;
}

/* Custom Icons */

.slick-prev:before{
    content: '🡢';
    transform: rotate(180deg);
}

.slick-next:before{
   content: '🡢';
}

/* Hover */

.slick-prev:hover,
.slick-next:hover{
    background:#1a1a1a;
}

/* ================= DOTS ================= */

.slick-dots{
    bottom:25px;
}

.slick-dots li button:before{
    color:var(--light);
    font-size:12px;
    opacity:.7;
}

.slick-dots li.slick-active button:before{
    color:#1a1a1a;
    opacity:1;
}



@media(min-width:1700px){
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1640px;
    }
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .slick-prev,
    .slick-next{
        width:42px;
        height:42px;
    }

    .slick-prev{
        left:10px;
    }

    .slick-next{
        right:10px;
    }

}
/* home slider end */



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

.about-modern{
    position:relative;
    padding:100px 0;
}

.content-box{
    position:relative;
    z-index:2;
}

.content-box h1{
    font-size:4.2rem;
    line-height:1.01;
    font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
    font-weight:400 !important;
    color:var(--primary);
    margin-bottom:45px;
}

.content-box h1 span{
    font-style:italic;
    color:#8b6b3d;
    position:relative;
}

.content-box p{
    font-size:1.3rem;
    line-height:1.5;
    color:#555;
    margin-bottom:55px;
}
.story-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:1rem 1.5rem;
    border:1px solid var(--primary);
    border-radius:60px;
    color:var(--primary);
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.75rem;
    overflow:hidden;
    transition:.5s ease;
    z-index:1;
}

.story-btn::before{
    content:"";
    position:absolute;
    width:0;
    height:100%;
    background:var(--primary);
    left:0;
    top:0;
    transition:.5s ease;
    z-index:-1;
}

.story-btn:hover::before{
    width:100%;
}

.story-btn:hover{
    color:var(--light);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}


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

.section-title{
    position:relative;
    text-align:center;
    margin-top: 90px;
    margin-bottom: 45px;
}

.section-title h2{
    font-size:4rem;
    font-family:"Cormorant Garamond", serif;
    font-weight:500;
    color:#111;
    position:relative;
    display:inline-block;
    padding-bottom:25px;
    margin-bottom:0;
    letter-spacing:1px;
}

.section-title h2::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:140px;
    height:1px;
    background:rgba(0,0,0,.18);
    transform:translateX(-50%);
}

.section-title h2::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-3px;
    width:45px;
    height:7px;
    border-radius:50px;
    background:#8b6b3d;
    transform:translateX(-50%);
    box-shadow:0 0 20px rgba(139,107,61,.35);
}

.section-title span{
    display:block;
    font-size:.75rem;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#8b6b3d;
    margin-bottom:18px;
    font-family:"JetBrains Mono", monospace;
}

.section-title .shape{
    position:absolute;
    width:120px;
    height:120px;
    border:1px solid rgba(139,107,61,.12);
    border-radius:50%;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    animation:rotateShape 20s linear infinite;
    z-index:-1;
}

.section-title .shape::before{
    content:"";
    position:absolute;
    inset:15px;
    border:1px dashed rgba(0,0,0,.08);
    border-radius:50%;
}

@keyframes rotateShape{

    from{
        transform:translate(-50%,-50%) rotate(0deg);
    }

    to{
        transform:translate(-50%,-50%) rotate(360deg);
    }

}

@media(max-width:768px){
    .section-title{
        margin-bottom:60px;
    }

    .section-title h2{
        font-size:2.8rem;
    }
}

/* contact page start */



.contact-title {
    position: absolute;
    bottom: 8%;
    left: 8%;
    z-index: 5;
    max-width: 750px;
    color: var(--light);
}
.contact-title h1 {
    color: var(--light);
}

.form-control,
textarea.form-control {
    border-color: var(--light01);
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 14px 22px;
    border: 1px solid var(--dark);
    border-radius: 999px;
    transition: background 0.25s, color 0.25s, transform 0.25s;
    cursor: pointer;
    color: var(--dark);
    background-color: var(--dark);
    color: var(--light);
}
.custom-btn:hover {
    background-color: #8b6b3d;
    border-color: #8b6b3d;
    color: var(--light);
}
.custom-btn span {
    transition: all .2s linear;
}

.custom-btn:hover  span {
    transform: translateX(3px);
    
}

.form-control:focus, textarea.form-control:focus {
    box-shadow: none;
    border-color: var(--light01);
}

.map-card {
  border: 1px solid var(--line);
  background: var(--bg-cream);
}
.map-svg { aspect-ratio: 10 / 7; }
.map-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-top: 1px solid var(--line);
  font-family: "JetBrains Mono", monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.map-foot a { color: var(--ink); transition: color 0.2s; }
.map-foot a:hover { color: var(--accent-deep); }

.cities {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--line);
}
.city {
  padding: 36px 8px; border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  transition: padding 0.3s;
}
.city:nth-child(3n) { border-right: 0; }
.city:hover { padding-left: 24px; background: rgba(255,255,255,0.4); }
.city-name { font-size: clamp(28px, 3vw, 44px); line-height: 1; letter-spacing: -0.015em; }
.city .mono { font-size: 11px; letter-spacing: 0.16em; color: var(--muted); }
@media (max-width: 800px) { .cities { grid-template-columns: 1fr 1fr; } .city:nth-child(3n) { border-right: 1px solid var(--line); } .city:nth-child(2n) { border-right: 0; } }

.foot-brand { padding-right: 40px; }




/* ================= CONTACT INFO SECTION ================= */

/* ===== CONTACT SECTION START ===== */

.avp-contact-section{
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #f5f3ef;
}

/* Background Shapes */

.avp-contact-section::before{
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(139,107,61,.05);
    top: -180px;
    left: -180px;
}

.avp-contact-section::after{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(0,0,0,.03);
    bottom: -120px;
    right: -120px;
}

/* Card */

.avp-contact-card{
    position: relative;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(12px);
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    transition: .5s ease;
    height: 100%;
    border-radius: 28px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 15px 45px rgba(0,0,0,.05);
    z-index: 2;
}

.avp-contact-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

/* Top Shape */

.avp-contact-card::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(139,107,61,.06);
    border-radius: 50%;
    top: -90px;
    right: -90px;
    transition: .5s;
}

.avp-contact-card:hover::before{
    transform: scale(1.2);
}

/* Icon */

.avp-contact-icon{
    width: 95px;
    height: 95px;
    margin: auto auto 35px;
    border-radius: 50%;
    background: rgba(139,107,61,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.avp-contact-icon::after{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px dashed rgba(139,107,61,.3);
    border-radius: 50%;
    animation: avpRotate 18s linear infinite;
}

.avp-contact-icon i{
    font-size: 34px;
    color: #8b6b3d;
    z-index: 2;
}

/* Heading */

.avp-contact-card h4{
    font-size: 2rem;
    margin-bottom: 25px;
    color: #111;
    font-weight: 600;
    font-family: "Cormorant Garamond", serif;
}

/* Text */

.avp-contact-card a,
.avp-contact-card p{
    font-size: .9rem;
    letter-spacing: 1px;
    color: #666;
    text-decoration: none;
    transition: .4s ease;
    display: block;
    margin-bottom: 0;
    line-height: 1.5;
}

.avp-contact-card a:hover{
    color: #8b6b3d;
    transform: translateX(3px);
}

/* Animation */

@keyframes avpRotate{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }

}

/* Responsive */

@media(max-width:991px){

    .avp-contact-card{
        padding: 45px 30px;
        margin-bottom: 30px;
    }

}

@media(max-width:768px){

    .navbar-brand img {
        width: 75%;
        padding: 10px 0;
    }

    .avp-contact-section{
        padding: 60px 30px;
    }

    .avp-contact-card{
        padding: 40px 25px;
    }

    .avp-contact-card h4{
        font-size: 1.6rem;
    }

    .avp-contact-icon{
        width: 80px;
        height: 80px;
    }

    .avp-contact-icon::after{
        width: 100px;
        height: 100px;
    }

    .avp-contact-icon i{
        font-size: 28px;
    }

}

@media(max-width:540px){
    .avp-contact-section {
        padding: 60px 15px;
    }

    
}

/* ===== CONTACT SECTION END ===== */


.vision-creative{
    position: relative;
    padding: 80px 0;
    background: #f5f3ef;
    overflow: hidden;
}

/* Background Shapes */

.vision-creative::before{
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(139,107,61,.08);
    border-radius: 50%;
    top: -300px;
    right: -250px;
}

.vision-creative::after{
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(139,107,61,.03);
    border-radius: 50%;
    bottom: -180px;
    left: -120px;
}

/* Title */

.creative-title{
    margin-bottom: 80px;
}

.creative-title span{
    display: inline-block;
    font-size: .75rem;
    letter-spacing: 7px;
    color: #8b6b3d;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.creative-title h2{
    font-size: 5rem;
    line-height: 1.05;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: #111;
}

/* Block */

.creative-block{
    position: relative;
    padding: 0 40px 0 90px;
    margin-bottom: 70px;
}

.creative-block.right{
    padding-left: 110px;
}

/* Number Circle */

.creative-number{
    position: absolute;
    left: 0;
    top: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #8b6b3d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(139,107,61,.25);
}

/* Heading */

.creative-block h3{
    font-size: 3rem;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 20px;
    color: #111;
    transition: .4s;
}

/* Paragraph */

.creative-block p{
    font-size: 1.08rem;
    line-height: 2;
    color: #666;
    max-width: 470px;
}

/* Hover */

.creative-block:hover h3{
    color: #8b6b3d;
    transform: translateX(8px);
}

/* Divider */

.creative-line{
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
    transparent,
    rgba(139,107,61,.3),
    transparent);
    margin: 10px 0 50px;
}

.creative-list{
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.creative-list li{
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    letter-spacing: .3px;
}

.creative-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: -.1rem;
    color: #8b6b3d;
    font-size: 1rem;
}

@media(max-width:991px){

    .vision-creative{
        padding: 80px 0;
    }

    .creative-title h2{
        font-size: 3rem;
    }

    .creative-block{
        margin-bottom: 50px;
    }

}

@media(max-width:768px){

    .creative-title{
        margin-bottom: 50px;
    }

    .creative-title h2{
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .creative-block,
    .creative-block.right{
        padding-left: 85px;
        padding-right: 0;
    }

    .creative-block h3{
        font-size: 2.1rem;
    }

    .creative-block p{
        font-size: 1rem;
        line-height: 1.8;
    }

    .creative-number{
        width: 55px;
        height: 55px;
        font-size: .9rem;
    }

}

.leader-modern{
    position: relative;
    overflow: hidden;
}

.leader-image{
    position: relative;
    overflow: hidden;
}

.leader-image img{
    width: 100%;
    height: 850px;
    object-fit: cover;
    transition: 1s ease;
}

.leader-image:hover img{
    transform: scale(1.05);
}

.experience-badge{
    position: absolute;
    left: -20px;
    bottom: 60px;
    padding: 35px 40px;
    border-left: 4px solid #8b6b3d;
    box-shadow: 0 20px 30px rgba(255,255,255,.2);
}

.experience-badge h2{
    font-size: 4rem;
    margin: 0;
    line-height: 1;
    color: var(--line);
    font-weight: 700;
}

.experience-badge span{
    color: var(--line);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .8rem;
}

.leader-content{
    position: relative;
    padding: 80px 0 80px;
    z-index: 2;
}

.sub-title{
    display: inline-block;
    font-size: .75rem;
    letter-spacing: 6px;
    color: #8b6b3d;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.leader-content h2{
    font-size: 5rem;
    line-height: .95;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: #111;
    margin-bottom: 25px;
}

.gold-line{
    width: 120px;
    height: 2px;
    background: #8b6b3d;
    margin-bottom: 40px;
    position: relative;
}

.gold-line::after{
    content: "";
    position: absolute;
    width: 40px;
    height: 6px;
    background: #8b6b3d;
    left: 0;
    top: -2px;
}

.leader-content p{
    font-size: 1.08rem;
    line-height: 2;
    color: #555;
    margin-bottom: 30px;
}

.leader-content strong{
    color: #111;
    font-weight: 700;
}

.point-item{
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    transition: .4s;
}

.point-item span{
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b6b3d;
    min-width: 50px;
}

.point-item h5{
    margin: 0;
    font-size: 1.3rem;
    color: #111;
    font-family: "Cormorant Garamond", serif;
}

.point-item:hover{
    transform: translateX(12px);
}

@media(max-width:991px){

    .leader-modern{
        padding: 80px 0;
    }

    .leader-content{
        padding: 50px 30px;
    }

    .leader-content h2{
        font-size: 3.5rem;
    }

    .leader-image img{
        height: auto;
    }

    .experience-badge{
        bottom: 10px;
    }
}

@media(max-width:768px){

    .leader-content h2{
        font-size: 2.6rem;
    }

    .leader-content p{
        font-size: 1rem;
        line-height: 1.8;
    }

    .experience-badge h2{
        font-size: 2.8rem;
    }
}

.timeline { list-style: none; max-width: 980px; margin-left: auto; margin-right: auto;
  padding-left: 0; }
.timeline li {
  display: grid; grid-template-columns: 200px 1fr; gap: 60px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.t-year { font-size: 5.5rem; line-height: 1; color: #5c4423; font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif; }
.t-body h3 { font-family: "Cormorant Garamond", serif;color: var(--dark); font-size: 3rem; margin-bottom: 10px;font-weight: normal; }
.t-body p { color: var(--ink-soft); max-width: 56ch; }
@media (max-width: 800px) {
  .timeline li { grid-template-columns: 1fr; gap: 14px; }
}

.avp-philosophy-creative{
    position: relative;
    padding: 0 0 50px;
    background: #f5f3ef;
    overflow: hidden;
}

.avp-philosophy-creative .avp-section-title span{
    font-size: .75rem;
    letter-spacing: 5px;
    color: #8b6b3d;
    display: block;
    margin-bottom: 15px;
}

.avp-philosophy-creative .avp-section-title h2{
    font-size: 4rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: #111;
    margin-bottom: 80px;
}

.avp-philo-img{
    position: relative;
    overflow: hidden;
}

.avp-philo-img img{
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: 1s ease;
    filter: grayscale(10%);
}

.avp-philo-img:hover img{
    transform: scale(1.06);
}

.avp-left-img{
    border-radius: 180px 0 180px 0;
}

.avp-right-img{
    border-radius: 0 180px 0 180px;
}

.avp-philo-content{
    position: relative;
    padding: 0 40px;
}


.avp-philo-content p{
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    margin-bottom: 30px;
}

.avp-philo-content strong{
    color: #111;
    font-weight: 700;
}

@keyframes avpRotateShape{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

@media(max-width:991px){

    .avp-philosophy-creative .avp-section-title h2{
        font-size: 2.8rem;
        margin-bottom: 50px;
    }

    .avp-philosophy-creative .avp-philo-content{
        padding: 0 15px 20px;
    }

    .avp-philosophy-creative .avp-line-shape{
        margin: auto auto 35px;
    }

    .avp-philo-img{
        margin-bottom: 30px;
    }

    .avp-philo-img img{
        height: 500px;
    }
}

@media(max-width:768px){

    .avp-philosophy-creative{
        padding: 80px 0;
    }

    .avp-philosophy-creative .avp-section-title h2{
        font-size: 2.2rem;
    }

    .avp-philo-img img{
        height: 380px;
    }

    .avp-left-img,
    .avp-right-img{
        border-radius: 40px;
    }

    .avp-philo-content p{
        font-size: .95rem;
        line-height: 1.9;
    }

}
/* about end */


/* project start */


.avp-filters-section{
    position: sticky;
    top: 78px;
    z-index: 99;
    background-color: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(0,0,0,.05);
    padding-top: 24px;
    padding-bottom: 24px;
}


.avp-filters-section .wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.avp-filters{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.avp-filter{
    position:relative;
    background:transparent;
    border:none;
    padding:12px 22px;
    overflow:hidden;
    cursor:pointer;

    font-family:"JetBrains Mono", monospace;
    font-size:.7rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--ink-soft);

    transition:.45s ease;
}

.avp-filter:hover{
    color:#111;
    transform:translateY(-2px);
}

.avp-filter.active{
    background:#111;
    color:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.avp-filter.active::before{
    display:none;
}

.view-toggle{
    display:flex;
    align-items:center;
    gap:8px;
    background:#fff;
    padding:6px;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.view{
    width:42px;
    height:42px;
    border:none;
    background:transparent;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#777;
    transition:.4s;
}

.avp-projects-section .avp-project-card-content {
  padding: 10px;
}

.view svg{
    width:16px;
    height:16px;
}

.view:hover{
    background:rgba(139,107,61,.08);
    color:#8b6b3d;
}

.view.active{
    background:#111;
    color:#fff;
}

.avp-projects-section{
    position:relative;
    padding-top: 60px;
    padding-bottom: 70px;
}

.avp-grid{
    transition:.4s ease;
}

.avp-view-grid{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:45px 28px;
   
}

.avp-view-grid .creative-list li, .view-list .creative-list li {
  font-size: .8rem;
  text-transform: lowercase;
  margin-bottom: 12px;
}

.avp-project-card{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:18px;
    text-decoration:none;
    color:inherit;
    border: 1px solid #cfc7b9;
    background:transparent;
    overflow:hidden;
    padding: 0;
}

.avp-project-card.span-4{ grid-column:span 4; }
.avp-project-card.span-6{ grid-column:span 6; }
.avp-project-card.span-8{ grid-column:span 8; }
.avp-project-card.span-12{ grid-column:span 12; }


.avp-project-card-img{
    position:relative;
    overflow:hidden;
    background:#1D2A41;
}

.avp-project-card-img img{
    width:100%;
    height:500px;
    transition:1.2s ease;
}

.avp-project-card-img::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.6),
        rgba(0,0,0,0)
    );
    opacity:0;
    transition:.5s;
}

.avp-project-card:hover .avp-project-card-img::before{
    opacity:1;
}

.avp-project-card-img a {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    letter-spacing: 1px;
    color: #111;
    padding: 3px 10px 3px 0px;
    font-size: .7rem;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.avp-project-card-img::after{
    content:attr(data-tag);
    position:absolute;
    top:20px;
    left:20px;
    z-index:3;
    font-size:.62rem;
    letter-spacing:2px;
    text-transform:uppercase;
    font-family:"JetBrains Mono", monospace;
    color:#fff;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    padding:5px 12px;
}

.avp-project-card-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.avp-project-card-meta .num,
.avp-project-card-meta .year{
    font-family:"JetBrains Mono", monospace;
    font-size:.68rem;
    letter-spacing:2px;
    color:#8b8b8b;
}

.avp-project-card-title{
    font-family:"Cormorant Garamond", serif;
    font-size:clamp(28px,2.5vw,42px);
    line-height:1.05;
    color:#111;
    margin:8px 0 10px;
    transition:.45s;
}

.avp-project-card:hover .avp-project-card-title{
    color:#8b6b3d;
    transform:translateX(8px);
}

.avp-project-card-loc{
    font-family:"JetBrains Mono", monospace;
    font-size:.7rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#777;
}

.view-list{
    display:flex;
    flex-direction:column;
}

.view-list .avp-project-card{
    display:grid;
    grid-template-columns:450px 1fr auto;
    gap:35px;
    align-items:center;
    padding:30px 0;
    border-bottom:1px solid rgba(0,0,0,.06);
}

.view-list .avp-project-card-img{
    aspect-ratio:4/3;
}

.view-list .avp-project-card-title{
    font-size:2rem;
}

@media(max-width:991px){

    .view-grid{
        grid-template-columns:repeat(6,1fr);
    }

    .avp-project-card.span-4{
        grid-column:span 3;
    }

    .avp-project-card.span-6,
    .avp-project-card.span-8,
    .avp-project-card.span-12{
        grid-column:span 6;
    }

}

@media(max-width:768px){

    .avp-filters-section{
        top:70px;
        padding:18px 0;
    }

    .filters{
        justify-content:center;
    }

    .view-toggle{
        margin:auto;
    }

    .avp-projects-section{
        padding:70px 15px 90px;
    }

    .avp-view-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .avp-project-card.span-4,
    .avp-project-card.span-6,
    .avp-project-card.span-8,
    .avp-project-card.span-12{
        grid-column:span 1;
    }

    .avp-project-card-img{
        aspect-ratio:4/3;
    }

    .avp-project-card-title{
        font-size:2rem;
    }

    .view-list .avp-project-card{
        grid-template-columns:1fr;
    }

}
/* project end */