*{
	margin: 0;
	padding: 0;

}
:root{
	--poppins:'Poppins', sans-serif;
	--Baloo: "Baloo 2", cursive;
	--color1:#206590;
	--color2:#fbb927;
  --color3:#4c9c8c;
}
body{
	box-sizing: border-box;
	line-height: 1;
}
h1,h2,h3,h4,h5,h6{
	font-family: var(--Baloo);
	margin: 0;
	padding: 0;
	line-height: 1;
}
p, ul{
	font-family: var(--poppins);
	margin: 0;
	padding: 0;
	line-height: 1;
}
a{
	text-decoration: none;
}
.container{
	width: 1300px!important;
}
.topbar{
	padding: 10px 0;
}
.toprgt{
	text-align: right;
	font-family: var(--poppins);
}
.toprgt ul li{
	display: inline-block;
	margin: 0 10px;
}
.toprgt ul li p{
	color: var(--color1);
}
.toprgt ul li a{
	color: var(--color1);
	transition: 0.5s ease;
}
.toprgt ul li a:hover{
	color: var(--color2);
}
.toprgt ul li p i.bxl-whatsapp,
.toprgt ul li p i.bxl-instagram {
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 2px;
}
.toprgt ul li p i{
	transition: 0.3s ease;
}
.toprgt ul li p i:hover{
	transform: scale(1.1);
}
/* WhatsApp */
.toprgt ul li p i.bxl-whatsapp {
  background: #25D366;
}

/* Instagram */
.toprgt ul li p i.bxl-instagram {
  background: linear-gradient(45deg, #E1306C, #C13584, #833AB4);
}

/*Menu */
.logo {

	position: relative;
	padding-left: 20px;
	padding-bottom: 20px;
}
.logo:after{
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	width: 112%;
	height: 120%;
	z-index: 1;
	background: #fff;
	transform: skew(-10deg) rotate(3deg);
}
.logo h1{
	font-size: 2.1rem;
	color: var(--color1);
	font-weight: 700;
	position: relative;
	z-index: 99;
	padding-bottom: 5px;
}

.logo h2{
	position: relative;
	z-index: 99;
	font-size: 1.22rem;
	color: var(--color2);
	font-weight: 500;
}
/* Show dropdown on hover */
body {
  font-family: 'Poppins', sans-serif;
}

/* Navbar BG */
.custom-navbar {
  background: #4c9c8c;
  padding: 8px 0;

}

/* LEFT LOGO ANGLE */
.logo-box {
  background: #f2f2f2;
  padding: 15px 40px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.logo-box h3 {
  margin: 0;
  font-weight: 700;
  color: #2c4b5a;
}

.logo-box p {
  margin: 0;
  font-size: 13px;
  color: #e39c2a;
}

/* MENU */
.navbar-nav .nav-link {
  color: #fff;
  margin: 0 5px;
    padding: 15px 10px!important;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 10px;
}

/* ACTIVE */
.navbar-nav .nav-link.active{
  background: #fff;
  color: #4c9c8c;
  box-shadow: 0 5px 15px #00000025;
}
 .navbar-nav .nav-link:hover {
  background: #ffffff25;
  color: #fff;
}
/* DROPDOWN HOVER DESKTOP */
@media(min-width:992px){
  .dropdown:hover .dropdown-menu {
    display: block;
    
  }
}

/* BUTTON */
.appoint-btn {
  background: #f2b233;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE FIX */
.navbar-toggler {
  border: none;
}
.menubar ul ul{

}
.menubar ul ul li a{
	padding: 0;
}
.menubar ul ul li a:hover{
	color: var(--color2);
}
.menubar ul ul li a:hover{
	background: none;
}
.menubar ul ul li{
	list-style: disc;
	margin-left: 35px;
	line-height: 2.0;
}
.menubar ul ul li::marker {
  color: #4c9c8c;
  font-size: 20px;
}
/* about css */
.aboutsec{
	padding: 4rem 0;
}
.doctor-card {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.doctor-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* Common Tag Style */
.tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}

/* Top Left */
.top-tag {
  top: 15px;
  left: 15px;
}

/* Bottom Left (as you asked) */
.bottom-tag {
  bottom: 15px;
  left: 15px;
}

/* Icons */
.tag i {
  color: #6c8ea4;
}

/* Hover Animation */
.doctor-card:hover .tag {
  transform: translateY(-5px) scale(1.05);
}

/* Optional subtle floating animation */
.tag {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0px); }
}
/* Counter */
.counter-section {
  padding: 0;
  padding-top: 40px;
}

.counter-card {
  background: #f4f6f8;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
  position: relative;
  transition: 0.3s ease;
}

/* Bottom color borders */
.counter-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 0 0 16px 16px;
}

.counter-card.blue::after {
  background: #3b5d73;
}

.counter-card.green::after {
  background: #4caf84;
}

.counter-card.yellow::after {
  background: #f4b400;
}

/* Icon box */
.icon-box {
  width: 48px;
  height: 48px;
  background: #e3e8ed;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-box i {
  font-size: 30px;
  color: #5f7f92;
}

/* Text */
.counter-card h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.counter-card p {
  margin: 5px 0 0;
  color: #6c757d;
  font-size: 14px;
}

/* Hover effect */
.counter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.counter-card.green .icon-box {
  background: #dff3ec;
  color: #4caf84;
}

