/*=========================================
        GOOGLE FONT
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');


/*=========================================
            RESET
=========================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fdfaf8;
    color: #222;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


/*=========================================
            VARIABLES
=========================================*/

:root {

    --gold: #C6A55C;
    --black: #111111;
    --white: #ffffff;
    --light: #F8F6F2;
    --text: #666;

}


/*=========================================
            NAVBAR
=========================================*/

.custom-navbar {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 999;

    padding: 18px 0;

    transition: .4s;

}

.custom-navbar.scrolled {

    background: #111;

    padding: 12px 0;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .20);

}


/*=========================================
            LOGO
=========================================*/

.navbar-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff !important;

    font-family: 'Playfair Display', serif;

    font-size: 30px;

    font-weight: 700;

}

.navbar-brand img {

    width: 85px;

    height: 85px;

    object-fit: contain;

}


/*=========================================
            MENU
=========================================*/

.navbar-nav {

    gap: 12px;

}

.nav-link {

    color: #fff !important;

    font-size: 16px;

    font-weight: 500;

    position: relative;

    transition: .3s;

}

.nav-link::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -5px;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: .4s;

    transform: translateX(-50%);

}

.nav-link:hover {

    color: var(--gold) !important;

}

.nav-link:hover::after {

    width: 80%;

}


/*=========================================
        DROPDOWN
=========================================*/

.dropdown-menu {

    border: none;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

}

.dropdown-item {

    padding: 12px 20px;

    transition: .3s;

}

.dropdown-item:hover {

    background: var(--gold);

    color: #fff;

}


/*=========================================
        SOCIAL ICON
=========================================*/

.social-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    color: #fff;

    margin-right: 10px;

    font-size: 20px;

    transition: .3s;

}

.social-icon:hover {

    background: var(--gold);

    color: #fff;

    transform: translateY(-5px);

}


/*=========================================
        BOOK BUTTON
=========================================*/

.appointment-btn {

    background: var(--gold);

    color: #fff;

    padding: 13px 28px;

    border-radius: 40px;

    font-weight: 600;

    transition: .3s;

}

.appointment-btn:hover {

    background: #fff;

    color: #111;

}


/*=========================================
        MOBILE TOGGLER
=========================================*/

.navbar-toggler {

    border: none;

    color: #fff;

    font-size: 30px;

}

.navbar-toggler:focus {

    box-shadow: none;

}


/*=========================================
        TABLET
=========================================*/

@media(max-width:991px) {

    /* .custom-navbar{

    background:#111;

} */

    .navbar-brand img {

        width: 70px;

        height: 70px;

    }

    .navbar-collapse {

        background: #111;

        margin-top: 15px;

        padding: 20px;

        border-radius: 15px;

    }

    .navbar-nav {

        gap: 5px;

    }

    .nav-link {

        padding: 12px 0 !important;

    }

    .social-icon {

        margin-top: 15px;

    }

    .appointment-btn {

        display: inline-block;

        margin-top: 20px;

    }

}


/*=========================================
        MOBILE
=========================================*/

@media(max-width:576px) {

    .navbar-brand {

        font-size: 24px;

    }

    .navbar-brand img {
        width: 45px;
        height: 40px;
    }

    .social-icon {

        width: 40px;

        height: 40px;

    }

    .appointment-btn {

        width: 100%;

        text-align: center;

    }

}

/*=========================================
            HERO SECTION
=========================================*/

.hero-section {
    position: relative;
    overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100vh;
}

/*=========================================
            HERO IMAGE
=========================================*/

.hero-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

/*=========================================
            DARK OVERLAY
=========================================*/

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .45));
    z-index: 1;
}

/*=========================================
            HERO CONTENT
=========================================*/

.hero-content {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;

    max-width: 850px;

    text-align: center;

    z-index: 5;

}

/*=========================================
            SUB TITLE
=========================================*/

.hero-subtitle {

    display: inline-block;

    color: var(--gold);

    text-transform: uppercase;

    letter-spacing: 4px;

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 20px;

}

/*=========================================
            HEADING
=========================================*/

