/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header / #header
3. Navigation / .main-menu
4. Dropdown / .main-menu ul li ul li
5. Accordion / .my-accordion
6. Help-you / .help-you
7. Clinic Inside / .clinic-inside
8. Appointment / .appointment
9. Complete Project / .complete-project
10. Latest Blog / .blog-box
11. Testimonial / .testimonial
12 Pricing Box  / .pricing-box
13. Contact / .contact
14. Footer / .footer-top


And More Css css/page.css File Include
-------------------------------------------------------------------*/

/*
==========================================
    GOOGLE FONTS CSS
==========================================
*/

/**************************************
    font-family: 'Raleway', sans-serif;
*/
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700");

/***********************************
    font-family: 'Lato', sans-serif;
*/
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700,900");

/***********************************
    font-family: 'Open Sans', sans-serif;
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700");
/*
/*
==========================================
    Reset Css
==========================================
*/
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/*
==========================================
    Help Full Css
==========================================
*/
html,
body {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  color: rgb(59 59 59);
  font-weight: 600;
  font-size: 16px;
}
body {
  overflow-x: hidden;
}
.section-padding {
  padding: 96px 0 18px 0px !important;
}
.primary-color {
  color: #3498db;
}
.primary-bg {
  background: #3498db;
}
/*
    Section Header
*/

.section-header {
  text-align: center;
}
.section-header h2 {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
}
.section-header p {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 36px;
  margin-bottom: 50px;
  text-transform: capitalize;
  line-height: 32px;
  font-size: 18px;
  font-weight: 600;
  word-spacing: 5px;
  text-align: justify;
}
.section-header h2:after {
  position: absolute;
  width: 80px;
  height: 1px;
  /* background: #3498db; */
  content: "";
  bottom: 0;
  left: 50%;
  top: 60px;
  margin-left: -40px;
}
.section-header h2::before {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  /* background: #3498db; */
  border-radius: 50%;
  top: 50px;
  left: 50%;
  margin-left: -10px;
}
.table {
  display: table;
  height: 100%;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}