.counter-card.yellow .icon-box {
  background: #fff3d6;
  color: #f4b400;
}
.spk-doc-wrap {
  padding: 0 0 0 50px;
}

.spk-container {
  max-width: 900px;
  margin: auto;
}

.spk-doc-title {
  font-size: 50px;
  font-weight: 700;
  color: var(--color1);
}

.spk-doc-subtitle {
  color: var(--color2);
  font-size: 26px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 5px;
  letter-spacing: 3px;
}

.spk-doc-degree {
  color: var(--color2);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.spk-doc-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Connect */
.spk-connect {
  margin-top: 25px;
}

.spk-connect-text {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.spk-social-icons i {
  font-size: 20px;
  margin-right: 10px;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
}

.spk-social-icons .bxl-whatsapp {
  background: #25D366;
}

.spk-social-icons .bxl-instagram {
  background: #E1306C;
}

/* Email Box */
.spk-email-box {
  margin-top: 25px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  border:1px solid #cccccc70;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  transition: 0.3s;
}
.spk-email-box:hover{
  border:1px solid #cccccc;
}
.spk-email-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.spk-email-left i {
  font-size: 24px;
  background: #dce6e8;
  padding: 12px;
  border-radius: 50%;
}

.spk-email-id {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
}

.spk-email-label {
  font-size: 12px;
  color: #777;
}

/* Buttons */
.spk-btn-group {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.spk-btn-group i{
  font-size: 20px;
  transform: translateY(3px);
  margin-left: 5px;
}
.spk-btn-primary {
  background: linear-gradient(to right, #2a536b, #3c8679);
  color: #fff;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: var(--poppins);
}

.spk-btn-primary:hover {
  background: linear-gradient(to right, #3c8679, #2a536b);
  transform: translateY(-5px);
}

.spk-btn-outline {
  font-family: var(--poppins);
  border: 1px solid #2f6f5f;
  color: #2f6f5f;
  font-weight: 600;
  padding: 18px 30px;
  border-radius: 8px;
  line-height: 1.2;
  background: transparent;
  transition: 0.3s;
}

.spk-btn-outline:hover {
  background: #3c8679;
  color: #fff;
   transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
  .spk-doc-title {
    font-size: 26px;
  }

  .spk-email-box {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .spk-btn-group {
    flex-direction: column;
  }
}
.servicesec{
  background: url('../images/servicebg.jpg') center;
}
.cx-adv-section {
  position: relative;
  width: 100%;
  padding: 80px 0 0 0;
  background: url('your-image.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cx-adv-overlay {
  padding: 0 20px;
  width: 100%;
}

.cx-adv-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.cx-adv-title span {
  color: #f4b400; /* yellow highlight */
}

.cx-adv-subtitle {
  font-size: 18px;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}


/* Wrapper */
.cx-slider-wrapper {
  position: relative;
  padding: 30px 0;
  padding-bottom: 70px;
}

/* Card */
.cx-card {
  background: #f5f5f5;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
}

/* Image */
.cx-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.cx-content {
  padding: 20px;
}

.cx-content h3 {
  font-size: 20px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 10px;
}

.cx-content p {
  font-size: 14px;
  color: #666;
  margin: 10px 0;
  line-height: 1.6;
  padding-bottom: 40px;
  font-family: var(--poppins);
}

/* Link */
.cx-content a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #1c3d5a;
  font-weight: 500;
}

/* 🔥 Hover Bottom Border Effect */
.cx-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0%;
  background: #f4b400;
  transition: 0.4s;
}

.cx-card:hover::after {
  width: 100%;
}

/* Hover Lift */
.cx-card:hover {
  transform: translateY(-10px);
}

/* 🔥 Center Active Card Highlight */
.owl-item.center .cx-card {
  border: 2px solid #f4b400;
  transform: scale(1.03);
}

/* Arrows */
.cx-service-slider .owl-nav button {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.2) !important;
  backdrop-filter: blur(6px);
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.cx-service-slider .owl-prev { left: -50px; }
.cx-service-slider .owl-next { right: -50px; }

.cx-service-slider .owl-nav i {
  font-size: 22px;
  color: #fff;
}

/* Dots */
.cx-service-slider .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.cx-service-slider .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
}

.cx-service-slider .owl-dot.active span {
  background: #f4b400;
}
.hospitalsec{
  padding:  4rem 0;
}

.heading{
  text-align: center;
}
.heading h1{
  font-weight: 600;
  font-size: 3rem;
  padding-bottom: 15px;
}
.heading h1 span{
    color: var(--color1);
}
.heading p{
  color: #666666;
}


/* Card */
.hospital-card {
  margin-top: 35px;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Image */
.hospital-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.hospital-content {
  padding: 22px;
}

/* Title */
.hospital-content h2 {
  font-size: 22px;
  color: #2c4a5a;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Info Row */
.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

/* Icons */
.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

/* Icon Colors */
.icon.phone {
  background: #fff4dc;
  color: #d9a441;
}

.icon.location {
  background: #e6f4ef;
  color: #3c9d85;
}

/* Text */
.label {
  font-size: 13px;
  color: #8a9aa5;
  margin: 0;
  margin-bottom: 5px;
}

.value {
  font-size: 14px;
  font-weight: 600;
  color: #2c4a5a;
  margin: 2px 0 0;
}

/* Button */
.map-btn {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3c9d85, #56b49b);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(60, 157, 133, 0.3);
}


/* Section */
.doctor-cta {
  position: relative;
  padding: 100px 20px;
  background: url('../images/callactionbg.jpg') center/cover no-repeat;
  border-radius: 0;
  overflow: hidden;
}

/* Dark overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* Content */
.cta-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: auto;
}

.cta-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Common Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

/* Call Button */
.cta-btn.call {
  background: #fff;
  color: #333;
}

.cta-btn.call:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

/* Book Button */
.cta-btn.book {
  background: linear-gradient(135deg, #3c9d85, #56b49b);
  color: #fff;
}

.cta-btn.book:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(60, 157, 133, 0.4);
}
.cta-content {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.whyussec{
  padding: 4rem 0;
}

.doc-slider-wrapper {
  position: relative;
  max-width: 100%;
  margin: auto;
  background: #f5f5f5;
  border-radius: 17px;
  padding: 0;
  overflow: hidden;
  margin-top: 4rem;
  padding: 5px;
  box-shadow: 0 0 15px #00000045;
}

/* Track */
.doc-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.doc-slider-track::-webkit-scrollbar {
  display: none;
}

/* Slide */
.doc-slide {
  min-width: 300px;
  flex: 0 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.doc-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
}

/* Buttons */
.doc-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.2);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
}

.doc-nav-btn:hover {
  background: rgba(0,0,0,0.5);
}

/* Position */
.doc-prev {
  left: 10px;
}

.doc-next {
  right: 10px;
}

/* Section */
.qual-section {
  padding: 20px;
}

.qual-section h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c4a5a;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

/* List */
.qual-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Item */
.qual-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 0 5px #00000025;
  transition: 0.3s ease;
  border: 1px solid transparent;
  position: relative;
}

/* Hover = same as first box */
.qual-item:hover {
  background: linear-gradient(90deg, #ffffff, #f3f7f6);
  border: 1px solid #3c9d85;
  transform: translateY(-2px);
}

/* Active (first one) */
.qual-item.active {
  background: linear-gradient(90deg, #ffffff, #f3f7f6);
  border: 1px solid #3c9d85;
}

/* Icon */
.qual-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #2c4a5a;
}

/* Text */
.qual-item p {
  margin: 0;
  font-size: 15px;
  color: #333;
  line-height: 1.4;
  flex: 1;
}

/* Check icon */
.check {
  color: #3c9d85;
  font-size: 18px;
}


/* Section */
.reason-section {
  padding: 30px;
}

/* Card */
.reason-card {
  
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 10px #00000010;
}

/* Title */
.reason-card h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 55px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2c4a5a;
}

.reason-card h2 i {
  color: #f4b400;
}

/* List */
.reason-list {
  position: relative;
  padding-left: 20px;
}

/* Vertical Line */
.reason-list::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #2c4a5a;
  opacity: 0.6;
}

/* Item */
.reason-item {
  display: flex;
  gap: 15px;
  margin-bottom: 45px;
  position: relative;
}

/* Icon */
.reason-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  /*background: #e9ecef;*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c4a5a;
  font-size: 20px;
  position: relative;
  z-index: 1;

}

/* Content */
.reason-content h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.reason-content p {
  margin: 5px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* CTA Buttons */
.reason-cta {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Primary */
.btn-primary {
  padding: 20px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f4b400, #f6c343);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(244,180,0,0.3);
}

/* Outline */
.btn-outline {
  padding: 20px 10px;
  border-radius: 10px;
  border: 1px solid #2c4a5a;
  color: #2c4a5a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #2c4a5a;
  color: #fff;
}



/* Section */
.pk-acad-sec {
  padding: 4rem 0;
  background: url('../images/infobg.avif') center/cover no-repeat;
  position: relative;
  color: #fff;
}

.pk-acad-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.pk-acad-head,
.pk-tab-content {
  position: relative;
  z-index: 2;
}

/* Heading */
.pk-acad-head h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}

.pk-acad-head h2 span {
  color: var(--color2);
}

.pk-acad-head p {
  text-align: center;
  margin: 10px 0 25px;
}

/* Tabs */
.pk-tabs-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pk-tab-btn {
  padding: 20px 30px;
  border-radius: 10px;
  border: none;
  background: #fff;
  color: #333;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
/* Tab icons */
.pk-tab-btn i {
    font-size: 20px;
    font-weight: 600;
  margin-right: 6px;
}

/* Card icon box */
.pk-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
     background: linear-gradient(to right, #2a536b, #3c8679);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.pk-icon p{
  color: #cccccc;
}
/* Tag icon */
.pk-tag i {
  margin-right: 5px;
  color: #3c9d85;

}
.pk-tab-btn.active {
    background: linear-gradient(to right, #2a536b, #3c8679);
  color: #fff;
}

/* Content Box */
.pk-tab-content {
  background: #f4f4f4;
  color: #333;
  border-radius: 20px;
  padding: 50px;
  margin-top: 30px;
}

/* Pane */
.pk-tab-pane {
  display: none;

}

.pk-tab-pane.active {
  display: block;
  height: 470px;
  overflow-y: scroll;
  padding-right: 15px;

}
.pk-tab-pane.active::-webkit-scrollbar {
    width: 2px;
    background: #ccc;
    border-radius: 10px;
}
.pk-tab-pane.active::-webkit-scrollbar-thumb {
    background: var(--color2);
    border-radius: 10px;
}
.pk-tab-content h3{
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 35px;
}
/* Card */
.pk-card-box {
  display: flex;
  gap: 15px;
  background: #e9eeee;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  border-left: 4px solid #f4b400;
}

/* Icon */
.pk-icon {
  font-size: 22px;
}
.pk-card-box h4{
    padding-bottom: 5px;
    font-weight: 600;
}
/* Tag */
.pk-tag {
  display: inline-block;
  margin: 5px 0;
  color: #3c9d85;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
    padding-bottom: 7px;
}

.pk-tag b {
  background: #f4b400;
  color: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 5px;
}

.contact-section {
    padding: 40px 20px;
    padding-bottom: 0;
    text-align: center;
}

/* Badge */
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e6eef3;
    color: #2f4f5f;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    border: 1px solid #2a526b33;
}

.contact-badge .icon {
    font-size: 16px;
}

/* Title */
.contact-title {
    font-size: 50px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.contact-title span {
    color: #2f5e73;
}

/* Description */
.contact-desc {
    margin:0 auto;
    font-size: 16px;
    color: #555;
    width: 70%;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-desc {
        font-size: 16px;
    }
}
/* Card */
.pk-card-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #eef2f3;
    padding: 18px 20px;
    border-radius: 12px;
}

/* Icon */
.pk-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f6f78, #49b293);
    color: #fff;
    font-size: 22px;
}

/* Pill (NEW) */
.pk-pill {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid #49b293;
    color: #2e8b7a;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 6px;
}

/* Title */
.pk-content h4 {
    font-size: 18px;
    padding-top: 5px;
    margin-bottom: 0;
    color: #2c3e50;
}

/* Desc */
.pk-content p {
    font-size: 14px;
    color: #555;
    margin: 0;
}



.lts-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eef3f2;
    padding: 18px 20px;
    border-radius: 12px;
    border-left: 4px solid #2f4f4f;
}

/* Left section */
.lts-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icon */
.lts-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2e8b7d, #3aa18f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lts-icon i {
    color: #fff;
    font-size: 20px;
}

/* Title */
.lts-left h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2d2b;
}