.hero-content h1 {

    font-family: 'Playfair Display', serif;

    font-size: 68px;

    color: #fff;

    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 20px;

}

/*=========================================
            PARAGRAPH
=========================================*/

.hero-content p {

    max-width: 700px;

    margin: auto;

    color: #fff;

    font-size: 18px;

    line-height: 32px;

    margin-bottom: 35px;

}

/*=========================================
            BUTTON GROUP
=========================================*/

.hero-btns {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

}

/*=========================================
            BUTTON 1
=========================================*/

.btn-book {

    display: inline-block;

    padding: 15px 38px;

    background: var(--gold);

    color: #fff;

    border-radius: 50px;

    transition: .4s;

    font-weight: 600;

}

.btn-book:hover {

    background: #fff;

    color: #111;

    transform: translateY(-4px);

}

/*=========================================
            BUTTON 2
=========================================*/

.btn-service {

    display: inline-block;

    padding: 15px 38px;

    border: 2px solid #fff;

    color: #fff;

    border-radius: 50px;

    transition: .4s;

}

.btn-service:hover {

    background: #fff;

    color: #111;

    transform: translateY(-4px);

}

/*=========================================
        CAROUSEL ARROWS
=========================================*/

.carousel-control-prev,
.carousel-control-next {

    width: 70px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, .15);

    backdrop-filter: blur(8px);

    background-size: 25px;

}

/*=========================================
        INDICATORS
=========================================*/

.carousel-indicators [data-bs-target] {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: var(--gold);

}

/*=========================================
        HERO TEXT ANIMATION
=========================================*/

.hero-subtitle {

    animation: fadeDown 1s ease;

}

.hero-content h1 {

    animation: fadeUp 1.2s ease;

}

.hero-content p {

    animation: fadeUp 1.4s ease;

}

.hero-btns {

    animation: fadeUp 1.6s ease;

}

/*=========================================
            KEYFRAMES
=========================================*/

@keyframes fadeDown {

    from {

        opacity: 0;

        transform: translateY(-40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(60px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*=========================================
            LAPTOP
=========================================*/

@media(max-width:1199px) {

    .hero-content h1 {

        font-size: 56px;

    }

    .hero-content p {

        font-size: 17px;

    }

}

/*=========================================
            TABLET
=========================================*/

@media(max-width:991px) {

    .carousel,
    .carousel-inner,
    .carousel-item {

        height: 85vh;

    }

    .hero-img {

        height: 85vh;

    }

    .hero-content {

        width: 90%;

    }

    .hero-content h1 {

        font-size: 46px;

    }

    .hero-content p {

        font-size: 16px;

        line-height: 28px;

    }

}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:767px) {

    .carousel,
    .carousel-inner,
    .carousel-item {

        height: 35vh;

    }

    .hero-img {

        height: 35vh;

    }

    .hero-content {

        width: 95%;
        display: none;
    }

    .hero-subtitle {

        font-size: 13px;

        letter-spacing: 2px;

    }

    .hero-content h1 {

        font-size: 34px;

    }

    .hero-content p {

        font-size: 15px;

        line-height: 26px;

    }

    .hero-btns {

        flex-direction: column;

    }

    .btn-book,
    .btn-service {

        width: 220px;

        text-align: center;

    }

    .carousel-control-prev,
    .carousel-control-next {

        display: none;

    }

}

/*=========================================
        COMMON SECTION
=========================================*/

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: var(--text);
    line-height: 30px;
}


/*=========================================
        ABOUT SECTION
=========================================*/

.about-section {
    background: #fff;
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    transition: .5s;
}

.about-img:hover img {
    transform: scale(1.08);
}

.experience-box {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 160px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
}

.experience-box h3 {
    font-size: 42px;
    margin: 0;
    font-weight: 700;
}

.experience-box span {
    font-size: 15px;
}

.about-content {
    padding-left: 40px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    margin-bottom: 20px;
    color: var(--black);
}

.about-content p {
    color: var(--text);
    line-height: 30px;
    margin-bottom: 18px;
}

.about-list {
    margin-top: 25px;
}

.about-list li {
    margin-bottom: 15px;
    color: #444;
    font-weight: 500;
}

.about-list i {
    color: var(--gold);
    margin-right: 10px;
}


/*=========================================
        GOLD BUTTON
=========================================*/

.theme-btn {
    display: inline-block;
    padding: 15px 36px;
    background: var(--gold);
    color: #fff;
    border-radius: 50px;
    transition: .4s;
    font-weight: 600;
    margin-top: 20px;
}

.theme-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-4px);
}


