/* 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: #555;
}
.ent-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-btn {
  background: var(--primary);
  color: #fff;
  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(--black);
  color: var(--black);
  text-decoration: none;
  padding: 15px 35px;
  font-weight: 700;
  transition: 0.4s;
}
.hero-btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.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: 250px;
    top: 50%;
    transform: translateY(-50%);
  }
  .ent-content span {
    font-size: 12px;
    color : var(--combo);
  }
  .ent-content p {
    display: none;
  }
  .ent-content h1 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
  }
  .ent-content h1 strong {
    color: var(--purple);
    display: block;
    font-weight: 600;
    font-size: 21px;
  }
  .slider-dots {
    bottom: 18px;
    gap: 8px;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
  .dot.active {
    width: 22px;
  }
  .ent-btns {
    display: flex;
    gap: 6px;
    margin-top: 10px;
  }

  .hero-btn,
  .hero-btn-outline {
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
  }
 
}

/* design section   */

.ent-ecg-divider{
    background:#fff;
    padding:12px 0;
    overflow:hidden;
}

.ent-ecg-divider svg{
    width:100%;
    height:60px;
    display:block;
}

/* ECG Drawing Animation */
#ecgPath{
    stroke-dasharray:18 8;
    animation:ecgMove .7s linear infinite;
}

@keyframes ecgMove{
    from{
        stroke-dashoffset:0;
    }
    to{
        stroke-dashoffset:-26;
    }
}


