/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #306166;
	--secondary: #de7877;
	--gold: #cfb888;
	--background: #fafbf6;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Merriweather', serif;
}
body {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
	background: var(--background);
	overflow-x: hidden;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.site-header .main-header {
    position: absolute;
    left: 0;
    z-index: 10;
    background: #fafbf6d6;
    width: 95%;
    margin: 15px auto;
    right: 0;
    border-radius: 50px;
    padding: 9px 10px;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
	margin: 0;
    background: var(--background);
    padding: 12px 0; 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.4s ease;
	width: 100%;
	border-radius: 0;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.logo-box img {
    width: 120px;
    height: auto;
}
.wpcf7-submit {
    display: inline-flex;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: none;
    padding: 7px 30px;
}
.site-header .nav > li > a {
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  display: inline-block;
  color: #000 !important;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
    padding: 5px 15px;
	color: var(--secondary) !important
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
.main-header .social-icons a {
    height: 35px;
    width: 35px;
    text-decoration: none;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.main-header .social-icons a i{
	color: var(--primary);
}
.main-header .social-icons{
	display: flex;
	gap: 10px;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#mobileMenuBtn:hover{
	background: #fff;
}
#mobileMenuBtn i{
	color: var(--primary) !important;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
 
#mobileMenu .menu-item-has-children {
    position: relative;
}
#mobileMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
	color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children.active > .sub-menu {
    display: block;
}
#mobileMenu .sub-menu li a {
    padding: 0 10px;
    display: block;
    font-size: 15px;
    color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children > a {
    position: relative;
    padding-right: 40px;
}
#mobileMenu .dropdown-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mobileMenu .menu-item-has-children.active .dropdown-arrow i {
    transform: rotate(180deg);
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
section.breadcrumb-section {
    background: url(https://drdeblinachowdhury.in/wp-content/uploads/2026/05/breadcrumb-doc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 60vh;
    position: relative;
    overflow: hidden;
}
section.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #306166b0; /* overlay color */
    z-index: 1;
}
section.breadcrumb-section .container,
section.breadcrumb-section .breadcrumb-content {
    position: relative;
    z-index: 2;
}
.breadcrumb-item.active {
    color: var(--secondary) !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: var(--secondary) !important;
}
.breadcrumb-title h2 {
    color: var(--secondary) !important;
}
li.breadcrumb-item a {
    color: var(--secondary) !important;
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--primary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.info-box a {
    text-decoration: none;
    color: #fff;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--primary);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
    background: var(--primary);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
    z-index: 1;
    padding-top: 30px;
    overflow: hidden;
    /* margin: 15px; */
    /* border-radius: 10px; */
}

/* Overlay */
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(255 255 255 / 68%);
    z-index: -1;
}

/* Background Image */
footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://drdeblinachowdhury.in/wp-content/uploads/2026/06/footder-bg.png") center center / cover no-repeat;
    opacity: 0.15;
    z-index: -2;
}
footer > * {
    position: relative;
    z-index: 2;
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block;
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    gap: 20px;
    align-items: center;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu,.footer-details {
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a{
	color: var(--dark) !important;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--text) !important;
	  transition: transform 0.3s ease;
	line-height: 40px;
	margin-left: 35px;
}
footer .menu li::after {
  content: "\f101"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background-color: var(--primary);
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #000;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
/* Btn Primary */
.btn-primary{
    display:inline-flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    height:45px;
    line-height:56px;
    background:var(--secondary);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    padding-left:30px;
    padding-right:10px;
    gap:10px;
    transition:all 0.4s ease;
}
.btn-primary:hover{
    padding-left:10px;
    padding-right:38px;
    gap:0;
}
.btn-primary .btn-text{
    font-size:16px;
    font-weight:500;
    transition:0.4s ease;
    white-space:nowrap;
}
.btn-primary:hover .btn-text{
    transform:translateX(55px);
    color:#fff;
}
.btn-primary .arrow-left,
.btn-primary .arrow-right{
    width: 35px;
    height: 35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    color:var(--secondary);
    transition:0.4s ease;
    flex-shrink:0;
}
.btn-primary .arrow-left i,
.btn-primary .arrow-right i{
    transform:rotate(-30deg);
}
.btn-primary .arrow-left{
    position:absolute;
    left:0;
    transform:scale(0);
}
.btn-primary:hover .arrow-left{
    left:10px;
    transform:scale(1);
}
.btn-primary:hover .arrow-right{
    transform:scale(0);
}
/* Hero Section */
.hero-section {
    min-height: 130vh;
    position: relative;
    background: linear-gradient(to right, var(--primary), rgb(0 87 88 / 0%)), url(https://drdeblinachowdhury.in/wp-content/uploads/2026/05/hero-image.jpg) center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    color: #fff;
}
    .hero-content{
      flex:1;
      display:flex;
      align-items:center;
    }
.hero-text {
    max-width: 700px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}
    .hero-title{
      font-size: 55px;
      font-weight: 500;
      line-height:1.15;
      margin-bottom:25px;
    }
.hero-title span{
	color: var(--secondary);
}
    .hero-desc{
      color:#e5e5e5;
      max-width:600px;
      margin-bottom:25px;
      font-size:16px;
    }
    .bottom-bar{
      border-top:1px solid rgba(255,255,255,0.15);
      padding: 40px 0;
      backdrop-filter:blur(6px);
    }
    .info-box{
      text-align:center;
      color:#fff;
    }
    .info-box h6{
      font-size:18px;
      font-weight:600;
      margin-bottom:6px;
    }
    .info-box p{
      font-size:16px;
      opacity:0.85;
      margin:0;
    }
    @keyframes fadeUp{
      from{
        opacity:0;
        transform:translateY(60px);
      }
      to{
        opacity:1;
        transform:translateY(0);
      }
    }
    @keyframes zoomIn{
      from{
        transform:scale(1.1);
      }
      to{
        transform:scale(1);
      }
    }
    .hero-section{
      animation:zoomIn 1.5s ease;
    }
/* About Section */ 
section{
	padding: 80px 0 0;
}
.about-box {
    background: var(--primary);
    height: 100%;
    border-radius: 25px;
    padding: 20px 20px 40px 20px;
    display: flex;
    color: #fff;
    align-items: flex-end;
}
.about-box h2 {
    font-size: 25px;
    font-weight: 500;
    line-height: 40px;
}
.about-img-box {
    height: 300px;
}
.about-img-box img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
h3.heading {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}
.list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    line-height: 40px;
}
.list li::before {
  content: "\f101"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  position: absolute;
  left: 0;
  color: var(--primary);
}
.image-box{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    cursor:pointer;
}
.image-box img{
    width:100%;
    display:block;
    transition:0.4s;
}
.about-img {
    position: relative;
}
.image-box::before{
    content:'';
    position:absolute;
    width:200%;
    height:0%;
    left:50%;
    top:50%;
    background-color:#cfb8883d;
    transform:translate(-50%, -50%) rotate(-45deg);
    z-index:1;
    transition:height 0.6s ease;
}
.image-box:hover::before{
    height:250%;
}
.image-box:hover img{
    transform:scale(1.05);
}

/* Service Section */
.service-box {
    position: relative;
    background: #3061661f;
    border-radius: 24px;
    padding: 12px;
    overflow: hidden;
    transition: 0.4s ease;
    height: 570px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
    .service-box:hover{
      transform:translateY(-10px);
      box-shadow:0 20px 50px rgba(0,0,0,0.08);
    }
    .service-content{
      padding:35px 25px 20px;
      text-align:center;
      position:relative;
      z-index:2;
    }
    .service-title{
      font-size:28px;
      margin-bottom:15px;
      transition:0.3s;
    }
    .service-title a{
      text-decoration:none;
      color:#111;
    }
    .service-box:hover .service-title a{
      color:#005c55;
    }
    .service-text{
      color:#6f6f6f;
      line-height:1.9;
      margin-bottom:28px;
      font-size:15px;
    }
    .service-image{
      position:relative;
      overflow:hidden;
      border-radius:22px;
      height:280px;
    }
    .service-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:0.7s ease;
      position:absolute;
      top:0;
      left:0;
    }
    .service-image img:first-child{
      opacity:0;
      transform:translateX(50%) scale(1.5);
      filter:blur(10px);
    }
    .service-box:hover .service-image img:first-child{
      opacity:1;
      transform:translateX(0) scale(1);
      filter:blur(0);
    }
    .service-box:hover .service-image img:last-child{
      opacity:0;
      transform:translateX(-50%) scale(2);
      filter:blur(10px);
    }
   .swiper-pagination-bullet{
      width:12px;
      height:12px;
      background:#005c55;
      opacity:0.4;
    }
    .swiper-pagination-bullet-active{
      opacity:1;
    }
    .swiper-button-next,
    .swiper-button-prev{
      width:55px;
      height:55px;
      background:#fff;
      border-radius:50%;
      box-shadow:0 10px 25px rgba(0,0,0,0.08);
      color:#005c55;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after{
      font-size:18px;
      font-weight:700;
    }
/* Why Choose Us Section */
.image-wrapper{
      position:relative;
    }
section.why-choose-section {
    background: #30616624;
    margin-top: 80px;
    padding: 80px 0;
}
    .main-image{
      width:100%;
      border-radius:30px;
      object-fit:cover;
      height:650px;
      box-shadow:0 20px 50px rgba(0,0,0,0.08);
    }
    .experience-box{
      position:absolute;
      left:-20px;
      bottom:50px;
      background: var(--primary);
      color:#fff;
      padding:25px 30px;
      border-radius:20px;
      width:220px;
      box-shadow:0 15px 35px rgba(0,0,0,0.15);
		z-index: 3;
    }
    .experience-box h2{
      font-size:40px;
      margin-bottom:5px;
      font-weight:700;
    }
    .experience-box p{
      margin:0;
      opacity:0.9;
      line-height:1.6;
    }
    /* FEATURES */
    .feature-card{
      background:#fff;
      border-radius:22px;
      padding:30px 28px;
      transition:0.4s ease;
      height:100%;
      position:relative;
      overflow:hidden;
      border:1px solid var(--primary);
    }
    .feature-card::before{
      content:'';
      position:absolute;
      left:0;
      top:0;
      width:0%;
      height:4px;
      background:var(--primary);
      transition:0.4s;
    }
    .feature-card:hover::before{
      width:100%;
    }
    .feature-card:hover{
      transform:translateY(-10px);
      box-shadow:0 20px 40px rgba(0,0,0,0.08);
    }
    .feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 20px;
    background: #e7f2ef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: 0.4s;
}
    .feature-card:hover .feature-icon{
      background:var(--primary);
      transform:rotateY(180deg);
    }
    .feature-icon i{
      font-size: 25px;
      color:var(--primary);
      transition:0.4s;
    }
    .feature-card:hover .feature-icon i{
      color:#fff;
    }
h4.feature-title {
    font-size: 18px;
    color: var(--primary);
}
/* Testimonial section */
  .testimonial-section .quote-icon{
      font-size:70px;
      color:#6e9187;
      margin-bottom:20px;
    }
   .testimonial-section .testimonial-text{
      font-size:18px;
      line-height:2;
      color:#777;
      margin-bottom:40px;
    }
    /* CLIENT */
   .testimonial-section .bottom-box{
      border-top:1px solid #ddd;
      padding-top:22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
      gap:20px;
    }
   .testimonial-section .client-info{
      display:flex;
      align-items:center;
      gap:15px;
    }
   .testimonial-section .client-image{
      width:60px;
      height:60px;
      border-radius:50%;
      overflow:hidden;
    }
   .testimonial-section .client-image img{
      width:100%;
      height:100%;
      object-fit:cover;
    }
   .testimonial-section .client-name{
      font-size:18px;
      color:#111;
      margin-bottom:3px;
      font-weight:500;
    }
   .testimonial-section .client-role{
      font-size:14px;
      color:#777;
    }
    /* NAVIGATION */
   .testimonial-section .slider-nav{
      display:flex;
      gap:10px;
    }
   .testimonial-section .swiper-button-next,
   .testimonial-section .swiper-button-prev{
      position:relative;
      width:42px;
      height:42px;
      border-radius:10px;
      border:1px solid #ddd;
      background:#fff;
      color:#6e9187;
      transition:0.4s;
      top:auto;
      left:auto;
      right:auto;
      margin:0;
    }
   .testimonial-section .swiper-button-next::after,
   .testimonial-section .swiper-button-prev::after{
      font-size:14px;
      font-weight:bold;
    }
   .testimonial-section .swiper-button-next:hover,
    .testimonial-section .swiper-button-prev:hover{
      background:#6e9187;
      border-color:#6e9187;
      color:#fff;
    }
    /* RIGHT IMAGE */
   .testimonial-section .image-wrapper{
      position:relative;
    }
   .testimonial-section .main-image{
      width:100%;
      height:620px;
      object-fit:cover;
      border-radius:30px;
      box-shadow:0 20px 50px rgba(0,0,0,0.08);
    }
    /* SIDE RATING */
   .testimonial-section .side-rating{
      position:absolute;
      right:-80px;
      top:50%;
      transform:translateY(-50%);
      writing-mode:vertical-rl;
      display:flex;
      align-items:center;
      gap:25px;
    }
   .testimonial-section .side-rating p{
      font-size:14px;
      color:#777;
      margin:0;
      letter-spacing:1px;
    }
   .testimonial-section .rating-number{
      font-size:58px;
      color:#6e9187;
      line-height:1;
      font-weight:300;
    }
   .testimonial-section .stars{
      color:#6e9187;
      font-size:15px;
      letter-spacing:4px;
    }
.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 500px;
}
/* Conatct Section */
section.gallery-section {
    background: #30616612;
    padding: 80px 0;
    margin-top: 80px;
}
.contact-box {
    background: #ffffff;
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}
/* subtle animation background */
.contact-box::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:#e8f4f1;
  top:-100px;
  right:-100px;
  border-radius:50%;
  z-index:0;
}
.contact-title{
  font-size:42px;
  font-weight:700;
  color:#111;
  margin-bottom:15px;
  position:relative;
  z-index:1;
}
/* description */
.contact-desc{
  max-width:600px;
  margin:0 auto 30px;
  color:#666;
  font-size:16px;
  line-height:1.8;
  position:relative;
  z-index:1;
}
.gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.gallery-section .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}
.gallery-section .gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-section .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}
.gallery-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-section .sub-heading{
	justify-content: flex-start;
}
.gallery-section .heading {
    text-align: left;
}
.gallery-section .gallery-overlay i {
    font-size: 30px;
    color: #fff;
}
.gallery-section .nav-width {
    display: flex;
    gap: 25px;
    width: 50%;
    background: #30616642;
    border-radius: 47px;
    padding: 16px 10px;
    align-items: center;
    justify-content: center;
}
.gallery-section .custom-nav {
    display: flex;
    gap: 10px;
    z-index: 10;
    justify-content: flex-end;
}
.gallery-section .nav-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    border:1px solid #eee;
    transition:0.3s;
	position: relative;
	z-index: 1;
}
 .gallery-section .nav-btn i{
    font-size:14px;
    color:#000 !important;
}
.gallery-section .nav-btn:hover{
    background: var(--secondary) !important;
    transform:translateY(-3px);
}
.gallery-section .nav-btn:hover i{
    color:#fff !important;
}
.gallery-section .custom-nav .swiper-button-next:after,
.gallery-section .custom-nav .swiper-button-prev:after {
    font-size: 16px;
	display: none;
} 
/* Blog Card */
.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #ddd;
    transition:0.4s;
    position:relative;
    height:100%;
}
.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}
.blog-image{
    position:relative;
    overflow:hidden;
}
.blog-image img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:0.5s;
    display:block;
}
.blog-image .service-image {
    height: 320px !important;
	width:100%;
    object-fit:cover;
    transition:0.5s;
    display:block;
}
.blog-card:hover .blog-image img{
    transform:scale(1.05);
}
.date-box{
    position:absolute;
    top:20px;
    right:20px;
    background:#fff;
    width:85px;
    border-radius:18px;
    text-align:center;
    padding:12px 10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    z-index:2;
}
.date-box span{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#666;
    margin-bottom:10px;
    text-transform:uppercase;
}
.date-circle{
    width:55px;
    height:55px;
    border:1px solid #ddd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:24px;
    font-weight:600;
    color:#333;
}
.blog-content{
    padding:20px;
}
.blog-category{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    color:#666;
    position:relative;
    padding-bottom:14px;
    margin-bottom:20px;
}
.blog-category::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:160px;
    height:1px;
    background:#ddd;
}
.blog-title{
    font-size:22px;
    line-height:1.4;
    font-weight:600;
    margin-bottom:25px;
}
.blog-title a{
    color:#222;
    text-decoration:none;
    transition:0.3s;
}
.blog-title a:hover{
    color:#000;
}
.blog-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}
.read-more{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:600;
    color:#222;
    text-decoration:none;
    transition:0.3s;
}
.read-more:hover{
    gap:14px;
    color:#000;
}
.blog-meta{
    display:flex;
    align-items:center;
    gap:18px;
    font-size:15px;
    color:#777;
}
.blog-meta i{
    margin-right:6px;
}
.blog-image .service-box{
	height: 320px;
}
/* ================================
  Contact Page Css
================================ */
   .contact-page-box {
    background: #ffffff82;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
}    
    .form-control {
        background: #f9f9f9;
        border: 1px solid #ddd;
        color: #000;
    }