/* Year badge */
.lts-year {
    background: linear-gradient(135deg, #2e8b7d, #3aa18f);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Wrapper */
.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    border-top:1px solid #cccccc50;
    margin-top: 25px;
    padding-top: 25px;
}

/* Box */
.stats-box {
    background: #f2f4f3;
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #dcdcdc;
}

/* Number */
.stats-box h2 {
    margin: 0;
    font-size: 36px;
    transition: 0.3s ease all;
    font-weight: 700;
}

/* Text */
.stats-box p {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.stats-box:hover h2{
  transform: scale(1.1);
}
/* Variations */
.awards {
    background: #f3efe9;
    border-color: #f0c36d;
}

.awards h2 {
    color: #f4a825;
}

.presentations {
    background: #eef3f2;
    border-color: #a8cfc6;
}

.presentations h2 {
    color: #2e8b7d;
}

.workshops {
    background: #eef3f2;
    border-color: #b8c7cc;
}

.workshops h2 {
    color: #2f4f4f;
}
.reviewsec{
   padding: 4rem 0;
}
.review-wrapper {
  padding: 40px;
  background: #f5f5f5;
}

.review-card {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.google {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google img {
  width: 40px;
}

.google h4 {
  margin: 0;
  font-size: 18px;
}

.google p {
  margin: 0;
  font-size: 13px;
  color: #777;
}

.nav-btns button {
  background: #2f6f6f;
  border: none;
  color: #fff;
  padding: 10px 12px;
  margin-left: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.name {
  margin-top: 20px;
  font-size: 24px;
}

.rating {
  color: #f4b400;
  margin: 10px 0;
  font-size: 16px;
}

.rating span {
  color: #000;
  margin-left: 5px;
  font-weight: bold;
}

.rating small {
  color: #777;
  margin-left: 10px;
}

.review-text {
  display: flex;
  margin-top: 20px;
  color: #555;
  line-height: 1.6;
}

.quote {
  font-size: 60px;
  color: #f4b400;
  margin-right: 10px;
}

.review-text p {
  margin: 0;
}

.review-section {
  padding: 50px 20px;
}

.review-card {
  margin: auto;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Header */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.google-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-box img {
  width: 40px;
}

.google-box h4 {
  margin: 0;
  font-size: 24px;
  padding-bottom: 5px;
  font-weight: 600;
}

.google-box p {
  margin: 0;
  font-size: 14px;
  color: #777;
}

/* Arrows */
.review-nav button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
      background: linear-gradient(135deg, #1f6f78, #49b293);
  color: #fff;
  font-size: 16px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.review-nav button:hover {
      background: linear-gradient(135deg, #49b293, #1f6f78);
}

/* Name */
.review-name {
  margin-top: 35px;
  font-size: 28px;
  font-weight: 600;
}

/* Rating */
.review-rating {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-rating i {
  color: #f4b400;
}

.score {
  margin-left: 8px;
  color: #f4b400;
  font-weight: 600;
}

.time {
  margin-left: 10px;
  color: #777;
}

/* Text */
.review-text {
  display: flex;
  margin-top: 25px;
  align-items: flex-start;
}

.quote {
  font-size: 70px;
  color: #f4b400;
  line-height: 1;
  margin-right: 15px;
}

.review-text p {
  margin: 0;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  max-width: 800px;
}


footer{
  background: #000;
  padding: 4rem;
  padding-bottom: 0;
}

/* Card */
.doctor-card2 {
  
  color: #fff;
  
}

/* Name */
.doctor-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Speciality */
.doctor-speciality {
  color: #2ec4b6;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Description */
.doctor-desc {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Contact */
.doctor-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.doctor-icon {
  width: 45px;
  height: 45px;
  background: #123c3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ec4b6;
  font-size: 18px;
}

.doctor-email {
  
  font-size: 16px;
  margin-bottom: 5px;
}

.doctor-label {
  margin: 0;
  font-size: 13px;
  color: #888;
}

/* Connect */
.doctor-connect {
  font-size: 18px;
  margin-bottom: 15px;
}

/* Social */
.doctor-social {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 45px;
  height: 45px;
  background: #111;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-btn:hover {
  background: #2ec4b6;
  color: #000;
}

/* Section */
.services-section {
  
  margin: auto;
  padding: 0 0;
  color: #fff;
}

/* Title */
.services-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.services-title i {
  color: #f4b400;
  margin-right: 10px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* List */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Items */
.service-item {
  padding: 15px 10px;
  border-radius: 10px;
  color: #bdbdbd;
  margin-bottom: 0;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
.service-item a{
  color: white;
  font-size: 15px;
  line-height: 1.6;
  padding-left: 10px;
  transition: 0.3s ease;
}
.service-item a i{
  color: white;
  font-size: 10px;
  margin-right: 5px;
  left: 5px;
  top:22px;
  position: absolute;
}
.service-item a:hover, .service-item a:hover i{
  color: var(--color2);
}
/* Hover Effect */
.service-item:hover {
  background: linear-gradient(to right, #1a1a1a, #2a2a2a);
  color: #fff;
}

/* Active (First item same as hover) */
.service-item.active {
  background: linear-gradient(to right, #1a1a1a, #2a2a2a);
  color: #fff;
}

/* Arrow */
.service-item .arrow {
  color: #2ec4b6;
  margin-right: 10px;
}

/* Section */
.hosp-section {
  margin: auto;
  
  color: #fff;
}

/* Title */
.hosp-title {
  font-size: 24px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hosp-title i {
  color: #2ec4b6;
}

/* Card */
.hosp-card {
  margin-bottom: 25px;
}

/* Name */
.hosp-name {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Info */
.hosp-info {
  font-size: 13px;
  color: #bdbdbd;
  margin-bottom: 8px;
}

.hosp-info i {
  color: #2ec4b6;
  font-size: 13px;
  margin-right: 6px;
}


.hosp-info i.fa-phone {
  color: var(--color2);
  
}

/* Button */
.hosp-btn {
    display: inline-block;
    margin-top: 10px;
    background: #4c9c8c;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}
.hosp-btn i {
  margin-right: 6px;
}

.hosp-btn:hover {
  background: #25a99c;
}



/* Footer */
.footer-sec {
  color: #fff;
  padding-top: 40px;
}

/* Top Section */
.footer-top {
  text-align: center;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  padding: 25px 0;
}

.footer-title {
  font-size: 20px;
  margin-bottom: 20px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #bdbdbd;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #2ec4b6;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  color: #aaa;
  flex-wrap: wrap;
}

/* Policy Links */
.footer-policy a {
  margin-left: 20px;
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-policy a:hover {
  color: #2ec4b6;
}


/* Main Card */
.sk-doctor-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef3f5, #dfe7ea);
  max-width: 1300px;
  margin: 0 auto;
  
}

/* Left */
.sk-doctor-name {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.sk-doctor-role {
  color: #2aa198;
  margin: 6px 0 15px;
  font-weight: 400;
}

.sk-doctor-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  max-width: 800px;
}

/* Email Box */
.sk-email-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  padding: 18px;
  border-radius: 12px;
  background: #ffffff90;
  max-width: 600px;
}

.sk-email-icon {
  background: #d5e6e3;
  padding: 12px;
  border-radius: 10px;
  color: #2aa198;
  font-size: 18px;
}

.sk-email-label {
  font-weight: 600;
  margin: 0;
  font-size: 15px;
}

.sk-email-text {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}
.sk-email-text a{
  color: #333;
}
/* Right */
.sk-doctor-right {
  text-align: right;
}

.sk-connect-text {
  font-weight: 600;
  margin-bottom: 15px;
}

/* Social */
.sk-social-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.sk-social-btn {
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: 600;
  background: #ffffff90;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #333;
  transition: 0.3s;
}

.sk-social-btn:hover {
  background: #2aa198;
  color: #fff;
}
.dropdown-toggle::after{
  display: none;
}

.sk-review-card {
  position: relative;
  background: #fff;
  border: 1px solid #cccccc50;
  padding: 30px;
  border-radius: 18px;
  margin: 0 auto;
  margin-bottom: 50px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.09);
  overflow: hidden;
  height: 320px;
}

/* corner shape */
.sk-review-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: #fbf0de;
  border-radius: 50%;
  z-index: 0;
}

/* top */
.sk-review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
    position: relative;
  z-index: 99;
}

.sk-stars {
  color: #f5a623;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 8px;

}

.sk-stars img {
  height: 25px;
}

.sk-time {
  color: #777;
  font-size: 14px;
}

/* name */
.sk-review-name {
  margin: 10px 0 10px;
  font-size: 20px;
  font-weight: 700;
}

/* text */
.sk-review-text {
  position: relative;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.sk-review-text p {
  margin: 0;
  line-height: 1.6;
  padding: 10px 20px;
  padding-left: 40px;
}

/* quotes */
.quote-left {
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 40px;
  color: #cfd8dc;
}

.quote-right {
  position: absolute;
  right: 0;
  bottom: -10px;
  font-size: 40px;
  color: #cfd8dc;
}

/* footer */
.sk-review-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  font-weight: 500;
}

.sk-review-footer img {
  width: 22px;
}
/* Section Card */
.sk-rating-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 40px 40px;
  border-radius: 18px;
  max-width: 900px;
   border-top: 1px solid #ddd;
  margin: 0 auto;
  
  margin-bottom: 70px;
  background: linear-gradient(135deg, #eef3f5, #d9e2e6);
  box-shadow: 0 0 5px rgba(0,0,0,0.09);
  
}

/* Left */
.sk-rating-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.sk-stars {
  color: #ffbc49;
  font-size: 24px;
  letter-spacing: 1px;
}

.sk-rating-value {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.sk-rating-text {
  margin-top: 8px;
  color: #666;
  font-size: 15px;
}

/* Right Button */
.sk-google-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.sk-google-btn img {
  width: 18px;
}

.sk-google-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.st-research-card {
  width: 100%;
  min-height: 300px;
  border-radius: 16px;
  background: #f7f9fb;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  padding: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  /* ADD THIS */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.st-research-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: #e6edf2;
  border-radius: 50%;
}

.st-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.st-icon-box {
  width: 45px;
  height: 45px;
  background: #2f7d6d;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.st-tag {
  background: #e2e8f0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #2c5282;
  font-weight: 500;
}
.st-date {
  margin: 12px 0;
  color: #6b7280;
  font-size: 14px;
}

.st-title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  line-height: 1.5;
  margin-bottom: 20px;
}

.st-card-footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}

.st-journal-icon {
  font-size: 16px;
}
.awardspg{
    padding-bottom: 60px;
}
.awardtitile {
  display: flex;
  align-items: center;
}
.awardtitile h2{
  font-size: 30px;
  font-weight: 800;
}
.awardtitile i{
    color: #ffffff;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--color2);
    border-radius: 10px;
    margin-right: 10px;
}
.st-award-card {
  width: 100%;
  min-height:180px;
  padding: 25px;
  border-radius: 16px;
  background: #f7f9fb;
  box-shadow: 0 0 5px rgba(0,0,0,0.20);
  margin-top: 30px;
  transition: 0.3s ease;
    display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.st-award-card:hover{
  transform: translateY(-10px);
}
.st-award-tag {
  display: inline-block;
  width: 120px;
  background: #e2e8f0;
  color: #2c5282;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.st-award-title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.5;
}

.st-award-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.title2{
  margin-top: 60px;
}
.title2 i{
  background: #4c9c8c;
}


.profile-card {

    
    border-radius: 20px;
    
  }

  .profile-photo {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    object-fit: cover;
  }

  .contact-box {
    margin-top: 15px;
    background: #e9f0f0;
    border-radius: 15px;
    padding: 18px;
    display: flex;
    align-items: center;
    border: 1px solid #cccccc60;
    gap: 10px;
  }

  .mail-icon {
    width: 45px;
    height: 45px;
    background: #cfe2e2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
  }

  .contact-text {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    word-break: break-all;
  }
    .mail-icon i{
      color: var(--color3);
      font-size: 20px;
  }
  .aboutpg{
    padding: 40px 0 70px 0;
  }

  .med-card {
    
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    border: 1px solid #cccccc50;
  }

  /* curved corner */
  .med-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: #dfe5e5;
    border-bottom-left-radius: 100%;
  }

  .med-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    font-family: var(--Baloo);
    margin-bottom: 10px;
  }

  .med-subtitle {
    font-size: 18px;
    color: #3aa394;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .med-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
  }


.edu-section {
  padding: 0 20px;
  padding-bottom: 60px;
}

.edu-container {
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.edu-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.edu-title .icon {
  font-size: 25px;
}

.edu-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.edu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICON */
.check {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: #e5edf3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d3b66;
  font-weight: bold;
}

/* TEXT */
.edu-item p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

/* 🔥 HOVER EFFECT */
.edu-item:hover {
  background: #ffffff;
  border: 1px solid var(--color1);
  box-shadow: 0 8px 20px rgba(30,144,255,0.15);
  transform: translateY(-2px);
}

/* ACTIVE (FIRST BOX DEFAULT) */
.edu-item.active {
  background: #ffffff;
  border: 1px solid #1e90ff;
  box-shadow: 0 8px 20px rgba(30,144,255,0.15);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .edu-item {
    flex-direction: row;
    align-items: flex-start;
  }
}

.training-section {
  padding-bottom: 70px;
}

.training-container {
  
  margin: auto;
  padding: 25px;
  border-radius: 18px;

  /* 🔥 soft bluish gradient like your image */
  background: linear-gradient(135deg, #d9e4ea, #cfd8dc);

  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.training-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f2d3d;
}

.training-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ITEM */
.training-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border-radius: 12px;

  /* glass effect */
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}

/* ICON */
.training-item .check {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c7a7b;
  font-weight: bold;
}

/* TEXT */
.training-item p {
  margin: 0;
  font-size: 15px;
  color: #2c3e50;
}

/* 🔥 HOVER EFFECT */
.training-item:hover {
  background: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .training-item {
    align-items: flex-start;
  }
}
.awards-section {
  padding-bottom: 70px;
}

.awards-container {
  
  margin: auto;
  padding: 25px;
  border-radius: 18px;

  /* 🔥 warm gold gradient */
  background: linear-gradient(135deg, #efe5d6, #e3d7c4);

  border: 1px solid rgba(200,160,80,0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.awards-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3a2f1b;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ITEM */
.award-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border-radius: 12px;

  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.4);

  transition: all 0.3s ease;
}

/* ICON */
.award-item .check {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c28a2e;
  font-weight: bold;
}

/* TEXT */
.award-item p {
  margin: 0;
  font-size: 15px;
  color: #3a3a3a;
}

/* 🔥 HOVER EFFECT */
.award-item:hover {
  background: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194,138,46,0.15);
}

/* ⭐ ACTIVE FIRST CARD */
.award-item.active {
  background: rgba(255,255,255,0.9);
  border: 1px solid #e0a83a;
  box-shadow: 0 10px 25px rgba(224,168,58,0.25);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .award-item {
    align-items: flex-start;
  }
}

/* SECTION */
.sx-section {
  padding-bottom: 70px;
}

.sx-container {
  margin: auto;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HEADER */
.sx-header {
  padding: 25px;
  background: linear-gradient(135deg, #2c5364, #3aa17e);
  color: #fff;
}

.sx-title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
}

.sx-subtitle {
  margin-top: 5px;
  font-size: 14px;
  opacity: 0.9;
}

/* TABS */
.sx-tabs {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: #f1f3f5;
  flex-wrap: wrap;
}

.sx-tab {
  padding: 20px 25px;
  border-radius: 8px;
  border: none;
  background: #e5e7eb;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.sx-tab.sx-active {
  background: #2c5364;
  color: #fff;
}

/* CONTENT */
.sx-content {
  display: none;
  padding: 20px;
}

.sx-content.sx-active {
  display: block;
}

/* GRID */
.sx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* ITEM */
.sx-item {
  background: #eef1f4;
  padding: 20px;
  border-radius: 8px;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

/* LEFT BORDER */
.sx-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #2c5364;
  border-radius: 20px 0 0 20px;
}

/* HOVER */
.sx-item:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sx-grid {
    grid-template-columns: 1fr;
  }
}




/* SECTION */
.pr-section {
  padding: 0 0 70px 0;
}

/* CONTAINER */
.pr-container {
  
  margin: auto;
  padding: 25px;
  border-radius: 18px;

  background: linear-gradient(135deg, #d9e7e4, #cfe0dc);
  border: 1px solid rgba(0,150,130,0.2);

  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* TITLE */
.pr-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f3d3a;
}

.pr-icon {
  background: #5aa89c;
  color: #fff;
  padding: 10px 8px;
  border-radius: 6px;
  font-size: 14px;
}

/* LIST */
.pr-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ITEM */
.pr-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border-radius: 12px;

  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.5);

  transition: 0.3s;
}

/* DOT ICON */
.pr-dot {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.6);
  position: relative;
}

.pr-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #4f9c90;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* TEXT */
.pr-item p {
  margin: 0;
  font-size: 15px;
  color: #2f3e3c;
}

/* HOVER */
.pr-item:hover {
  background: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* ACTIVE FIRST ITEM */
.pr-item.pr-active {
  background: rgba(255,255,255,0.9);
  border: 1px solid #4f9c90;
  box-shadow: 0 8px 20px rgba(79,156,144,0.2);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .pr-item {
    align-items: flex-start;
  }
}

.servicepg{
  padding: 70px 0;
}
.ss-sidebar {
  position: sticky;
  top: 10px;
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border:1px solid #cccccc;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TITLE */
.ss-title {
  margin: 0;
  font-weight: 600;
  font-size: 26px;
  color: var(--color1);
}

/* DIVIDER */
.ss-divider {
  height: 1px;
  background: #cfd8dc;
  margin: 15px 0 20px;
}

/* LIST RESET */
.ss-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ITEM */
.ss-item {
  margin-bottom: 12px;
  border-radius: 12px;
  position: relative;
  transition: 0.3s;
}

/* LINK FULL CLICK */
.ss-item a {
  display: block;
  padding: 16px 15px;
  font-size: 15px;
  line-height: 1.4;
  text-decoration: none;
  color: #333;
  font-weight: 500;
   border: 1px solid #b0bec530;
  background: #f4f6f8;
  border-radius: 8px;
  position: relative;
  transition: 0.3s;
}

/* LEFT BAR */
.ss-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 2px;
  background: transparent;
  border-radius: 4px;
  transition: 0.3s;
}

/* DOT */
.ss-dot {
  width: 6px;
  height: 6px;
  background: #8aa0ad;
  border-radius: 50%;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.ss-item a:hover {
  background: #ffffff;
  border: 1px solid #b0bec5;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transform: translateX(4px);
}

.ss-item a:hover::before {
  background: #f4a100;
}

/* ⭐ ACTIVE */
.ss-item.ss-active a {
  background: #ffffff;
  border: 1px solid #90a4ae;
}

.ss-item.ss-active a::before {
  background: #f4a100;
}
.servicedetail img{
  width: 100%;
  margin-bottom: 40px;
}
.servicedetail h1{
  font-size: 38px;
  font-weight: 700;
  color: var(--color1);
  margin-bottom: 15px;
}
.servicedetail p{
  line-height: 1.6;
  font-size: 15px;
}

/* SECTION */
.pt-section {
  padding: 40px 0 0 0;
}

/* TITLE */
.pt-title {
  text-align: left;
  font-size: 25px;
  color: #2c5364;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.pt-title span {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--color3);
  margin: 0 10px;
  vertical-align: middle;
}

/* GRID */
.pt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: auto;
}

/* CARD */
.pt-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border:1px solid #cccccc40;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* NUMBER CIRCLE */
.pt-number {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f6f78, #49b293);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

/* TEXT */
.pt-card p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

/* HOVER */
.pt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pt-grid {
    grid-template-columns: 1fr;
  }
}


/* SECTION */
.ba-section {
  padding: 40px 0;
  
}

/* TITLE */
.ba-title {
  text-align: left;
  font-size: 25px;
  font-weight: 600;
  color: #2c5364;
  margin-bottom: 30px;
}

.ba-title span {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--color3);
  margin: 0 10px;
  vertical-align: middle;
}

/* GRID */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.ba-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 14px;

  background: #ffffff;
  border: 2px solid #c4e1db;
  transition: 0.3s;
}

/* ICON */
.ba-icon {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c8c7c, #3aa17e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* TEXT */
.ba-card p {
  margin: 0;
  font-size: 15px;
  color: #333;
  font-weight: 600;
}

/* HOVER */
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: #73b9ad;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
}

.tech-section {
  padding: 0 0;
  
}

.tech-title {
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tech-title span {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #2bb6a8;
  border-radius: 5px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.tech-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.tech-icon {
  width: 55px;
  height: 55px;
      background: linear-gradient(135deg, #2c8c7c, #3aa17e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.tech-icon i {
  color: #fff;
  font-size: 20px;
}

.tech-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tech-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 992px){
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-box {
  border: 2px solid #cde7e3;
  border-radius: 16px;
  padding: 30px;
  background: #f9fcfb;
  margin-top: 40px;
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.benefit-title span {
  width: 35px;
  height: 3px;
  background: #2bb6a8;
  border-radius: 5px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-icon {
  min-width: 28px;
  height: 28px;
  background: #2bb6a8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.benefit-item p {
  margin: 0;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.5;
}

/* Responsive */
@media(max-width: 768px){
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

.erp-box {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  border-radius: 16px;
  background: #f4f9f8;
  border: 2px solid #cfe7e3;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.erp-icon {
  min-width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2bb6a8, #3cc1b5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erp-icon i {
  color: #fff;
  font-size: 22px;
}

.erp-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.erp-content p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media(max-width: 576px){
  .erp-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.seek-help-box {
  background: linear-gradient(135deg, #f7f5f2, #efebe7);
  border: 1px solid #e6c98f;
  border-radius: 16px;
  padding: 30px;
  margin-top: 30px;
}

/* Title */
.seek-title {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.seek-title span {
  width: 30px;
  height: 4px;
  background: #e0a100;
  margin-right: 10px;
  border-radius: 2px;
}

/* Grid */
.seek-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.seek-col {
  flex: 1;
  min-width: 260px;
}

/* Subtitle */
.seek-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  position: relative;
  padding-left: 18px;
}

.seek-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 12px;
  height: 12px;
  background: #e0a100;
  border-radius: 50%;
}

/* List */
.seek-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seek-col ul li {
  font-size: 14.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

/* Left dots */
.seek-col ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #f2d9a6;
  border-radius: 50%;
}

/* Right check style */
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: #f2d9a6;
  border-radius: 50%;
  font-size: 12px;
  color: #c48b00;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .seek-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.adv-tech-box {
  background: linear-gradient(135deg, #f7f5f2, #efebe7);
  border: 1px solid #e6c98f;
  border-radius: 16px;
  padding: 25px 30px;
  margin-top: 30px;
}

/* Title */
.adv-tech-title {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.adv-tech-title span {
  width: 30px;
  height: 4px;
  background: #e0a100;
  margin-right: 10px;
  border-radius: 2px;
}

/* Grid */
.adv-tech-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Cards */
.adv-tech-card {
  flex: 1;
  min-width: 180px;
  background: #f2f2f2;
  padding: 14px 18px;
  text-align: center;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  border: 1px solid #e3d5bd;
  transition: all 0.3s ease;
}

/* Hover effect */
.adv-tech-card:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .adv-tech-grid {
    flex-direction: column;
  }
}

.owl-carousel .owl-stage-outer {
    position: relative;
    padding: 32px 0;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
}