/*
==========================================
    HEADER Css
==========================================
*/
#header {
  height: 100%;
  position: relative;
  z-index: 1;
}
#header::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #202020;
  opacity: 0.65;
  z-index: -1;
}
.vegas-slide,
.vegas-slide-inner {
  z-index: -1;
}
.logo img {
  /* border: 1.5px solid #ffffff; */
  padding: 2px 12px;
}
.header-content {
  height: 100%;
  text-align: center;
}
.display-table {
  height: 100%;
  display: table;
  width: 100%;
}
.display-table-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.header-main-content h1 {
  font-size: 45px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  text-transform: capitalize;
}
.header-main-content p {
  max-width: 600px;
  margin: auto;
  font-family: "Lato", sans-serif;
  line-height: 24px;
  font-size: 14px;
  font-style: italic;
  margin-top: 20px;
  margin-bottom: 30px;
}
.header-main-content {
  color: #fff;
}
.btn a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  border: 1px solid #fff;
  padding: 11px 40px;
  display: inline-block;
  margin: 0 10px;
  transition: 0.3s;
}
.header-btn-1.hvr-rectangle-out {
  background: #3498db;
  border: 1px solid #3498db;
}
.header-btn-2.hvr-rectangle-out {
  background: transparent;
}
.header-btn-2.hvr-rectangle-out:hover {
  border-color: #3498db;
}
/*
    Navigation
*/
.main-menu ul li a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  outline: none;
  transition: 0.3s;
  font-style: normal;
  font-family: "Lato", sans-serif;
  padding: 26px 0;
}
.main-menu ul li a:hover {
  color: #3498db;
}
.main-menu ul li {
  float: left;
  margin-right: 0px;
  position: relative;
}
.main-menu ul {
  float: right;
  margin-top: 11px;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.header-top {
  padding: 10px 0;
  position: absolute;
  z-index: 99999999;
  width: 100%;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.header-top::after {
  background: #000 none repeat scroll 0 0 !important;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  transition: 0.5s;
}
/*
    Dropdown Menu
*/
.main-menu ul li ul li {
  float: none;
}
.main-menu ul li ul {
  width: 200px;
  position: absolute;
  background: rgba(0, 0, 0, 0.55);
  top: 60px;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.main-menu ul li:hover ul {
  top: 34px;
  opacity: 1;
  visibility: visible;
}
.main-menu ul li ul li a {
  padding: 9px 10px;
  display: inline-block;
  border-bottom: 1px solid #4e4d4d;
  width: 200px;
  font-weight: 400;
}
.main-menu ul li ul li a:hover {
  color: #fff;
  transition: 0.5s;
  margin-left: 2px;
}
.main-menu ul li ul li:last-child a {
  border-bottom: 0;
}
.menu ul > .active > a {
  color: #3498db;
}
/*
==========================================
    ACCORDION Css
==========================================
*/
.my-accordion .panel .panel-heading {
  background-color: #3498db;
  color: #fff;
}
.my-accordion {
  margin-top: 45px;
}
.my-accordion .panel .panel-heading .panel-title a i {
  margin-right: 15px;
  font-size: 22px;
}
.my-accordion .panel .panel-heading .panel-title a {
  font-size: 17px;
  text-transform: capitalize;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  text-decoration: none;
  outline: none;
}
.my-accordion .panel {
  margin-bottom: 14px;
}
.why-border {
  width: 1px;
  background: #3498db;
  height: 497px;
  margin-top: 47px;
  position: relative;
}
.why-border:after {
  position: absolute;
  width: 35px;
  height: 35px;
  content: "";
  top: 49%;
  border-radius: 50%;
  background: #3498db;
  left: -16px;
  z-index: 0;
  margin-top: -17px;
}

/*
==========================================
    HELP YOU Css
==========================================
*/
.help-you {
}
.help-you {
  position: relative;
  z-index: 0;
  color: #fff;
  background: url("../image/help-you.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.help-you:after {
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  background: #3498db;
  position: absolute;
  opacity: 0.75;
  z-index: -1;
}
.help-you h2 {
  font-size: 38px;
  font-weight: ;
}
.help-you p {
  width: 600px;
  margin: 0 auto;
  width: ;
  text-transform: capitalize;
  line-height: 24px;
  margin-top: 15px;
}
.help-you .btn a {
  background: #fff;
  color: #3498db;
  text-transform: capitalize;
  display: inline-block;
  margin-top: 10px;
}
.help-you .btn a:hover {
  background: #3498db;
  color: #fff;
}

/*
==========================================
    CLINIC INSIDE Css
==========================================
*/
.clinic-inside.section-padding {
  background: #fafafa;
}
.clinic-inside-menu button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  font-weight: 400;
  margin: 0 10px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
}
.clinic-inside-menu button.mixitup-control-active {
  color: #3498db;
}
.clinic-inside-menu button:hover {
  color: #3498db;
}
.clinic-inside-menu {
  text-align: center;
}
.clinic-inside-img > img {
  height: auto;
  width: 100%;
  cursor: crosshair;
  transition: 0.4s;
}
.clinic-inside-box {
  margin-top: 25px;
}
.clinic-inside-main {
  margin-top: 25px;
}
.clinic-inside-img {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.clinic-inside-img:hover .prtfolio-text {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.clinic-inside-img:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
button.mixitup-control-active:focus {
  border: none;
  outline: none;
}
.clinic-inside-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(52, 152, 219, 0.15);
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.clinic-inside-img:hover .clinic-inside-text {
  background: rgba(52, 152, 219, 0.6);
}
.clinic-inside-text ul li a {
  color: #fff;
  display: inline-block;
  font-size: 25px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transition: all 0.3s ease 0s;
}
.clinic-inside-text:hover ul li a {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
/*
==========================================
    APPOINTMENT Css
==========================================
*/
.appointment {
  background: url("../image/appointment-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  z-index: 0;
  color: #fff;
}
.appointment:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  background: #3498db;
  opacity: 0.8;
}
.appointment .section-header h2::before {
  /* background: #fff; */
}
.appointment .section-header h2::after {
  /* background: #fff; */
}
.appointment .form-control {
  height: 54px;
  margin-bottom: 20px;
  font-size: "Lato", sans-serif;
  font-style: italic;
  font-size: 15px;
}
.appointment #message {
  height: 170px;
  padding-top: 20px;
}
.appointment input[type="submit"] {
  background: transparent;
  border: 1px solid #fff;
  padding: 12px 60px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s;
  outline: none;
}
.appointment input[type="submit"]:hover {
  background: #fff;
  color: #3498db;
}
.ui-datepicker .ui-datepicker-header {
  background: #3498db;
  border-color: #3498db;
}

/*
==========================================
    LATEST BLOG Css
==========================================
*/
.blog-box .img > img {
  height: auto;
  transition: all 0.8s cubic-bezier(0.45, 0.05, 0.2, 1.05) 0s;
  width: 100%;
}
.blog-box .img {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease 0s;
  z-index: 0;
}
.blog-box .img::after {
  background: #3498db none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.2;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.blog-box .img .article-meta {
  background: rgba(52, 152, 219, 0.5) none repeat scroll 0 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.blog-box .img .article-meta a {
  color: #fff;
  display: inline-block;
  margin-left: 20px;
  padding: 10px 0;
  text-decoration: none;
}
.blog-box .img:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.blog-text h3 {
  padding: 12px 0;
  text-transform: capitalize;
}
.blog-text h3 a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
}
.blog-text h3 a:hover {
  color: rgba(52, 152, 219);
}
.blog-text > p {
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 13px;
}
.blog-text {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #3498db;
  border-image: none;
  border-style: none solid solid;
  border-width: 0 1px 1px;
  box-sizing: border-box;
  padding: 20px 16px 14px;
}
.blg-btn > a {
  color: #3498db;
  display: inline-block;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.blg-btn > a:hover {
  margin-left: 2px;
}
.more-blog-btn a {
  background: #2098d1;
  color: #fff;
  text-align: center;
}
.btn.more-blog-btn {
  text-align: center;
  display: block;
  margin-top: 55px;
}
.more-blog-btn a:hover {
  background: transparent;
  color: #2098d1;
  border: 1px solid #2098d1;
}

/*
==========================================
    TESTIMONIAL Css
==========================================
*/
.testimonial {
  background: url("../image/testimonial-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}
.testimonial:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  background: #3498db;
  opacity: 0.8;
  z-index: -1;
}
.testimonial .section-header {
  color: #fff;
}
/* .testimonial .section-header h2:after {
  background: #fff;
} */
/* .testimonial .section-header h2::before {
  background: #fff;
} */

.item-img img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.item-img {
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
  height: 150px;
  border: 7px solid #fff;
  box-sizing: border-box;
}
.item-content::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-right: 20px solid rgba(0, 0, 0, 0.7);
  border-radius: 20px solid rgba(0, 0, 0, 0.7);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  right: 100%;
  top: 50%;
  margin-top: -43px;
}
.item-content {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px;
  padding-left: 21px;
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
  border-bottom: 4px solid #fff;
  box-sizing: border-box;
}
.item-content h4 {
  color: #3498db;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-style: italic;
  letter-spacing: 1px;
}
.item-content .d-title {
  margin-bottom: 10px;
  margin-top: 4px;
  font-style: italic;
}
.item-content p {
  line-height: 24px;
  font-family: "Raleway", sans-serif;
}
.item-img:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/*
==========================================
    PRICING Css
==========================================
*/
.pricing-box {
  padding-bottom: 30px;
  text-align: center;
  margin-top: 30px;
  transition: 0.3s;
  background: #f7f7f7;
  box-shadow: 1px 1px 2px rgba(222, 222, 222, 0.32);
  border-radius: 5px;
}
.pricing-box:hover {
  transition: 0.3s;
}
.pricing-header {
  background: #207fdc;
  padding: 20px;
  color: #fff;
}
.pricing-header .plan-title h4 {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
}
.pricing-header .plan-price {
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
  font-weight: 900;
}
.plan-price span {
  font-size: 16px;
  text-transform: capitalize;
}
.plan-features li {
  padding: 20px 0px;
  border-bottom: 1px #207fdc;
  border-bottom-style: dotted;
}
a.price-more {
  display: inline-block;
  color: #fff;
  padding: 10px 25px;
  text-transform: capitalize;
  font-size: 14px;
  border: 1px solid #207fdc;
  background: #207fdc;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 20px;
  text-decoration: none;
}
a.price-more:hover {
  background: transparent;
  color: #000;
  border: 1px solid #207fdc;
  transition: 0.3s;
}
.pricing-box-padding {
  padding: 20px;
}

/*
==========================================
    CONTACT Css
==========================================
*/
.contact {
  background: url("../image/contact-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}
.contact:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #3498db;
  opacity: 0.8;
  z-index: -1;
}
.contact .section-header {
  color: #fff;
}
.contact .section-header h2:after {
  background: #fff;
}
.contact .section-header h2::before {
  background: #fff;
}
.contact form input {
  height: 55px;
  outline: none;
  margin-bottom: 16px;
}
.contact form textarea {
  height: 150px;
  margin-bottom: 20px;
  padding-top: 18px;
}
.contact form input[type="submit"] {
  border: 1px solid #fff;
  background: #fff;
  color: #3498db;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 0 38px;
  transition: 0.3s;
}
.contact form input[type="submit"]:hover {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
#map-canvas {
  height: 180px;
  width: 100%;
  border: 0;
}
#map-canvas iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.footer-top {
  background: #3498db;
  border-top: 4px solid #ddd;
  padding: 40px 0;
  color: #fff;
}
.footer-top p {
  line-height: 24px;
  margin-top: 18px;
  margin-bottom: 16px;
}
.footer-bottom {
  background: #202020;
  color: #fff;
}
.footer-social-icon ul li {
  display: inline;
}
.footer-social-icon ul li a {
  display: inline-block;
  color: #fff;
  background: #3498db;
  padding: 10px;
  width: 46px;
  font-size: 18px;
  border-radius: 50%;
  margin: 0 5px;
  transition: 0.3s;
}
.footer-social-icon ul {
  text-align: center;
  margin-bottom: 26px;
}
.footer-social-icon ul li a:hover {
  background: #fff;
  color: #3498db;
}

/*
    Header Fix
*/
.fix-top {
  position: fixed;
  transition: 0.5s;
  padding: 12px;
  background: rgba(83, 196, 243, 0.9);
}
.scrolltotop a img {
  width: 50px;
  height: auto;
  position: fixed;
  right: 6px;
  bottom: 2px;
  z-index: 88;
  display: none;
}
/*
    Preloader
*/
body.preloader-active {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999999;
  overflow: hidden;
}
.preloader {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 9999999999;
}
.preloader-spinner {
  background: url(../image/preloader.gif) no-repeat center center;
  width: 200px;
  height: 200px;
  left: 50%;
  top: 50%;
  margin-top: -100px;
  margin-left: -100px;
  position: absolute;
}
/*
    Responsive Menu
*/
.slicknav_menu {
  display: none;
}
.slicknav_menu {
  position: absolute;
  top: 7px;
  right: 1%;
  z-index: 9;
  background: transparent;
  width: 100%;
}
.slicknav_menu ul {
  width: 101.7%;
  background: #3490ce;
  margin-left: 0%;
  margin-top: 55px;
  z-index: 1;
}
.slicknav_menu ul li {
  margin-bottom: 15px;
}
.slicknav_menu ul li a {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}
.slicknav_menu ul li ul {
  padding-left: 20px;
  margin-top: 13px;
  border-top: 1px solid #52a8e2;
}
.slicknav_nav .slicknav_row:hover {
  background: #4ca7e4;
  color: #fff;
}

.vvc {
  box-shadow: rgb(0 0 0 / 16%) 0px 5px 15px;
  border-radius: 10px;
}

.wid {
  width: 200px !important;
}

.icon-container {
  width: 100%;
  height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
  position: relative;
  top: 100px;
  height: 900px;
}

.icon-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps it filling without distortion */
  border-radius: 8px; /* optional */
}

/* Smaller padding for mobile */
@media (max-width: 768px) {
  .icon-container {
    padding: 10px;
    height: calc(100vh - 50px); /* adjust for smaller nav height */
  }
}

#stickyheader {
  background: #777; /* your header color */
  padding: 10px 0;
}

#menu li {
  list-style: none;
}

#menu li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.section-paddingg {
  padding: 80px 0 80px 0px !important;
}

@media (max-width: 768px) {
  #menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header p {
    word-spacing: 2px;
    text-align: justify;
  }

  .section-padding {
    padding: 170px 0 50px 0px !important;
  }
  .bb {
    font-size: 20px;
  }
  .cl {
    text-align: left !important;
  }

  .section-paddingg {
    padding: 80px 0 80px 0px !important;
  }
}

/* menu desktop-mobile start*/

/* menu desktop-mobile end*/

.bgg {
  background: #fafafa !important;
}

.section-paddinggg {
  padding: 62px 0 18px 0px !important;
}

.mb-30 {
  margin-bottom: 40px;
}

.treatments-section {
  padding: 50px 0;
  background: #f9f9f9;
}

.treatments-section .section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.treatment-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.treatment-item:hover {
  transform: translateY(-5px);
}

.treatment-item img {
  width: 100%;
  /* height: 220px; */
  object-fit: cover;
  display: block;
}

.treatment-item p {
  padding: 15px;
  font-size: 16px;
  color: #555;
  margin: 0;
}

.affiliations-section {
  padding: 50px 0;
  background: #ffffff;
}

.affiliations-section .section-title {
  text-align: center;
  /* font-size: 28px; */
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.affiliation-item {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
  transition: transform 0.3s ease;
  box-shadow: rgb(0 0 0 / 58%) 0px 5px 15px;
}

.affiliation-item:hover {
  transform: translateY(-5px);
}

.affiliation-item i {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 15px;
}

.press-section {
  padding: 50px 0;
  background: #ffffff;
}

.press-section .section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.press-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.press-item:hover {
  transform: translateY(-5px);
  background: #007bff;
  color: #fff;
}

.press-item i {
  font-size: 36px;
  margin-bottom: 12px;
  color: #007bff;
  transition: color 0.3s ease;
}

.press-item:hover i {
  color: #fff;
}

.press-item p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.section-paddingt {
  padding: 81px 0 18px 0px !important;
}

.custom-footer {
  background: #111;
  color: #fff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.footer-section {
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #444;
  padding-bottom: 5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons {
  margin: 15px 0;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  margin: 0 8px;
  display: inline-block;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1e90ff;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 15px;
  margin-top: 15px;
}

/* ===== Section Background ===== */
.testimonial {
  position: relative;
  background: url("../image/bgg/1.png") no-repeat center center/cover;
  background-attachment: fixed;
  padding: 100px 0;
}

.testimonial .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 56 107 / 0%);
  z-index: 1;
}

.testimonial .container {
  position: relative;
  z-index: 2;
}

/* ===== Section Title ===== */
.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
}