/*=========================================
        SERVICES
=========================================*/

.service-section {
    background: #f9f7f3;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-size: 28px;
}

.service-content p {
    color: var(--text);
    line-height: 28px;
    margin-bottom: 20px;
}

.service-btn {
    color: var(--gold);
    font-weight: 600;
}

.service-btn:hover {
    color: #111;
}


/*=========================================
        IMAGE HOVER
=========================================*/

.image-hover {
    overflow: hidden;
    border-radius: 20px;
}

.image-hover img {
    transition: .6s;
}

.image-hover:hover img {
    transform: scale(1.1);
}


/*=========================================
        SECTION BACKGROUND
=========================================*/

.bg-light {
    background: #f9f7f3 !important;
}

.bg-dark {
    background: #111 !important;
}

.text-gold {
    color: var(--gold);
}


/*=========================================
        ANIMATION
=========================================*/

.fade-up {
    animation: fadeUp .8s ease;
}

.fade-left {
    animation: fadeLeft .8s ease;
}

.fade-right {
    animation: fadeRight .8s ease;
}

@keyframes fadeLeft {

    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes fadeRight {

    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/*=========================================
        TABLET
=========================================*/

@media(max-width:991px) {

    .section-padding {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .experience-box {
        right: 20px;
        bottom: 20px;
    }

}


/*=========================================
        MOBILE
=========================================*/

@media(max-width:767px) {

    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .service-card img {
        height: 220px;
    }

    .experience-box {
        min-width: 130px;
        padding: 18px;
    }

    .experience-box h3 {
        font-size: 30px;
    }

    .theme-btn {
        width: 100%;
        text-align: center;
    }

}

/*=========================================
        ABOUT GALLERY
=========================================*/

.about-gallery{

    position:relative;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.gallery-item img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/* Different Heights */

.item-1 img{

    height:320px;

}

.item-2 img{

     height:320px;

}

.item-3 img{

    height:320px;

}

.item-4 img{

     height:320px;

}

/* Experience Card */

.experience-box{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:170px;

    height:170px;

    border-radius:50%;

    background:#c6a55c;

    color:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

    z-index:10;

}

.experience-box h3{

    font-size:42px;

    margin:0;

    font-weight:700;

}

.experience-box span{

    font-size:15px;

    line-height:24px;

}

@media(max-width:991px){

.about-gallery{

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.gallery-item img{

    height:180px !important;

    margin-top:0 !important;

}

.experience-box{

    width:120px;

    height:120px;

}

.experience-box h3{

    font-size:28px;

}

}

@media(max-width:576px){

.about-gallery{

    grid-template-columns:1fr 1fr;

    gap:10px;

}

.gallery-item img{

    height:140px !important;

}

.experience-box{

    width:90px;

    height:90px;

}

.experience-box h3{

    font-size:22px;

}

.experience-box span{

    font-size:11px;

    line-height:16px;

}

}

/*=========================================
        SERVICES
=========================================*/

.services-section{
    background:#f8f5f0;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-img{
    overflow:hidden;
}

.service-img img{
    width:100%;
    height:330px;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover .service-img img{
    transform:scale(1.1);
}

.service-content{
    padding:30px;
    text-align:center;
}

.service-icon{

    width:70px;
    height:70px;

    margin:auto;
    margin-top:-60px;

    border-radius:50%;

    background:#c6a55c;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    position:relative;

    z-index:2;

    border:6px solid #fff;

}

.service-content h4{

    margin-top:20px;

    font-family:'Playfair Display',serif;

    font-size:28px;

    color:#111;

}

.service-content p{

    color:#666;

    line-height:28px;

    margin:18px 0;

}

.service-btn{

    color:#c6a55c;

    font-weight:600;

    transition:.3s;

}

.service-btn:hover{

    color:#111;

    letter-spacing:1px;

}


/* Responsive */

@media(max-width:991px){

.service-img img{

    height:240px;

}

}

@media(max-width:576px){

.service-content{

    padding:25px;

}

.service-img img{

    height:220px;

}

.service-content h4{

    font-size:24px;

}

}

.servicesSwiper{
    padding:20px 5px 70px;
}

.servicesSwiper .swiper-slide{
    height:auto;
}

.servicesSwiper .swiper-button-next,
.servicesSwiper .swiper-button-prev{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#c6a55c;
    color:#fff;
}

.servicesSwiper .swiper-button-next::after,
.servicesSwiper .swiper-button-prev::after{
    font-size:18px;
    font-weight:700;
}

.servicesSwiper .swiper-button-next:hover,
.servicesSwiper .swiper-button-prev:hover{
    background:#111;
}

.servicesSwiper .swiper-pagination{
    margin-top:20px;
}

.servicesSwiper .swiper-pagination-bullet{
    background:#c6a55c;
}

.servicesSwiper .swiper-pagination-bullet-active{
    width:24px;
    border-radius:20px;
}

/*==========================
      WHY CHOOSE US
===========================*/

.why-choose-section{
    background:#111;
    padding:100px 0;
}

.why-img{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.why-img img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:25px;
}

.experience-card{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#c6a55c;
    color:#fff;
    padding:25px 35px;
    border-radius:20px;
    text-align:center;
}

.experience-card h2{
    font-size:52px;
    margin-bottom:5px;
    font-family:'Playfair Display',serif;
}

.section-heading{
    color:#fff;
    font-size:48px;
    margin:20px 0;
    font-family:'Playfair Display',serif;
}

.section-text{
    color:#bdbdbd;
    line-height:32px;
    margin-bottom:20px;
}

.feature-box{
    background:#1d1d1d;
    padding:30px;
    border-radius:20px;
    transition:.4s;
    height:100%;
}

.feature-box:hover{
    background:#c6a55c;
    transform:translateY(-10px);
}

.feature-box i{
    font-size:42px;
    color:#c6a55c;
    margin-bottom:15px;
}

.feature-box:hover i{
    color:#fff;
}

.feature-box h5{
    color:#fff;
    margin-bottom:10px;
}

.feature-box p{
    color:#d8d8d8;
    margin:0;
}

@media(max-width:991px){

.section-heading{
    font-size:38px;
}

.why-img{
    margin-bottom:40px;
}

}

@media(max-width:576px){

.why-img img{
    height:450px;
}

.experience-card{
    left:15px;
    right:15px;
    bottom:15px;
}

.section-heading{
    font-size:30px;
}

}

/*==========================
        PORTFOLIO
===========================*/

.gallery-section{
    background:#fffefe;
    padding:100px 0;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.gallery-card img{
    width:100%;
    height:290px;
    object-fit:cover;
    transition:.6s;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,.1));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    opacity:0;
    transition:.4s;
}

.gallery-overlay h4{
    color:#fff;
    font-size:28px;
    font-family:'Playfair Display',serif;
}

.gallery-overlay span{
    color:#d4af37;
}

.gallery-card:hover img{
    transform:scale(1.1);
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

@media(max-width:768px){

.gallery-card img{
    height:300px;
}

}

/*==============================
      BRIDAL PACKAGES
==============================*/

.package-section{
    background:#fff3f3;
    padding:100px 0;
}

.package-card{

    background:#1b1b1b;
    padding:45px 35px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    height:100%;
    border:1px solid rgba(255,255,255,.08);

}

.package-card:hover{

    transform:translateY(-12px);

}

.active-package{

    border:2px solid #c6a55c;
    transform:scale(1.05);

}

.package-tag{

    display:inline-block;
    background:#c6a55c;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;

}

.package-card h3{

    color:#fff;
    margin-bottom:15px;
    font-size:30px;
    font-family:'Playfair Display',serif;

}

.package-card h2{

    color:#c6a55c;
    font-size:50px;
    margin-bottom:30px;

}

.package-card ul{

    list-style:none;
    padding:0;
    margin:0 0 35px;

}

.package-card ul li{

    color:#ddd;
    margin-bottom:15px;
    text-align:left;

}

.package-card i{

    color:#c6a55c;
    margin-right:10px;

}

.package-card .btn-book{

    display:block;

}

/*=====================================
        TESTIMONIAL SECTION
======================================*/

.testimonial-section{
    position: relative;
    padding: 45px 0;
    background: #111;
    overflow: hidden;
}

.testimonial-section::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(198,165,92,.08);
    border-radius: 50%;
    top: -180px;
    left: -180px;
    filter: blur(120px);
}

.testimonial-section::after{
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(198,165,92,.06);
    border-radius: 50%;
    bottom: -180px;
    right: -180px;
    filter: blur(120px);
}

.testimonial-section .section-subtitle{
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-section h2{
    color:#fff;
    font-size:48px;
    font-family:'Playfair Display',serif;
    margin:15px 0;
}

.testimonial-section p{
    color:#bdbdbd;
}

.testimonialSwiper{
    padding:25px 5px 70px;
}

/* Card */

.testimonial-card{

    position:relative;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:35px;

    transition:.45s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

    box-shadow:0 20px 50px rgba(198,165,92,.15);

}

/* Quote */

.quote-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:rgba(198,165,92,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.quote-icon i{

    font-size:34px;

    color:var(--gold);

}

/* Review */

.testimonial-card p{

    color:#ddd;

    font-size:16px;

    line-height:30px;

    margin-bottom:25px;

    min-height:150px;

}

/* Rating */

.rating{

    margin-bottom:25px;

}

.rating i{

    color:#FFD700;

    font-size:17px;

    margin-right:4px;

}

/* Client */

.client-info{

    display:flex;

    align-items:center;

    gap:15px;

}

.client-info img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid var(--gold);

}

.client-info h5{

    color:#fff;

    margin-bottom:4px;

    font-size:20px;

}

.client-info span{

    color:#bdbdbd;

    font-size:14px;

}

/* Swiper Arrows */

.swiper-button-next,
.swiper-button-prev{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#1d1d1d;

    border:1px solid rgba(255,255,255,.1);

    transition:.4s;

}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:var(--gold);

}

.swiper-button-next::after,
.swiper-button-prev::after{

    font-size:18px;

    color:#fff;

    font-weight:bold;

}

/* Pagination */

.swiper-pagination{

    bottom:0 !important;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#666;

    opacity:1;

}

.swiper-pagination-bullet-active{

    background:var(--gold);

    width:35px;

    border-radius:30px;

}

/* Responsive */

@media(max-width:991px){

.testimonial-section{

padding:80px 0;

}

.testimonial-section h2{

font-size:38px;

}

.testimonial-card{

padding:30px;

}

}

@media(max-width:768px){

.testimonial-section h2{

font-size:30px;

}

.testimonial-card p{

min-height:auto;

}

.client-info img{

width:60px;

height:60px;

}

.swiper-button-next,
.swiper-button-prev{

display:none;

}

}

@media(max-width:576px){

.testimonial-section{

padding:70px 0;

}

.testimonial-card{

padding:25px;

}

.quote-icon{

width:60px;

height:60px;

}

.quote-icon i{

font-size:28px;

}

}

/*=====================================
            TEAM SECTION
======================================*/

.team-section{
    background:#ffffff;
    padding:100px 0;
}

.team-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-img{
    position:relative;
    overflow:hidden;
}

.team-img img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.5s;
}

.team-card:hover .team-img img{
    transform:scale(1.08);
}

.team-social{

    position:absolute;

    bottom:-60px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:10px;

    transition:.4s;

}

.team-card:hover .team-social{

    bottom:20px;

}

.team-social a{

    width:45px;

    height:45px;

    background:#c6a55c;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.team-social a:hover{

    background:#111;

}

.team-content{

    padding:25px;

}

.team-content h4{

    font-size:24px;

    margin-bottom:8px;

    font-family:'Playfair Display',serif;

}

.team-content span{

    color:#888;

    font-size:15px;

}

/* Responsive */

@media(max-width:991px){

.team-img img{

height:300px;

}

}

@media(max-width:768px){

.team-section{

padding:80px 0;

}

.team-img img{

height:280px;

}

}

@media(max-width:576px){

.team-img img{

height:320px;

}

}

/*=====================================
            FAQ SECTION
======================================*/

.faq-section{
 background:linear-gradient(135deg,#fdf8f3,#faf5ef);
     padding:45px 0;
    position:relative;
}

.faq-section::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:300px;
    height:300px;
    background:rgba(198,165,92,.08);
    border-radius:50%;
    filter:blur(90px);
}

.faq-section h2{
    color:#222;
    font-size:48px;
    font-family:'Playfair Display',serif;
    margin:20px 0;
}

.faq-section p{
    color:#666;
    line-height:30px;
}

.faq-section img{
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* Accordion */

.accordion-item{
    border:none;
    border-radius:18px !important;
    overflow:hidden;
    margin-bottom:18px;
    background:#ffffff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.accordion-button{
    background:#ffffff;
    color:#222;
    font-size:18px;
    font-weight:600;
    padding:22px;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:#c6a55c;
    color:#fff;
}

.accordion-button::after{
    filter:none;
}

.accordion-body{
    background:#faf7f2;
    color:#666;
    line-height:30px;
    padding:22px;
}

.accordion-button:focus{
    box-shadow:none;
    border:none;
}

/* Hover */

.accordion-item:hover{
    transform:translateY(-4px);
    transition:.35s;
    box-shadow:0 15px 35px rgba(198,165,92,.18);
}

/* Responsive */

@media(max-width:991px){

.faq-section{
    padding:80px 0;
}

.faq-section h2{
    font-size:38px;
    text-align:center;
}

.faq-section p{
    text-align:center;
}

}

@media(max-width:576px){

.faq-section h2{
    font-size:30px;
}

.accordion-button{
    font-size:16px;
    padding:18px;
}

.accordion-body{
    font-size:15px;
}

}

/*=====================================
        APPOINTMENT CTA
======================================*/

.appointment-cta{

    position:relative;

    background:url("assets/images/cta-bg.jpg") center center no-repeat;

    background-size:cover;

    background-attachment:fixed;

}

.appointment-overlay{

    background:linear-gradient(
        rgba(18,18,18,.70),
        rgba(18,18,18,.70)
    );

    padding:140px 0;

}

.appointment-content{

    max-width:800px;

    margin:auto;

    text-align:center;

}

.appointment-subtitle{

    display:inline-block;

    color:#c6a55c;

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:15px;

    font-weight:600;

    margin-bottom:18px;

}

.appointment-content h2{

    font-family:'Playfair Display',serif;

    color:#fff;

    font-size:60px;

    line-height:1.2;

    margin-bottom:25px;

}

.appointment-content p{

    color:#f3f3f3;

    font-size:18px;

    line-height:32px;

    max-width:700px;

    margin:0 auto 45px;

}

.appointment-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-btn{

    background:#c6a55c;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.cta-btn:hover{

    background:#fff;

    color:#111;

}

.cta-btn-outline{

    border:2px solid #fff;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    transition:.4s;

}

.cta-btn-outline:hover{

    background:#fff;

    color:#111;

}

@media(max-width:991px){

    .appointment-overlay{

        padding:100px 20px;

    }

    .appointment-content h2{

        font-size:42px;

    }

}

@media(max-width:767px){


    .appointment-cta{

        background-attachment:scroll;

    }

    .appointment-overlay{

        padding:80px 20px;

    }

    .appointment-content h2{

        font-size:32px;

    }

    .appointment-content p{

        font-size:16px;

        line-height:28px;

    }

    .appointment-buttons{

        flex-direction:column;

        align-items:center;

    }

    .cta-btn,
    .cta-btn-outline{

        width:250px;

        text-align:center;

    }

}
/*=====================================
        INSTAGRAM SECTION
======================================*/

.instagram-section{

    background:#fdf8f3;

    padding:100px 0;

}

.insta-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

}

.insta-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.insta-overlay{

    position:absolute;

    inset:0;

    background:rgba(198,165,92,.75);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.insta-overlay i{

    color:#fff;

    font-size:40px;

}

.insta-card:hover img{

    transform:scale(1.1);

}

.insta-card:hover .insta-overlay{

    opacity:1;

}

/*=====================================
            FOOTER
======================================*/

.footer-section{

    background:#111;

    padding:90px 0 25px;

}

.footer-logo img{

    width:90px;

    margin-bottom:20px;

}

.footer-about{

    color:#bbb;

    line-height:30px;

    margin-bottom:25px;

}

.footer-section h4{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

    font-family:'Playfair Display',serif;

}

.footer-section ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-section ul li{

    margin-bottom:15px;

    color:#bbb;

}

.footer-section ul li a{

    color:#bbb;

    transition:.3s;

}

.footer-section ul li a:hover{

    color:#c6a55c;

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#222;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.4s;

    font-size:18px;

}

.footer-social a:hover{

    background:#c6a55c;

    transform:translateY(-5px);

}

.footer-contact li{

    display:flex;

    gap:12px;

    align-items:flex-start;

}

.footer-contact i{

    color:#c6a55c;

    margin-top:4px;

}

.footer-section hr{

    border-color:rgba(255,255,255,.08);

    margin:45px 0 25px;

}

/*=====================================
        COPYRIGHT
======================================*/

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:50px;

    padding:22px 0;

    text-align:center;

}

.copyright-text{

    margin:0;

    color:#cfcfcf;

    font-size:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:8px;

}

.company-name{

    color:#fff;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.company-name:hover{

    color:#c6a55c;

}

.developer-text{

    display:flex;

    align-items:center;

    gap:8px;

    margin-left:10px;

}

.technest-logo{

    height:22px;

    width:auto;

    transition:.3s;

}

.technest-logo:hover{

    transform:scale(1.08);

}

/*==============================
        Responsive
==============================*/

@media (max-width:768px){

    .copyright-text{

        font-size:14px;

        line-height:28px;

    }

    .developer-text{

        margin-left:0;

    }

    .technest-logo{

        height:20px;

    }

}

@media(max-width:991px){

.footer-section{

text-align:center;

}

.footer-logo img{

margin:auto auto 20px;

}

.footer-social{

justify-content:center;

}

.footer-contact li{

justify-content:center;

}

}

@media(max-width:576px){

.footer-section{

padding:70px 0 20px;

}

.footer-section h4{

font-size:20px;

}

.footer-about{

font-size:15px;

line-height:28px;

}

}

/*=====================================
      FLOATING ICONS
======================================*/

.floating-icons{
    position:fixed;
    right:18px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.float-btn{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
    transition:.3s;
}

.float-btn:hover{
    transform:translateY(-4px) scale(1.08);
}

/* WhatsApp */

.whatsapp{
    background:#25D366;
}

.whatsapp i{
    font-size:26px;
    color:#fff;
}

/* Phone */

.phone{
    background:#c6a55c;
}

.phone i{
    font-size:20px;
    color:#fff;
}

/* Google Review */

.google-review{
    background:#fff;
    border:2px solid #ececec;
}

.google-review img{
    width:30px;
    height:30px;
    object-fit:contain;
    display:block;
}

/* Mobile */

@media(max-width:768px){

    .floating-icons{
        left:15px;
        right:auto;
        bottom:18px;
        gap:10px;
    }

    .float-btn{
        width:46px;
        height:46px;
    }

    .whatsapp i{
        font-size:24px;
    }

    .phone i{
        font-size:18px;
    }

    .google-review img{
        width:26px;
        height:26px;
    }

}