/* hero section */

  /* first section hero */
        html,
        body {
            overflow-x: hidden;
        }

        .ent-hero {
            position: relative;
            background: #fff;
        }

        .ent-slider {
            position: relative;
            min-height: 480px;

            overflow: hidden;
        }

        .ent-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: 1s ease;
        }

        .ent-slide.active {
            opacity: 1;
            visibility: visible;
        }

        .ent-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.08);
            transition: 8s linear;
        }

        .ent-slide.active img {
            transform: scale(1);
        }

        .ent-content {
            position: absolute;
            top: 50%;
            left: 4%;
            transform: translateY(-50%);
            max-width: 650px;
            color: var(--black);
            z-index: 5;
        }

        .ent-content span {
            display: inline-block;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .ent-content h1 {
            font-size: 50px;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .ent-content h1 strong {
            background: var(--primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            font-weight: 600;
            font-size: 40px;
        }

        .ent-content p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 550px;
            color: #000;
        }

        .ent-btns {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .hero-btn {
            background: var(--primary);
            color: #000;
            text-decoration: none;
            padding: 15px 35px;
            font-weight: 700;
            transition: 0.4s;
        }

        .hero-btn:hover {
            transform: translateY(-4px);
            color: #fff;
        }

        .hero-btn-outline {
            border: 2px solid var(--white);
            color: var(--white);
            text-decoration: none;
            padding: 15px 35px;
            font-weight: 700;
            transition: 0.4s;
        }

        .hero-btn-outline:hover {
            background: var(--white);
            color: var(--black);
        }

        .slider-dots {
            position: absolute;
            bottom: 45px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #555;
            cursor: pointer;
            transition: 0.4s;
        }

        .dot.active {
            background: var(--primary);
            width: 38px;
            border-radius: 30px;
        }

        @media (max-width: 768px) {
            .ent-slider {
                height: 240px;
                min-height: auto;
            }

            .ent-slide img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                background: var(--combo);
            }

            .ent-content {
                left: 10px;
                right: 10px;
                max-width: 200px;
                top: 50%;
                transform: translateY(-50%);
            }

            .ent-content span {
                display: none;
            }

            .ent-content p {
                display: none;
            }

            .ent-content h1 {
                font-size: 20px;
                line-height: 1.2;
                margin: 0;
                font-weight: 700;
            }

            .ent-content h1 strong {
                color: var(--purple);
                display: block;
                font-weight: 600;
                font-size: 18px;
            }

            .slider-dots {
                bottom: 18px;
                gap: 8px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }

            .dot.active {
                width: 24px;
            }

            .ent-btns {
                display: flex;
                gap: 6px;
                margin-top: 10px;
            }

            .hero-btn,
            .hero-btn-outline {
                padding: 6px 10px;
                font-size: 10px;
                font-weight: 600;
                line-height: 1.2;
            }

        }

        /* second design sectriom */
         .luxury-divider {
            position: relative;
            height: 70px;
            background: #262930;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .luxury-divider::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 35%;
            height: 100%;
            opacity: .7;

            background:
                repeating-linear-gradient(45deg,
                    rgba(218, 161, 76, .22) 0px,
                    rgba(218, 161, 76, .22) 2px,
                    transparent 2px,
                    transparent 24px),
                repeating-linear-gradient(-45deg,
                    rgba(255, 255, 255, .08) 0px,
                    rgba(255, 255, 255, .08) 2px,
                    transparent 2px,
                    transparent 24px);
        }

        .luxury-divider::after {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            width: 35%;
            height: 100%;
            opacity: .7;

            background:
                repeating-linear-gradient(45deg,
                    rgba(255, 255, 255, .08) 0px,
                    rgba(255, 255, 255, .08) 2px,
                    transparent 2px,
                    transparent 24px),
                repeating-linear-gradient(-45deg,
                    rgba(218, 161, 76, .22) 0px,
                    rgba(218, 161, 76, .22) 2px,
                    transparent 2px,
                    transparent 24px);
        }

        .center-design {
            position: relative;
            width: 50px;
            height: 50px;
            z-index: 2;
        }

        .outer-ring {
            position: absolute;
            inset: 0;
            border: 1px solid rgba(218, 161, 76, .8);
            border-radius: 50%;
        }

        .middle-ring {
            position: absolute;
            inset: 10px;
            border: 1px solid rgba(218, 161, 76, .35);
            border-radius: 50%;
        }

        .inner-box {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 10px;
            height: 10px;
            background: #DAA14C;
            transform: translate(-50%, -50%) rotate(45deg);
            box-shadow: 0 0 15px rgba(218, 161, 76, .35);
        }

        .center-design::before,
        .center-design::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 180px;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(218, 161, 76, .6),
                    transparent);
        }

        .center-design::before {
            right: 100%;
        }

        .center-design::after {
            left: 100%;
        }