.section-subtitle {
  color: #ddd;
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 16px;
}

/* ===== Testimonial Card ===== */
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Name & Role */
.testimonial-card .name {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  color: #222;
}

.testimonial-card .role {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 10px;
}

/* Stars */
.testimonial-card .stars {
  font-size: 18px;
  color: #ffb400;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* Message */
.testimonial-card .message {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
  text-align: justify;
  height: 144px !important;
}

.wtt {
  width: 175px;
  /* border-radius: 31px; */
  margin-bottom: 10px;
}

.my-page-header {
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/bg/2.png") center center/cover no-repeat;
  overflow: hidden;
  flex-direction: column; /* Stack heading and breadcrumb */
  text-align: center;
}

.my-page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black overlay */
  z-index: 1;
}

.my-page-header h2 {
  position: relative;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 2;
  margin-bottom: 10px;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  color: #ddd;
  font-size: 16px;
  background-color: transparent;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #5ce1e6; /* Hover color */
}

.breadcrumb span {
  margin: 0 5px;
  color: #fff;
}

@media (max-width: 768px) {
  .my-page-header {
    min-height: 180px;
    padding: 40px 10px;
  }
  .my-page-header h2 {
    font-size: 26px;
  }
  .breadcrumb {
    font-size: 14px;
  }
  section.main-blog.section-padding {
    padding-top: 50px !important;
  }
}