.info-card p {
    margin: 0;
    padding: 0;
}
    .form-control:focus {
        border-color: var(--primary);
        box-shadow: none;
    } 
    .info-card {
        padding: 35px 25px;
        background: #fff;
        border-radius: 10px;
        border: 1px solid #ececec;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        transition: 0.3s;
		display: flex;
		gap: 30px;
    }
	.info-card a{ 
		color: #000 !important;
		text-decoration: none;		
	}
    .info-card:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
    }
   .info-card i{
        font-size: 28px;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .info-card h6 {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 600;
    }
    .map-section iframe {
        width: 100%;
        height: 450px;
        border: 0;
        border-radius: 12px;
        margin-top: 40px;
    }
.appointment-modal .modal-content{
    border: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.modal-left{
    background: var(--primary);
    color: #fff;
    padding: 50px 35px;
    height: 100%;
}
.modal-left .sub-title{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    display: inline-block;
    margin-bottom: 15px;
}
.modal-left h3{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}
.modal-left p{
    color: #cbd5e1;
    margin-bottom: 25px;
}
.modal-form{
    padding: 45px 35px;
    background: #fff;
}
.modal-form h4{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}
.custom-close{
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background-color: #fff !important;
    border-radius: 50%;
    opacity: 1;
    padding: 10px;
}
.modal-body .list li::before {
    color: var(--secondary);
}
section.section-last {
    padding: 80px 0;
    text-align: center;
}
.section-last-inner {
    background: var(--primary);
    padding: 50px 30px;
    border-radius: 20px;
    color: #fff;
}
.btn-readmore{
    background:none;
    border:none;
    padding:0;
    margin-top:10px;
    color:var(--primary);
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}
.btn-readmore:hover{
    text-decoration:underline;
}
.modal-content{
    border-radius:15px;
}
.modal-header{
    border-bottom:1px solid #eee;
}
.modal-title{
    font-weight:700;
}
.modal-body{
    padding:25px;
}
.modal-body p{
    line-height:1.8;
    font-size:16px;
}
.btn-box {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
/* About Page */
.mission {
    background: #fff;
    box-shadow: 0 0 10px 0 #80808069;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
}
.midium-screen{
	display: none;
}
@media(max-width: 1200px){
	
}
@media(max-width: 1024px){
	.hero-title {
		font-size: 40px;
		margin-bottom: 16px;
	}
}
@media(max-width: 991px){
	
}
@media(max-width: 767px){
	.about-img-box {
		height: auto;
	}
	h3.heading{
		font-size: 32px;
	}
	section {
		padding: 45px 0 0;
	}
	.service-box{
		height: auto;
	}
	.service-text{
		margin-bottom: 10px;
	}
	section.why-choose-section {
		background: #30616624;
		margin-top: 45px;
		padding: 45px 0;
	}
	section.gallery-section {
		background: #30616612;
		padding: 45px 0;
		margin-top: 45px;
	}
	.gallery-section .custom-nav {
		justify-content: flex-start;
		margin-bottom: 25px;
	}
	.gallery-section .nav-width{
		width: 30%;
	}
	.contact-box{
		margin-bottom: 45px;
	}
	section.section-last {
		padding: 45px 0;
		text-align: center;
	}
}
@media(max-width: 667px){
}
@media(max-width: 568px){
	.bottom-bar{
		display: none;
	}
	.hero-section {
		min-height: 100vh;
	}
	.hero-text{
		top: 60%;
	}
	.midium-screen{
		display: block;
	}
	section.midium-screen .bottom-bar {
		display: block;
		padding: 0;
		color: #000;
	}
	.info-box {
		text-align: center;
		color: var(--primary);
		background: #de787726;
		margin-bottom: 10px;
		padding: 20px 10px;
		border-radius: 10px;
	}
	.info-box a {
		text-decoration: none;
		color: var(--primary);
	}
	.testimonial-content{
		height: auto;
	} 
	.logo-box img {
		width: 90px;
		height: auto;
	}
	.info-card {
		gap: 15px;
		flex-direction: column;
	}
	.contact-page-box{
		padding: 40px 20px;
	}
	
}
@media(max-width: 479px){
	.hero-title {
		font-size: 32px;
		margin-bottom: 16px;
	}
	.about-box{
		padding: 15px;
	}
	.about-box h2{
		font-size: 22px;
	}
	.service-title{
		font-size: 22px;
	}
	.btn-box {
		display: flex;
		gap: 10px;
		flex-direction: column;
		align-items: center;
	}
	.section-last-inner {
		padding: 35px 10px;
	}
}
@media(max-width: 414px){
	.gallery-section .nav-width {
		width: 45%;
	}
	.experience-box h2{
		font-size: 30px;
	}
	h3.heading {
		font-size: 28px;
	}
}
@media(max-width: 375px){
	.testimonial-section .client-image {
		width: 45px;
		height: 45px;
	}
	.testimonial-section .client-name{
		font-size: 16px;
	}
	.testimonial-section .quote-icon {
		font-size: 50px;
		color: #6e9187;
		margin-bottom: 0px; 
	}
	.testimonial-section .testimonial-text{
		margin-bottom: 20px;
	}
}
@media(max-width: 360px){
	
}
@media(max-width: 325px){
	
}