
.city-dropdown{
    width:350px !important; 
    display:grid !important;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    padding:15px;
}

.city-dropdown .dropdown-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:15px 10px;
    border-radius:10px;
    transition:.3s;
}

.city-dropdown .dropdown-item i{
    font-size: 28px;
        background: linear-gradient(135deg, #F9A03F 0%, #F58214 50%, #D96A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 8px;
}

.city-dropdown .dropdown-item span{
    font-size:14px;
    font-weight:600;
    color:#333;
}

.city-dropdown .dropdown-item:hover{
    background:#0d6efd;
}

.city-dropdown .dropdown-item:hover i,
.city-dropdown .dropdown-item:hover span{
    color:linear-gradient(274deg, #c4993a, #fada93);
}
.hero-section{

    position:relative;
    height:850px;
    overflow:hidden;
    display:flex;
    background:#f8f6f2;

}

/******** LEFT ********/

.hero-left{

    width:58%;
    position:relative;

}

.hero-left img{

    width:100%;
    height:100%;
    object-fit:cover;

}
/*.hero-left::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.4);*/
/*    z-index: 1;*/
/*}*/

/******** RIGHT ********/

.hero-right{

    /* width:42%; */
    background:#fbf9f5;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;

}

/* Curved Shape */

.hero-right:before{

    content:"";
    position:absolute;
    left:-180px;
    top:-5%;
    width:420px;
    height:110%;
    background:#fbf9f5;
    border-radius:50%;
    box-shadow:
    inset 0 0 0 2px rgba(215,180,80,.15),
    0 0 30px rgba(0,0,0,.04);

}


/* Luxury Waves */

.hero-right:after{

    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at left,
    transparent 60%,
    rgba(215,180,80,.07) 61%,
    transparent 62%),

    radial-gradient(circle at left,
    transparent 72%,
    rgba(215,180,80,.05) 73%,
    transparent 74%),

    radial-gradient(circle at left,
    transparent 84%,
    rgba(215,180,80,.05) 85%,
    transparent 86%);
    pointer-events:none;

}

.hero-content{

    position:relative;
    z-index:5;
    max-width:600px;

}

.logo{

    font-size:60px;
    font-weight:800;
    color:#000;
    margin-bottom:35px;

}

.hero-content h1{

    font-size:60px;
    line-height:1.3;
    margin-bottom:10px;
    font-family: auto;

}

.hero-content h1 span{

    background: linear-gradient(135deg, #F9A03F 0%, #F58214 50%, #D96A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}

.hero-content p{

    color:#666;
    font-size:20px;
    line-height:34px;

}


/******** SEARCH ********/

.hero-search{

    position:absolute;
    bottom:100px;
    left:50%;
    transform:translateX(-50%);
    width:1100px;
    z-index:100;

}

.tabs{

    background:#000000;
    display:flex;
    border-radius:20px 20px 0 0;
    overflow:hidden;

}

.tabs button{

    flex:1;
    padding:18px;
    background:none;
    border:0;
    color:#fff;
    font-size:17px;

}

.tabs button.active{

    background: linear-gradient(135deg, #F9A03F 0%, #F58214 50%, #D96A00 100%);
    color:#000;

}

.hero-search form{

    display:flex;
    background:#fff;
    padding:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.15);
    border-radius:0 0 20px 20px;
    gap:15px;

}

.hero-search select,
.hero-search input{

    flex:1;
    height:50px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 20px;
    font-size:16px;

}

.near-btn{

    width:160px;
    border:none;
    background:#f4eed9;
    border-radius:12px;

}

.search-btn{

    width:180px;
    border:none;
    border-radius:12px;
    background: linear-gradient(135deg, #F9A03F 0%, #F58214 50%, #D96A00 100%);
    color:#fff;
    font-size:18px;
    font-weight:600;

}
.need-section{
    background:#000;
    padding:80px 0;
}

.section-title{
    background: linear-gradient(135deg, #F9A03F 0%, #F58214 50%, #D96A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size:48px;
    font-weight:300;
}

.custom-tabs{
    gap:20px;
}

.custom-tabs .nav-link{
    color:#8d8d8d;
    background:none;
    border:none;
    border-bottom:2px solid transparent;
    border-radius:0;
    padding:10px 5px;
    font-size:18px;
}

.custom-tabs .nav-link.active{
    color:#fff;
    border-color:#cfa84d;
}

.service-card{
    background:#1f1f1f;
    border:1px solid #333;
    border-radius:15px;
    text-align:center;
    padding:45px 20px;
    transition:.4s;
    height:100%;
}

.service-card i{
    font-size:50px;
    background: linear-gradient(274deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom:20px;
    display:block;
}

.service-card h5{
    color:#fff;
    font-size:20px;
    margin:0;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#cfa84d;
    box-shadow:0 10px 30px rgba(207,168,77,.25);
}

.active-card{
    background:linear-gradient(135deg, #F9A03F 0%, #F58214 50%, #D96A00 100%);
}

.expert-btn{
    background:linear-gradient(135deg, #F9A03F 0%, #F58214 50%, #D96A00 100%);
    color:#000;
    text-decoration:none;
    padding:15px 35px;
    border-radius:8px;
    font-weight:600;
    display:inline-block;
}

.expert-btn:hover{
    background:#e7c253;
    color:#000;
}

@media(max-width:991px){

.section-title{
    font-size:34px;
}

.custom-tabs{
    flex-wrap:nowrap;
    overflow-x:auto;
    white-space:nowrap;
}

.custom-tabs::-webkit-scrollbar{
    display:none;
}

.service-card{
    padding:30px 15px;
}

.service-card i{
    font-size:40px;
}

.service-card h5{
    font-size:16px;
}

}

@media(max-width:576px){
    .city-dropdown{
        width:250px;
        grid-template-columns:repeat(2,1fr);
    }
}
.consultation-section{
    padding:0 !important;
    margin:0;
}

.consultation-box{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    overflow:hidden;
    box-shadow:none;
}

.consultation-left{
    padding:0;
    height:100%;
    border-right:1px solid #e5e5e5;
}

.consultation-img{
    width:100%;
    height:80%;
    /*object-fit:cover;*/
    display:block;
}

.consultation-form{
    padding:35px 40px;
}

.consultation-form h3{
    margin-bottom:25px;
    font-size:28px;
    font-weight:600;
}

.consultation-form .form-control{
    height:52px;
    border-radius:8px;
    margin-bottom:18px;
    box-shadow:none;
}

.consultation-form .form-control:focus{
    border-color:#F58214;
    box-shadow:none;
}
.rating{
    color:#F58214;
    letter-spacing:2px;
    font-size:20px;
}

.consultation-title{
    font-size:42px;
    font-weight:700;
    color:#08174d;
    margin-top:15px;
}

.consultation-img{
    width:100%;
    margin-top:0px;
}

.consultation-form{
    padding:60px;
}

.consultation-form h3{
    font-size:17px;
    font-weight:600;
    margin-bottom:35px;
}

.consultation-form .form-control{
    height:58px;
    border-radius:10px;
    margin-bottom:20px;
    box-shadow:none;
}

.consultation-form .form-control:focus{
    border-color:#F58214;
    box-shadow:none;
}

.btn-success{
    background:#2eb34a;
    border:none;
}

.call-us{
    font-size:15px;
}

.call-us strong{
    color:#08174d;
}

@media(max-width:991px){

    .consultation-left{
        padding:40px 20px;
    }

    .consultation-form{
        padding:35px 20px;
    }

    .consultation-title{
        font-size:30px;
    }

    .consultation-form h3{
        font-size:17px;
    }

    .call-us{
        font-size:15px;
    }

}
.hero-title {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
}

.typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    border-right: 3px solid #fff;
    animation: typing 2s steps(20, end) infinite alternate,
               blink .7s step-end infinite;
}

/* Delay for each line */
.delay1 {
    animation-delay: 4.2s;
}

.delay2 {
    animation-delay: 6.4s;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}