@media (max-width: 480px) {
  .my-page-header {
    min-height: 150px;
    padding: 30px 5px;
  }
  .my-page-header h2 {
    font-size: 22px;
  }
  .breadcrumb {
    font-size: 13px;
  }
}

.mt-10 {
  margin-top: 10px;
}

/* .txt-jus{
  text-align: justify;
} */

.f-14 {
  font-size: 14px;
}

.blg-btn {
  text-align: left;
  padding-left: 16px;
  padding-bottom: 10px;
}

.cc {
  color: #3498db;
}

.dd{
  color:#fff !important;
}

.sidebar-card {
  background: #3b3b3bd1;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: all 0.3s ease-in-out;
}

.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.sidebar-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
  text-align: center;
  color: #fff;
}

/* Service Categories */
.service-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-categories li {
  margin-bottom: 10px;
}

.service-categories li a {
  display: block;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.3s;
  background: #f4f4f4;
}

.service-categories li a:hover {
  background: #007bff;
  color: #fff;
}

/* Tags */
.tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tags li a {
  background: #f4f4f4;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.tags li a:hover {
  background: #007bff;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .sidebar-wrapper {
    margin-top: 30px;
  }
}

a:hover,
a:focus {
  text-decoration: none !important;
}

.colo {
  color: #555;
}