/* third  about*/

.swastik-about-section {
            background: #fff;
            padding: 30px 20px;
        }

        .swastik-tag {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .swastik-title {
            font-size: 40px;
            font-weight: 700;
            color: var(--combo);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .swastik-desc {
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .swastik-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            border: 1px solid #eee;
            background: #fff;
            height: 100%;
        }

        .swastik-feature i {
            color: var(--primary);
            font-size: 18px;
        }

        .swastik-about-box {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-card {
            background: linear-gradient(135deg,
                    rgba(59, 67, 80, .04),
                    rgba(218, 161, 76, .08));
            border: 3px solid var(--primary);
            padding: 25px;
            transition: .4s;
        }

        .info-card:hover {
            transform: translateX(8px);
        }

        .info-card h3 {
            color: var(--black);
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .info-card p {
            color: #666;
            margin: 0;
            line-height: 1.7;
        }

        @media(max-width:991px) {
            .swastik-about-section {
                padding: 30px 10px;
            }

            .swastik-title {
                font-size: 32px;
            }

            .swastik-about-box {
                margin-top: 10px;
            }
        }

        @media(max-width:576px) {
            .swastik-about-section {
                padding: 30px 10px;
            }

            .swastik-title {
                font-size: 28px;
            }

            .swastik-feature {
                font-size: 14px;
            }
        }

/* counter section start */

 .main-counter-section {
            padding: 20px 20px;
            background: var(--combo);
            color: #fff;
            overflow: hidden;
            border: 3px dashed var(--primary);
        }

        .main-counter-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .counter-box {
            display: flex;
            align-items: center;
            gap: 20px;
            opacity: 0;
            transform: translateY(40px);
            transition: all .8s ease;
        }

        .counter-box.active {
            opacity: 1;
            transform: translateY(0);
        }

        .counter-icon img {
            width: 60px;
            height: 60px;
            filter: brightness(0) invert(1);
        }

        .counter-content h2 {
            font-size: 35px;
            margin: 0;
            font-weight: 700;
            color: #ffffff;
        }

        .counter-content p {
            margin: 5px 0 0;
            color: #cfd9e3;
            font-size: 16px;
        }

        @media(max-width:992px) {
            .main-counter-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:576px) {
            .main-counter-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .counter-content h2 {
                font-size: 32px;
            }
        }

/* services index section start */

.swastik-services{
    background:#f8f8f8;
    padding: 30px 20px;
}

.service-subtitle{
    display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
}

.service-title{
   font-size: 40px;
            font-weight: 700;
            color: var(--combo);
            margin-bottom: 20px;
            line-height: 1.2;
}

.service-description{
    color:#666;
    line-height:1.5;
    max-width:700px;
    margin:auto;
}

.service-card{
    position:relative;
    display:block;
    background:#fff;
    padding:30px 25px;
    text-decoration:none;
    overflow:hidden;
    height:100%;
    transition:.4s;
    border:1px solid #ececec;
}
.service-card:hover{
    transform:translateY(-10px);
    text-decoration:none;
    border-color:#DAA14C;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}
.service-icon{
    width:70px;
    height:70px;
    background:#DAA14C;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
    transition:.4s;
}
.service-card:hover .service-icon{
    background:#3B4350;
    transform:rotate(-8deg);
}
.service-content h4{
    font-size:22px;
    font-weight:700;
    color:#000;
    margin-bottom:10px;
}
.service-content p{
    color:#666;
    line-height:1.5;
    margin-bottom:20px;
}
.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color: var(--primary);
    font-weight:700;
    transition:.3s;
}
.service-btn i{
    transition:.3s;
}

.service-card:hover .service-btn{
    color:#3B4350;
}

.service-card:hover .service-btn i{
    transform:translateX(8px);
}
.service-number{
    position:absolute;
    right:20px;
    top:18px;
    font-size:50px;
    font-weight:700;
    color:#efefef;
    line-height:1;
    transition:.3s;
}

.service-card:hover .service-number{
    color:#DAA14C15;
}

.consultation-card{
    height:100%;
    background:#3B4350;
    padding:30px 25px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    position:relative;
    overflow:hidden;
}
.consultation-card::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    right:-80px;
    top:-80px;
}
.consultation-card h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
    position:relative;
}
.consultation-card p{
    color:#ddd;
    line-height:1.5;
    margin-bottom:30px;
    position:relative;
}
.consult-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background: var(--primary);
    color:#fff;
    padding:14px 30px;
    font-weight:600;
    text-decoration:none;
    width:max-content;
    transition:.3s;
    position:relative;
}
.consult-btn:hover{
    background:#fff;
    color:#3B4350;
    text-decoration:none;
}

@media(max-width:991px){

.service-title{
    font-size:32px;
}

.service-card{
    padding:30px 25px;
}

.consultation-card{
    padding:35px 25px;
}

}

@media(max-width:767px){
.swastik-services{
    padding:30px 10px;
}
.service-title{
    font-size:28px;
}
.service-content h4{
    font-size:21px;
}

.service-number{
    font-size:45px;
}
.service-icon{
    width:65px;
    height:65px;
    font-size:26px;
}
.consultation-card h3{
    font-size:24px;
}

}

/*  how it works secion*/

.how-work-section{
    background:url("../images/how-it-works.png") center center/cover no-repeat fixed;
    position:relative;
    padding:0px 0px;
}

.how-work-overlay{
    background:rgba(34,40,49,.52);
    padding:40px 20px;
}

.hw-tag{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:8px 20px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

.hw-title{
    color:#fff;
    font-size:40px;
    font-weight:700;
    margin:20px 0;
    line-height:1.2;
}

.hw-title span{
    color:var(--primary);
}

.hw-desc{
    color:#ddd;
    line-height:1.5;
}

.hw-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
    border-left:4px solid var(--primary);
    padding:20px;
    transition:.35s;
    height:100%;
}

.hw-card:hover{
    background:rgba(255,255,255,.14);
    transform:translateX(8px);
}

.hw-icon{
    width:60px;
    height:60px;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.hw-content span{
    display:block;
    color:var(--primary);
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:4px;
}

.hw-content h4{
    color:#fff;
    font-size:20px;
    font-weight:600;
    margin-bottom:6px;
}

.hw-content p{
    color:#ddd;
    margin:0;
    line-height:1.5;
    font-size:15px;
}
@media(max-width:991px){

.how-work-section,
.how-work-overlay{
    padding:70px 0;
}

.hw-title{
    font-size:34px;
}

.hw-card{
    padding:20px;
}

}

@media(max-width:767px){
.how-work-overlay{
    padding:40px 10px;
}
.hw-title{
    font-size:28px;
}

.hw-desc{
    font-size:15px;
}

.hw-card{
    gap:15px;
}

.hw-icon{
    width:50px;
    height:50px;
    font-size:20px;
}

.hw-content h4{
    font-size:19px;
}

.hw-content p{
    font-size:14px;
}

}
@media(max-width:576px){
.how-work-overlay{
    padding:40px 10px;
}
.how-work-section,
.how-work-overlay{
    padding:60px 0;
    background-attachment:scroll;
}

.hw-title{
    font-size:24px;
}
.hw-card{
    padding:18px;
}
.hw-icon{
    width:45px;
    height:45px;
    font-size:18px;
}
.hw-content h4{
    font-size:17px;
}

.hw-content p{
    font-size:13px;
}

}


/* about section satrt */
.why-choose {
            background: #fff;
            padding: 40px 20px;
        }

        .why-image img {
            width: 100%;
            height: 480px;
            object-fit: cover;
        }

        .why-tag {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .why-choose h2 {
            font-size: 40px;
            font-weight: 700;
            color: var(--combo);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .why-desc {
            color: #666;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        .why-list {
            margin-top: 15px;
        }

        .why-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .why-icon {
            width: 60px;
            height: 60px;
            min-width: 60px;
            background: var(--combo);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            border: 3px solid var(--primary);
            flex-shrink: 0;
        }

        .why-item h5 {
            font-size: 20px;
            color: var(--black);
            margin-bottom: 8px;
        }

        .why-item p {
            margin: 0;
            color: #666;
            line-height: 1.5;
        }

        @media (max-width:991px) {
            .why-choose {
                padding: 50px 15px;
            }

            .why-image {
                margin-bottom: 20px;
            }

            .why-image img {
                height: auto;
            }

            .why-choose h2 {
                font-size: 34px;
            }
        }

        @media (max-width:576px) {
            .why-choose {
                padding: 40px 10px;
            }

            .why-tag {
                font-size: 12px;
                padding: 7px 14px;
                margin-bottom: 15px;
            }

            .why-choose h2 {
                font-size: 28px;
                line-height: 1.2;
                margin-bottom: 15px;
            }

            .why-desc {
                font-size: 15px;
                line-height: 1.5;
                margin-bottom: 25px;
            }

            .why-item {
                gap: 15px;
                margin-bottom: 25px;
            }

            .why-icon {
                width: 50px;
                height: 50px;
                min-width: 50px;
                font-size: 18px;
            }

            .why-item h5 {
                font-size: 18px;
                margin-bottom: 5px;
            }

            .why-item p {
                font-size: 14px;
                line-height: 1.6;
            }
        }

        /* cta section start */

        .compact-cta-section{
    padding:0px 20px;
}
.compact-cta{
    min-height:200px;
    background:linear-gradient(135deg,#3B4350,#242B35);
    padding:35px 45px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    overflow:hidden;
}
.cta-content{
    position:relative;
    z-index:2;
}

.cta-badge{
    display:inline-block;
    background:rgba(218,161,76,.15);
    color: var(--primary);
    padding:6px 16px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.cta-content h2{
    color:#fff;
    font-size:34px;
    font-weight:600;
    margin-bottom:10px;
}
.cta-content p{
    color:#d8d8d8;
    margin:0;
    font-size:16px;
}
.cta-buttons{
    display:flex;
    gap:15px;
    position:relative;
    z-index:2;
}

.btn-consult,
.btn-call{
    text-decoration:none;
    padding:14px 28px;
    font-weight:600;
    transition:.3s;
    display:flex;
    align-items:center;
    gap:10px;
}

.btn-consult{
    background:#DAA14C;
    color:#fff;
}

.btn-consult:hover{
    background:#fff;
    color:#3B4350;
}

.btn-call{
    border:2px solid rgba(255,255,255,.25);
    color:#fff;
}

.btn-call:hover{
    background:#fff;
    color:#3B4350;
}

@media(max-width:991px){
.compact-cta-section{
    padding:0px 10px;
}
.compact-cta{
    flex-direction:column;
    text-align:center;
    gap:25px;
    min-height:auto;
    padding:35px 25px;
}

.cta-content h2{
    font-size:28px;
}

.cta-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

}

@media(max-width:576px){
.compact-cta-section{
    padding:0px 10px;
}
.cta-content h2{
    font-size:22px;
}
.cta-content p{
    font-size:14px;
}
.btn-consult,
.btn-call{
    width:100%;
    justify-content:center;
}

.cta-buttons{
    width:100%;
}
}

/* testimonial section start */

 .testimonial-section {
            background: #f4f6fb;
            overflow: hidden;
        }

        .section-top {
            margin-bottom: 50px;
        }


        .testimonial-title {
            font-size: 40px;
            font-weight: 700;
            color: var(--combo);
            position: relative;
            display: inline-block;
            margin: 0;
            line-height: 1.2;
        }

        .testimonial-title span {
            color: var(--main);
            position: relative;
        }


        .testimonial-card {
            background: #fff;
            padding: 20px 20px;
            height: 100%;
            transition: 0.4s;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .quote-icon {
            font-size: 30px;
            color: var(--primary);
            margin-bottom: 14px;
        }

        .stars {
            margin-bottom: 24px;
        }

        .stars i {
            color: #ff9800;
            margin-right: 2px;
            font-size: 15px;
        }

        .stars .inactive {
            color: #d0d0d0;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.8;
            color: #17222e;
            margin-bottom: 30px;
            border-bottom: 1px solid #dddddd;
            padding-bottom: 30px;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .client-info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .client-info h4 {
            font-size: 16px;
            margin-bottom: 6px;
            color: #071321;
            font-weight: 600;
        }

        .client-info span {
            font-size: 13px;
            color: #7b8794;
        }

        .swiper {
            padding-bottom: 20px;
        }

        @media(max-width:1200px) {

            .testimonial-title {
                font-size: 54px;
            }
        }

        @media(max-width:991px) {

            .testimonial-title {
                font-size: 36px;
            }

            .testimonial-card {
                padding: 18px 18px;
            }
        }

        @media(max-width:768px) {

            .testimonial-title {
                font-size: 32px;
                line-height: 1.2;
            }

            .testimonial-text {
                font-size: 14px;
                line-height: 1.7;
            }

            .client-info h4 {
                font-size: 17px;
            }
        }

        @media(max-width:576px) {

            .testimonial-title {
                font-size: 28px;
            }

            .testimonial-card {
                padding: 17px 17px;
            }

            .testimonial-text {
                font-size: 13px;
            }

            .quote-icon {
                font-size: 19px;
            }
        }

      /* faq section start */

        .ent-faq-section {
            padding: 50px 20px;
            background: #fff;
        }

        .ent-faq-left {
            padding-right: 40px;
        }

        .ent-faq-tag {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .ent-faq-left h2 {
            font-size: 40px;
            line-height: 1.2;
            font-weight: 700;
            color: var(--combo);
            margin-bottom: 20px;
        }

        .ent-faq-left p {
            font-size: 18px;
            color: #6d7d87;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        .ent-faq-info {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .faq-info-box {
            background: #f8f8f8;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-left: 4px solid var(--primary);
        }

        .faq-info-box i {
            color: var(--primary);
            font-size: 20px;
        }

        .faq-info-box span {
            font-weight: 600;
            color: var(--combo);
        }

        .ent-faq-item {
            border-bottom: 1px solid #dfe7eb;
            padding: 25px 0;
        }

        .ent-faq-question {
            width: 100%;
            border: none;
            background: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            cursor: pointer;
            padding: 0;
        }

        .ent-faq-question span {
            font-size: 22px;
            font-weight: 600;
            color: var(--combo);
            line-height: 1.4;
        }

        .ent-faq-question i {
            color: var(--combo);
            font-size: 22px;
            transition: .3s;
        }

        .ent-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease;
        }

        .ent-faq-answer p {
            padding-top: 15px;
            margin: 0;
            color: #6d7d87;
            font-size: 17px;
            line-height: 1.5;
        }

        .ent-faq-item.active .ent-faq-answer {
            max-height: 300px;
        }

        .ent-faq-item.active .ent-faq-question i {
            transform: rotate(180deg);
        }

        @media(max-width:1199px) {
            .ent-faq-left h2 {
                font-size: 50px;
            }

            .ent-faq-question span {
                font-size: 24px;
            }
        }

        @media(max-width:991px) {
            .ent-faq-section {
                padding: 60px 15px;
            }

            .ent-faq-left {
                padding-right: 0;
            }

            .ent-faq-left h2 {
                font-size: 42px;
            }

            .ent-faq-question span {
                font-size: 22px;
            }
        }

        @media(max-width:767px) {
            .ent-faq-section {
                padding: 50px 10px;
            }

            .ent-faq-left h2 {
                font-size: 34px;
            }

            .ent-faq-left p {
                font-size: 15px;
            }

            .ent-faq-question span {
                font-size: 18px;
                padding-right: 15px;
            }

            .ent-faq-answer p {
                font-size: 15px;
                line-height: 1.7;
            }

            .ent-faq-info {
                gap: 10px;
            }

            .faq-info-box {
                width: 100%;
            }
        }

        @media(max-width:480px) {
            .ent-faq-left h2 {
                font-size: 28px;
            }

            .ent-faq-question span {
                font-size: 16px;
            }

            .ent-faq-question i {
                font-size: 18px;
            }
        }

/* form section */

 .consultation-section{
    padding:40px 20px;
    background:#f7f7f7;
}
.section-tag{
   display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
}
.consultation-content h2{
    font-size: 40px;
            line-height: 1.2;
            font-weight: 700;
            color: var(--combo);
            margin-bottom: 20px;
}

.consultation-content p{
    color:#666;
    line-height:1.5;
    margin-bottom:30px;
    font-size:16px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:22px;
}

.contact-item i{
    width:55px;
    height:55px;
    background:#DAA14C;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
    transition:.3s;
}

.contact-item:hover i{
    background:#3B4350;
}

.contact-item small{
    display:block;
    color:#888;
    font-size:13px;
    margin-bottom:2px;
}

.contact-item h6{
    margin:0;
    font-size:16px;
    font-weight:600;
    color:#222;
    line-height:1.5;
}

.consultation-form{
    background:#fff;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
}

.consultation-form h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:30px;
    color:#222;
}

.form-input{
    height:55px;
    border:1px solid #ddd;
    border-radius:0;
    box-shadow:none !important;
    padding:12px 15px;
    font-size:15px;
    transition:.3s;
}

.form-input:focus{
    border-color:#DAA14C;
}

.form-select.form-input{
    padding-right:40px;
}

textarea.form-input{
    height:auto;
    min-height:140px;
    resize:none;
}

.consult-btn{
    width:100%;
    height:55px;
    border:none;
    background:#DAA14C;
    color:#fff;
    font-weight:600;
    font-size:16px;
    transition:.3s;
}

.consult-btn:hover{
    background: #3B4350;
    color : #fff;
}

@media (max-width:1199px){

.consultation-content h2{
    font-size:36px;
}

.consultation-form{
    padding:35px;
}

}
@media (max-width:991px){

.consultation-section{
    padding:40px 0;
}

.consultation-content{
    text-align:center;
    margin-bottom:45px;
}

.consultation-content h2{
    font-size:32px;
}

.consultation-content p{
    max-width:650px;
    margin:0 auto 35px;
}

.contact-item{
    justify-content:center;
    text-align:left;
}

.consultation-form{
    padding:35px 30px;
}

.consultation-form h3{
    font-size:28px;
}

}
@media (max-width:767px){

.consultation-section{
    padding:40px 10px;
}

.section-tag{
    font-size:13px;
}

.consultation-content h2{
    font-size:28px;
}

.consultation-content p{
    font-size:15px;
    margin-bottom:30px;
}

.contact-item{
    gap:14px;
    margin-bottom:18px;
    justify-content:flex-start;
}

.contact-item i{
    width:48px;
    height:48px;
    font-size:18px;
}

.contact-item h6{
    font-size:15px;
}

.consultation-form{
    padding:25px;
}

.consultation-form h3{
    font-size:24px;
    margin-bottom:20px;
}

.form-input{
    height:50px;
    font-size:14px;
}

textarea.form-input{
    min-height:120px;
}

.consult-btn{
    height:50px;
    font-size:15px;
}
}
@media (max-width:575px){

.consultation-section{
    padding:40px 10px;
}

.consultation-content{
    text-align:left;
}

.consultation-content h2{
    font-size:24px;
}

.consultation-content p{
    font-size:14px;
}

.contact-item{
    justify-content:flex-start;
    align-items:flex-start;
}

.contact-item i{
    width:45px;
    height:45px;
    font-size:17px;
}

.contact-item small{
    font-size:12px;
}

.contact-item h6{
    font-size:14px;
}

.consultation-form{
    padding:20px;
}

.consultation-form h3{
    font-size:22px;
}

.form-input{
    height:48px;
    padding:10px 12px;
}

textarea.form-input{
    min-height:110px;
}

.consult-btn{
    height:48px;
    font-size:14px;
}
}


/* map section */

  .ent-map-section {
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .ent-map-section iframe {
            width: 100%;
            height: 300px;
            display: block;
            border: none;
        }