/* about dr manish section */
 
   .drmanish-about-section {
            background: #fff;
            position: relative;
            overflow: hidden;
            padding: 40px 20px;
        }

        .drmanish-image-box {
            position: relative;
        }

        .drmanish-image-box img {
            width: 100%;
            border: 4px solid var(--combo);

        }

        .drmanish-floating-card {
            position: absolute;
            right: -20px;
            bottom: 40px;
            background: #fff;
            padding: 14px 20px;
            border-left: 5px solid var(--primary);
            box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
        }

        .drmanish-floating-card h4 {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .drmanish-floating-card p {
            margin: 0;
            color: #666;
            font-size: 14px;

        }

        .drmanish-subtitle {
            color: var(--combo);
            font-weight: 700;
            letter-spacing: 2px;
            font-size: 14px;
        }

        .drmanish-title {
            font-size: 40px;
            font-weight: 700;
            color: var(--primary);
            margin-top: 10px;
            line-height: 1.2;
        }

        .drmanish-description {
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;

        }
        .drmanish-info-image{
   
}

.drmanish-info-image img{
    width:100%;
   
    border-radius:12px;
    display:block;
}
.drmanish-doctor-details{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.detail-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:18px;
    background:#fff;
    border-left:4px solid var(--primary);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.detail-item:hover{
    transform:translateY(-3px);
}

.detail-item i{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:#fff;
    font-size:22px;
    flex-shrink:0;
}

.detail-item h5{
    margin:0 0 6px;
    color:var(--primary);
    font-size:19px;
    font-weight:700;
}

.detail-item p{
    margin:0;
    color:#666;
    line-height:1.6;
}

@media(max-width:767px){

.detail-item{
    padding:15px;
}

.detail-item i{
    width:45px;
    height:45px;
    font-size:18px;
}

.detail-item h5{
    font-size:17px;
}

.detail-item p{
    font-size:14px;
}

}
     
        @media (max-width:991px) {
            .drmanish-about-section {
                padding: 40px 15px;
            }

            .drmanish-image-box {
                max-width: 550px;
                margin: 0 auto 35px;
            }

            .drmanish-image-box img {
                width: 100%;
            }

            .drmanish-floating-card {
                position: absolute;
                right: 20px;
                bottom: 20px;
                padding: 12px 18px;
            }

            /* Left Alignment */

            .drmanish-subtitle {
                display: block;
                text-align: left;
            }

            .drmanish-title {
                font-size: 32px;
                text-align: left;
            }

            .drmanish-description {
                text-align: left;
                font-size: 15px;
                line-height: 1.7;
            }


        }

        @media (max-width:767px) {

            .drmanish-about-section {
                padding: 40px 10px;
            }

            .drmanish-title {
                font-size: 28px;
                text-align: left;
            }

            .drmanish-subtitle {
                text-align: left;
            }

            .drmanish-description {
                font-size: 14px;
                line-height: 1.7;
                text-align: left;
            }
            .drmanish-floating-card {
                position: relative;
                right: auto;
                bottom: auto;
                margin: 20px 0 0;
                width: max-content;
                max-width: 100%;
            }


        }

        @media (max-width:575px) {

            .drmanish-about-section {
                padding: 40px 10px;
            }

            .drmanish-subtitle {
                font-size: 13px;
                letter-spacing: 1px;
                text-align: left;
            }

            .drmanish-title {
                font-size: 28px;
                text-align: left;
            }

            .drmanish-description {
                font-size: 14px;
                text-align: left;
            }

            .drmanish-floating-card {
                text-align: left;
                padding: 12px 15px;
            }

        }



/* marquee section start */

  .ent-marquee-section {
            height: 70px;
            background: linear-gradient(90deg, #1D5EAC, #174A86);
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        .ent-marquee-track {
            display: flex;
            width: max-content;
            animation: marqueeLoop 28s linear infinite;
        }

        .ent-marquee-content {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .ent-marquee-content span {
            display: flex;
            align-items: center;
            gap: 10px;

            margin-right: 60px;

            white-space: nowrap;

            color: #fff;

            font-size: 18px;
            font-weight: 600;

        }

        .ent-marquee-content i {

            width: 42px;
            height: 42px;

            background: #D43C3B;

            color: #fff;

            display: flex;
            justify-content: center;
            align-items: center;

            font-size: 16px;

            border-radius: 50%;

            flex-shrink: 0;

        }

        @keyframes marqueeLoop {

            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }

        }

        .ent-marquee-section:hover .ent-marquee-track {
            animation-play-state: paused;
        }


        /* Mobile */

        @media(max-width:768px) {

            .ent-marquee-section {
                height: 65px;
            }

            .ent-marquee-content span {

                font-size: 15px;

                margin-right: 40px;

            }

            .ent-marquee-content i {

                width: 34px;
                height: 34px;

                font-size: 14px;

            }
        }

/* about ent section satrt */

   .trust-section,
.ent-trust-section{
    padding:40px 20px;
    background:#fff;
}
.trust-tag{
    color:var(--combo);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}
.ent-trust-section h2{
    font-size:40px;
    font-weight:700;
    color:var(--primary);
    margin:15px 0;
    line-height:1.2;
}

.ent-trust-section p{
    color:#666;
    line-height:1.5;
}

.trust-btn{
    display:inline-block;
    margin-top:15px;
    background:var(--primary);
    color:#fff;
    padding:14px 28px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.trust-btn:hover{
    background:var(--combo);
    color:#fff;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.trust-item{
    display:flex;
    gap:18px;
    padding-bottom:18px;
    border-bottom:1px solid #eee;
}

.trust-item i{
    width:55px;
    height:55px;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.trust-item:nth-child(even) i{
    background:var(--combo);
}

.trust-item h5{
    color:var(--primary);
    font-weight:700;
    margin-bottom:6px;
}

.trust-item p{
    margin:0;
    font-size:14px;
    line-height:1.6;
}

.trust-bottom{
    margin-top:60px;
    padding:35px;
    background:#f8fbff;
    border-left:5px solid var(--combo);
}

.trust-bottom h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:10px;
}

.trust-bottom p{
    margin:0;
}

@media(max-width:991px){

.trust-grid{
grid-template-columns:1fr;
}

.ent-trust-section h2{
font-size:34px;
}

}

@media(max-width:767px){

.ent-trust-section{
padding:40px 10px;
}

.ent-trust-section h2{
font-size:28px;
}

.trust-bottom{
padding:25px;
margin-top:40px;
}

.trust-item{
gap:15px;
}

.trust-item i{
width:48px;
height:48px;
font-size:18px;
}

}

   /* counter section */

  .trevia-counter-section{
    padding:20px 20px;
    background: var(--primary);
    color:#fff;
    overflow:hidden;
}

.trevia-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){
    .trevia-counter-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .trevia-counter-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    .counter-content h2{
        font-size:32px;
    }
}


/* ent expertise section */


.ent-expertise-section{
    padding:60px 20px;
    background:#fff;
}

.expert-tag{
    color:var(--combo);
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.expert-title{
    font-size:40px;
    color:var(--primary);
    font-weight:700;
    line-height:1.2;
    margin:12px 0 18px;
}

.expert-text{
    color:#666;
    line-height:1.5;
    margin-bottom:35px;
}

.expert-btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:14px 34px;
    text-decoration:none;
    font-weight:600;
}

.expert-btn:hover{
    background:var(--combo);
    color:#fff;
}

.expert-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.expert-item{

    display:flex;

    gap:18px;

    padding:25px;

    border-left:4px solid var(--combo);

    background:#f8fbff;

    transition:.35s;

}

.expert-item:hover{

    transform:translateY(-6px);

    background:#eef5ff;

}

.expert-item span{

    min-width:55px;

    height:55px;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    font-weight:700;

}

.expert-item h5{

    color:var(--primary);

    font-weight:700;

    margin-bottom:8px;

}

.expert-item p{

    color:#666;

    margin:0;

    line-height:1.5;

}

@media(max-width:991px){

.ent-expertise-section{

padding:45px 15px;

}

.expert-title{

font-size:34px;

}

.expert-grid{

margin-top:35px;

}

}

@media(max-width:767px){

.ent-expertise-section{

padding:40px 10px;

}

.expert-title{

font-size:28px;

}

.expert-grid{

grid-template-columns:1fr;

gap:18px;

}

.expert-item{

padding:18px;

}

.expert-item span{

width:48px;

height:48px;

font-size:18px;

}

.expert-item h5{

font-size:18px;

}

.expert-item p{

font-size:14px;

}

}

/* faciloties section start */

.ent-treatment-section{
    background: var(--primary);
    padding:30px 20px;
}

.ent-treatment-heading{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.ent-treatment-heading span{
    color:var(--combo);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.ent-treatment-heading h2{
    margin:15px 0;
    color:var(--white);
    font-size:42px;
    font-weight:700;
    line-height:1.2;
}

.ent-treatment-heading p{
    color:#fff;
    line-height:1.8;
}

.ent-treatment-list{
    position:relative;
}

.ent-treatment-list::before{
    content:"";
    position:absolute;
    left:24px;
    top:0;
    bottom:0;
    width:2px;
    background: var(--white);
}

.treatment-item{
    display:flex;
    gap:20px;
    margin-bottom:28px;
    position:relative;
}

.treatment-item span{
    width:50px;
    height:50px;
    background:var(--white);
    color: var(--primary);
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-weight:700;
    flex-shrink:0;
    position:relative;
    z-index:2;
}

.treatment-item h5{
    margin-bottom:6px;
    color:var(--white);
    font-weight:700;
    font-size:20px;
}

.treatment-item small{
    color: var(--white);
    line-height:1.5;
    display:block;
    font-size:15px;
}

@media(max-width:991px){

.ent-treatment-section{
padding:50px 15px;
}

.ent-treatment-heading h2{
font-size:34px;
}

}

@media(max-width:767px){

.ent-treatment-section{
padding:40px 10px;
}

.ent-treatment-heading{
text-align:left;
}

.ent-treatment-heading h2{
font-size:28px;
}

.ent-treatment-heading p{
font-size:15px;
}

.ent-treatment-list{
margin-top:20px;
}

.treatment-item{
gap:15px;
margin-bottom:22px;
}

.treatment-item span{
width:42px;
height:42px;
font-size:14px;
}

.treatment-item h5{
font-size:17px;
}

.treatment-item small{
font-size:14px;
}

.ent-treatment-list::before{
left:20px;
}

}


    /* testimonial section */

.testimonial-section{
  background: #f4f6fb;
  overflow:hidden;
}
.section-top{
  margin-bottom:50px;
}

.testimonial-title{
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 1.2;
}
.testimonial-subtitle{
    color:#666;
    line-height:1.5;
    margin-bottom:35px; 
}

.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{
     color:var(--combo);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.ent-faq-left h2{
       font-size:40px;
    font-weight:700;
    color:var(--primary);
    margin:15px 0;
    line-height:1.2;
}
.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:#12354a;
    line-height:1.4;
}
.ent-faq-question i{
    color:#12354a;
    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;
    }
}

     /* cta section start */

.ent-cta-section{
    background:#fff;
}
.ent-cta-wrapper{
   background: linear-gradient(
    135deg,
    #1D5EAC 0%,
    #3A7ED3 100%
);
    padding:25px 35px;
    overflow:hidden;
    position:relative;
}
.ent-cta-tag{
    display:inline-block;
    color:#fff;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:10px;
}
.ent-cta-content h2{
    color:#fff;
    font-size:30px;
    font-weight:600;
    margin-bottom:10px;
}
.ent-cta-content p{
    color:rgba(255,255,255,.9);
    margin:0;
    max-width:650px;
    line-height:1.5;
}
.ent-cta-btn-wrap{
    text-align:right;
}

.ent-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color: var(--primary);
    text-decoration:none;
    padding:15px 32px;
    font-weight:700;
    transition:.4s;
    white-space:nowrap;
}

.ent-cta-btn:hover{
    background:#f5f5f5;
    color: var(--combo);
    transform:translateY(-3px);
}

@media(max-width:991px){
    .ent-cta-wrapper{
        text-align:center;
    }
    .ent-cta-content h2{
        font-size:28px;
    }
    .ent-cta-btn-wrap{
        text-align:center;
        margin-top:20px;
    }
}

@media(max-width:767px){
    .ent-cta-wrapper{
        padding:20px 15px;
    }
    .ent-cta-content h2{
        font-size:22px;
        line-height:1.4;
    }
    .ent-cta-content p{
        font-size:14px;
    }

    .ent-cta-btn{
        width:100%;
        padding:14px 20px;
    }
}

/* form map section start */

.ent-contact-section{
    background:#fff;
    overflow:hidden;
    padding: 40px 20px;
}

.ent-contact-info{
    padding:80px 10px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.ent-contact-tag{
   color:var(--combo);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.ent-contact-info h2{
      font-size:40px;
    font-weight:700;
    color:var(--primary);
    margin:15px 0;
    line-height:1.2;
}

.ent-contact-desc{
    font-size:18px;
    color: #6c7a89;
    line-height:1.5;
}

.ent-info-box{
    height:100%;
}

.ent-info-icon{
    width:50px;
    height:50px;
    background:#f8fbff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.ent-info-icon i{
    color: var(--primary);
    font-size:20px;
}

.ent-info-box h5{
    font-size:18px;
    font-weight:700;
    color: var(--primary);
}

.ent-info-box p{
    font-size:15px;
    color: #5f6e7b;
    line-height:1.5;
    margin:0;
}

.ent-contact-bottom{
    margin-top:50px;
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.ent-contact-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.contact-icon{
    width:50px;
    height:50px;
    background:#fff;
    border:2px solid var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    color: var(--primary);
    font-size:24px;
}

.ent-contact-item span{
    display:block;
    color: #6c7a89;
    font-size:14px;
}

.ent-contact-item h4{
    color: var(--primary);
    font-weight:700;
    margin:0;
}

.ent-contact-form-wrapper{
    background: #f8fbff;
    padding:40px 40px;
    height:100%;
}

.ent-contact-form-wrapper h3{
    font-size:36px;
    font-weight:700;
    color:  var(--primary);
    margin-bottom:10px;
}

.ent-contact-form-wrapper p{
    color: #6c7a89;
    margin-bottom:20px;
}

.ent-contact-form-wrapper label{
    display:block;
    margin-bottom:8px;
    color: var(--primary);
    font-weight:600;
}

.ent-contact-form-wrapper .form-control,
.ent-contact-form-wrapper .form-select{
    height:50px;
    border-radius:0;
    border:1px solid #ddd;
    box-shadow:none;
}

.ent-contact-form-wrapper textarea.form-control{
    height:auto;
    resize:none;
}

.ent-submit-btn{
    width:100%;
    border:none;
    background: var(--primary);
    color:#fff;
    height:50px;
    font-weight:700;
    transition:.4s;
}

.ent-submit-btn:hover{
    background : var(--combo);
}
@media(max-width:1199px){
    .ent-contact-info h2{
        font-size:40px;
    }
    .ent-contact-form-wrapper h3{
        font-size:36px;
    }
}
@media(max-width:991px){
    .ent-contact-info,
    .ent-contact-form-wrapper{
        padding:40px 20px;
    }
    .ent-contact-info h2{
        font-size:40px;
    }
    .ent-contact-form-wrapper h3{
        font-size:34px;
    }
}
@media(max-width:767px){
    .ent-contact-info,
    .ent-contact-form-wrapper{
        padding:40px 10px;
    }

    .ent-contact-info h2{
        font-size:34px;
    }
    .ent-contact-form-wrapper h3{
        font-size:30px;
    }
    .ent-contact-desc{
        font-size:15px;
    }
    .ent-contact-bottom{
        gap:20px;
    }

    .ent-contact-item{
        width:100%;
    }
}

@media(max-width:575px){
    .ent-contact-info h2{
        font-size:28px;
    }
    .ent-contact-form-wrapper h3{
        font-size:26px;
    }

    .ent-contact-form-wrapper .form-control,
    .ent-contact-form-wrapper .form-select{
        height:50px;
    }
    .ent-submit-btn{
        height:55px;
        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;
}























   