/* .wc{
  color:#fff;
} */

.affiliations-sectionn {
  padding: 80px 0;
  background: #ffffff;
}

.sec {
  color: #3b3b3b;
  text-align: center;
  padding-bottom: 35px;
}

/* CTA Box */
.cta-box {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #f9fbff, #eef4ff);
  border: 1px solid #dce6f5;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 114, 255, 0.08);
  transition: all 0.3s ease-in-out;
}

.cta-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 114, 255, 0.15);
}

/* Title Text */
.cta-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #1d2b4f;
}

/* Button */
.connect-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0px 4px 15px rgba(0, 114, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Animation */
.connect-btn:hover {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px rgba(0, 114, 255, 0.6);
  color: #fff;
}

/* Ripple Effect */
.connect-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.connect-btn:hover::after {
  width: 300%;
  height: 300%;
}

@media (max-width: 768px) {
  .cta-box h4 {
    font-size: 21px !important;
  }
  .logo img {
    height: 52px !important;
}
}


.affiliation-item a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    display: block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.affiliation-item a:hover {
    color: #007bff;
    text-decoration: underline;
}

.wet{
    width: 88px;
    /* border-radius: 31px; */
    margin-bottom: 10px;
}

.mt-20{
  margin-top: 20px;
}

.press-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
}
.press-item i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 12px;
}
.press-item:hover {
    transform: translateY(-6px);
    background: #007bff;
    color: #fff;
}
.press-item:hover i {
    color: #fff;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.badge {
    display: inline-block;
    background: #eee;
    color: #333;
    font-size: 0.75em;
    padding: 3px 8px;
    margin-left: 5px;
    border-radius: 4px;
   }

   .fmc{
    font-family: 'Open Sans', sans-serif !important;
   }

   .blog-box ul li{
    padding: 15px 0px !important;
   }
   

   .wtcd{
        width: 52px;
   }
   

   .pb-70{
    padding-bottom: 70px !important;
   }